]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Outbox.php
Group selection: Respect "pubmail" and ignore atchived or blocked contacts
[friendica.git] / src / Module / Outbox.php
index f6bad56dd6c2b4f563d3e1ed2fac4f263decc7dc..c2024151e5b0fe7059a51d3077aaa43f944c5204 100644 (file)
@@ -5,31 +5,35 @@
 namespace Friendica\Module;
 
 use Friendica\BaseModule;
-use Friendica\Protocol\ActivityPub;
 use Friendica\Core\System;
 use Friendica\Model\User;
+use Friendica\Protocol\ActivityPub;
 
 /**
  * ActivityPub Outbox
  */
 class Outbox extends BaseModule
 {
-       public static function rawContent()
+       public static function rawContent(array $parameters = [])
        {
                $a = self::getApp();
 
+               // @TODO: Replace with parameter from router
                if (empty($a->argv[1])) {
-                       System::httpExit(404);
+                       throw new \Friendica\Network\HTTPException\NotFoundException();
                }
 
                $owner = User::getOwnerDataByNick($a->argv[1]);
                if (empty($owner)) {
-                       System::httpExit(404);
+                       throw new \Friendica\Network\HTTPException\NotFoundException();
                }
 
-               $page = defaults($_REQUEST, 'page', null);
+               $page = $_REQUEST['page'] ?? null;
+
+               /// @todo Add Authentication to enable fetching of non public content
+               // $requester = HTTPSignature::getSigner('', $_SERVER);
 
-               $outbox = ActivityPub::getOutbox($owner, $page);
+               $outbox = ActivityPub\Transmitter::getOutbox($owner, $page);
 
                header('Content-Type: application/activity+json');
                echo json_encode($outbox);