summaryrefslogtreecommitdiffstats
path: root/users
diff options
context:
space:
mode:
authorAndrew Godwin2022-12-10 13:24:49 -0700
committerAndrew Godwin2022-12-10 13:24:49 -0700
commit602e5a378057f3cd5ca355fd3ed2a17fcc147c72 (patch)
treeeaa950ac15e45a4a900ce7fa0fed400fadf50a17 /users
parentfd5250059118a3f6932b4d39a085164b10577706 (diff)
downloadtakahe-602e5a378057f3cd5ca355fd3ed2a17fcc147c72.tar.gz
takahe-602e5a378057f3cd5ca355fd3ed2a17fcc147c72.tar.bz2
takahe-602e5a378057f3cd5ca355fd3ed2a17fcc147c72.zip
Add system actor and shared inbox
Diffstat (limited to 'users')
-rw-r--r--users/models/identity.py4
-rw-r--r--users/models/system_actor.py3
-rw-r--r--users/views/activitypub.py2
3 files changed, 8 insertions, 1 deletions
diff --git a/users/models/identity.py b/users/models/identity.py
index 21ac0fd..fe85d41 100644
--- a/users/models/identity.py
+++ b/users/models/identity.py
@@ -296,6 +296,10 @@ class Identity(StatorModel):
"mediaType": media_type_from_filename(self.image.name),
"url": self.image.url,
}
+ if self.local:
+ response["endpoints"] = {
+ "sharedInbox": f"https://{self.domain.uri_domain}/inbox/",
+ }
return response
### ActivityPub (inbound) ###
diff --git a/users/models/system_actor.py b/users/models/system_actor.py
index c4319b9..fb5a9e1 100644
--- a/users/models/system_actor.py
+++ b/users/models/system_actor.py
@@ -43,6 +43,9 @@ class SystemActor:
"id": self.actor_uri,
"type": "Application",
"inbox": self.actor_uri + "inbox/",
+ "endpoints": {
+ "sharedInbox": f"https://{settings.MAIN_DOMAIN}/inbox/",
+ },
"preferredUsername": self.username,
"url": self.profile_uri,
"as:manuallyApprovesFollowers": True,
diff --git a/users/views/activitypub.py b/users/views/activitypub.py
index 93a6eae..b44edfb 100644
--- a/users/views/activitypub.py
+++ b/users/views/activitypub.py
@@ -138,7 +138,7 @@ class Inbox(View):
AP Inbox endpoint
"""
- def post(self, request, handle):
+ def post(self, request, handle=None):
# Load the LD
document = canonicalise(json.loads(request.body), include_security=True)
# Find the Identity by the actor on the incoming item