]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/ActivityPub/Outbox.php
Use the post language for the language detection / config for quality
[friendica.git] / src / Module / ActivityPub / Outbox.php
index 5cd250777774baa7ce5fb24a18d071a191c43b6a..e637a8e55300cf1d4b3bd50e826ce6698a60dc56 100644 (file)
@@ -51,15 +51,14 @@ class Outbox extends BaseApi
                        $page = 1;
                }
 
-               $requester = HTTPSignature::getSigner('', $_SERVER);
-               $outbox = ActivityPub\Transmitter::getOutbox($owner, $uid, $page, $request['max_id'] ?? null, $requester);
+               $outbox = ActivityPub\ClientToServer::getOutbox($owner, $uid, $page, $request['max_id'] ?? null, HTTPSignature::getSigner('', $_SERVER));
 
-               System::jsonExit($outbox, 'application/activity+json');
+               $this->jsonExit($outbox, 'application/activity+json');
        }
 
        protected function post(array $request = [])
        {
-               self::checkAllowedScope(self::SCOPE_WRITE);
+               $this->checkAllowedScope(self::SCOPE_WRITE);
                $uid      = self::getCurrentUserID();
                $postdata = Network::postdata();
 
@@ -80,6 +79,6 @@ class Outbox extends BaseApi
                        throw new \Friendica\Network\HTTPException\BadRequestException();
                }
 
-               ActivityPub\Receiver::processC2SActivity($activity, $uid, self::getCurrentApplication() ?? []);
+               $this->jsonExit(ActivityPub\ClientToServer::processActivity($activity, $uid, self::getCurrentApplication() ?? []));
        }
 }