]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/ActivityPub/Outbox.php
New class for c2s activities
[friendica.git] / src / Module / ActivityPub / Outbox.php
index c459a55e30e50622550a9afe2d7102d900520130..01061d8c674163c4b3f9596d8902680060fd0ff8 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
 
 namespace Friendica\Module\ActivityPub;
 
-use Friendica\BaseModule;
+use Friendica\Core\System;
 use Friendica\Model\User;
+use Friendica\Module\BaseApi;
 use Friendica\Protocol\ActivityPub;
 use Friendica\Util\HTTPSignature;
+use Friendica\Util\Network;
 
 /**
  * ActivityPub Outbox
  */
-class Outbox extends BaseModule
+class Outbox extends BaseApi
 {
-       public function rawContent()
+       protected function rawContent(array $request = [])
        {
                if (empty($this->parameters['nickname'])) {
                        throw new \Friendica\Network\HTTPException\NotFoundException();
@@ -42,12 +44,42 @@ class Outbox extends BaseModule
                        throw new \Friendica\Network\HTTPException\NotFoundException();
                }
 
-               $page = $_REQUEST['page'] ?? null;
+               $uid  = self::getCurrentUserID();
+               $page = $request['page'] ?? null;
+
+               if (empty($page) && empty($request['max_id']) && !empty($uid)) {
+                       $page = 1;
+               }
 
                $requester = HTTPSignature::getSigner('', $_SERVER);
-               $outbox = ActivityPub\Transmitter::getOutbox($owner, $page, $requester);
-               header('Content-Type: application/activity+json');
-               echo json_encode($outbox);
-               exit();
+               $outbox = ActivityPub\Transmitter::getOutbox($owner, $uid, $page, $request['max_id'] ?? null, $requester);
+
+               System::jsonExit($outbox, 'application/activity+json');
+       }
+
+       protected function post(array $request = [])
+       {
+               self::checkAllowedScope(self::SCOPE_WRITE);
+               $uid      = self::getCurrentUserID();
+               $postdata = Network::postdata();
+
+               if (empty($postdata) || empty($this->parameters['nickname'])) {
+                       throw new \Friendica\Network\HTTPException\BadRequestException();
+               }
+
+               $owner = User::getOwnerDataByNick($this->parameters['nickname']);
+               if (empty($owner)) {
+                       throw new \Friendica\Network\HTTPException\NotFoundException();
+               }
+               if ($owner['uid'] != $uid) {
+                       throw new \Friendica\Network\HTTPException\ForbiddenException();
+               }
+
+               $activity = json_decode($postdata, true);
+               if (empty($activity)) {
+                       throw new \Friendica\Network\HTTPException\BadRequestException();
+               }
+
+               System::jsonExit(ActivityPub\ClientToServer::processActivity($activity, $uid, self::getCurrentApplication() ?? []));
        }
 }