comparison sat/plugins/plugin_comp_ap_gateway/constants.py @ 3833:381340b9a9ee

component AP gateway: convert XMPP mentions to AP: When a XEP-0372 mention is received, the linked pubsub item is looked after in cache, and if found, it is send to mentioned entity with `mention` tag added. However, this doesn't work in some cases (see incoming doc for details). To work around that, `@user@server.tld` type mention are also scanned in body, and mentions are added when found (this can be disabled with `auto_mentions` setting). Mention are only scanned in "public" messages, i.e. for pubsub items, and not direct messages. rel 369
author Goffi <goffi@goffi.org>
date Sun, 10 Jul 2022 16:15:06 +0200
parents 201a22bfbb74
children 65e5718e7710
comparison
equal deleted inserted replaced
3832:201a22bfbb74 3833:381340b9a9ee
31 TYPE_MENTION = "Mention" 31 TYPE_MENTION = "Mention"
32 MEDIA_TYPE_AP = "application/activity+json" 32 MEDIA_TYPE_AP = "application/activity+json"
33 NS_AP_PUBLIC = "https://www.w3.org/ns/activitystreams#Public" 33 NS_AP_PUBLIC = "https://www.w3.org/ns/activitystreams#Public"
34 # 3 values can be used, see https://www.w3.org/TR/activitypub/#public-addressing 34 # 3 values can be used, see https://www.w3.org/TR/activitypub/#public-addressing
35 PUBLIC_TUPLE = (NS_AP_PUBLIC, "as:Public", "Public") 35 PUBLIC_TUPLE = (NS_AP_PUBLIC, "as:Public", "Public")
36 # mapping from AP metadata to microblog data
37 AP_MB_MAP = {
38 "content": "content_xhtml",
39
40 }
41 AP_REQUEST_TYPES = { 36 AP_REQUEST_TYPES = {
42 "GET": {TYPE_ACTOR, TYPE_OUTBOX, TYPE_FOLLOWERS, TYPE_FOLLOWING}, 37 "GET": {TYPE_ACTOR, TYPE_OUTBOX, TYPE_FOLLOWERS, TYPE_FOLLOWING},
43 "POST": {"inbox"}, 38 "POST": {"inbox"},
44 } 39 }
45 # headers to check for signature 40 # headers to check for signature