]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Outbox.php
Make the site admin theme setting link go to the currently selected theme
[friendica.git] / src / Module / Outbox.php
index f6bad56dd6c2b4f563d3e1ed2fac4f263decc7dc..27dcd5c1f44b905b51423e6f3cccc3bfe8e43e6b 100644 (file)
@@ -5,9 +5,9 @@
 namespace Friendica\Module;
 
 use Friendica\BaseModule;
-use Friendica\Protocol\ActivityPub;
 use Friendica\Core\System;
 use Friendica\Model\User;
+use Friendica\Protocol\ActivityPub;
 
 /**
  * ActivityPub Outbox
@@ -18,6 +18,7 @@ class Outbox extends BaseModule
        {
                $a = self::getApp();
 
+               // @TODO: Replace with parameter from router
                if (empty($a->argv[1])) {
                        System::httpExit(404);
                }
@@ -29,7 +30,10 @@ class Outbox extends BaseModule
 
                $page = defaults($_REQUEST, 'page', null);
 
-               $outbox = ActivityPub::getOutbox($owner, $page);
+               /// @todo Add Authentication to enable fetching of non public content
+               // $requester = HTTPSignature::getSigner('', $_SERVER);
+
+               $outbox = ActivityPub\Transmitter::getOutbox($owner, $page);
 
                header('Content-Type: application/activity+json');
                echo json_encode($outbox);