Live video on the AT Protocol
1package constants
2
3var PLACE_STREAM_KEY = "place.stream.key" //nolint:all
4var PLACE_STREAM_LIVESTREAM = "place.stream.livestream" //nolint:all
5var PLACE_STREAM_CHAT_MESSAGE = "place.stream.chat.message" //nolint:all
6var PLACE_STREAM_CHAT_PROFILE = "place.stream.chat.profile" //nolint:all
7var PLACE_STREAM_SERVER_SETTINGS = "place.stream.server.settings" //nolint:all
8var PLACE_STREAM_MODERATION_PERMISSION = "place.stream.moderation.permission" //nolint:all
9var STREAMPLACE_SIGNING_KEY = "signingKey" //nolint:all
10var APP_BSKY_GRAPH_FOLLOW = "app.bsky.graph.follow" //nolint:all
11var APP_BSKY_FEED_POST = "app.bsky.feed.post" //nolint:all
12var APP_BSKY_GRAPH_BLOCK = "app.bsky.graph.block" //nolint:all
13var PLACE_STREAM_CHAT_GATE = "place.stream.chat.gate" //nolint:all
14var PLACE_STREAM_DEFAULT_METADATA = "place.stream.metadata.configuration" //nolint:all
15var PLACE_STREAM_LIVE_RECOMMENDATIONS = "place.stream.live.recommendations" //nolint:all
16
17const DID_KEY_PREFIX = "did:key" //nolint:all
18const ADDRESS_KEY_PREFIX = "0x" //nolint:all
19
20// Streamplace metadata license values
21const (
22 LicenseCC0_1_0 = "place.stream.metadata.contentRights#cc0_1__0"
23 LicenseCCBy_4_0 = "place.stream.metadata.contentRights#cc-by_4__0"
24 LicenseCCBySA_4_0 = "place.stream.metadata.contentRights#cc-by-sa_4__0"
25 LicenseCCByNC_4_0 = "place.stream.metadata.contentRights#cc-by-nc_4__0"
26 LicenseCCByNCSA_4_0 = "place.stream.metadata.contentRights#cc-by-nc-sa_4__0"
27 LicenseCCByND_4_0 = "place.stream.metadata.contentRights#cc-by-nd_4__0"
28 LicenseCCByNCND_4_0 = "place.stream.metadata.contentRights#cc-by-nc-nd_4__0"
29 LicenseAllRightsReserved = "place.stream.metadata.contentRights#all-rights-reserved"
30)
31
32// License URLs for C2PA manifests
33const (
34 LicenseURLCC0_1_0 = "http://creativecommons.org/publicdomain/zero/1.0/"
35 LicenseURLCCBy_4_0 = "http://creativecommons.org/licenses/by/4.0/"
36 LicenseURLCCBySA_4_0 = "http://creativecommons.org/licenses/by-sa/4.0/"
37 LicenseURLCCByNC_4_0 = "http://creativecommons.org/licenses/by-nc/4.0/"
38 LicenseURLCCByNCSA_4_0 = "http://creativecommons.org/licenses/by-nc-sa/4.0/"
39 LicenseURLCCByND_4_0 = "http://creativecommons.org/licenses/by-nd/4.0/"
40 LicenseURLCCByNCND_4_0 = "http://creativecommons.org/licenses/by-nc-nd/4.0/"
41)
42
43// Streamplace metadata warning labels
44const (
45 WarningDeath = "place.stream.metadata.contentWarnings#death"
46 WarningDrugUse = "place.stream.metadata.contentWarnings#drugUse"
47 WarningFantasyViolence = "place.stream.metadata.contentWarnings#fantasyViolence"
48 WarningFlashingLights = "place.stream.metadata.contentWarnings#flashingLights"
49 WarningLanguage = "place.stream.metadata.contentWarnings#language"
50 WarningNudity = "place.stream.metadata.contentWarnings#nudity"
51 WarningPII = "place.stream.metadata.contentWarnings#PII"
52 WarningSexuality = "place.stream.metadata.contentWarnings#sexuality"
53 WarningSuffering = "place.stream.metadata.contentWarnings#suffering"
54 WarningViolence = "place.stream.metadata.contentWarnings#violence"
55)
56
57// Content warning C2PA codes for manifests
58const (
59 WarningC2PADeath = "cwarn:death"
60 WarningC2PADrugUse = "cwarn:drugUse"
61 WarningC2PAFantasyViolence = "cwarn:fantasyViolence"
62 WarningC2PAFlashingLights = "cwarn:flashingLights"
63 WarningC2PALanguage = "cwarn:language"
64 WarningC2PANudity = "cwarn:nudity"
65 WarningC2PAPII = "cwarn:PII"
66 WarningC2PASexuality = "cwarn:sexuality"
67 WarningC2PASuffering = "cwarn:suffering"
68 WarningC2PAViolence = "cwarn:violence"
69)