]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Outbox.php
Merge pull request #7063 from nupplaphil/task/mod_amcd
[friendica.git] / src / Module / Outbox.php
index 8ddc861836eebe7d24d55317d30ee12fb819cee6..41e10757f1231ae90a10138fe49cc09cc4ef722b 100644 (file)
@@ -8,13 +8,14 @@ use Friendica\BaseModule;
 use Friendica\Protocol\ActivityPub;
 use Friendica\Core\System;
 use Friendica\Model\User;
+use Friendica\Util\HTTPSignature;
 
 /**
  * ActivityPub Outbox
  */
 class Outbox extends BaseModule
 {
-       public static function init()
+       public static function rawContent()
        {
                $a = self::getApp();
 
@@ -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);