X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FOutbox.php;h=14825677910919e92a50833d6866bbeb1b16f5c9;hb=aeae65daf8514fe75dc165803de9973e49792f66;hp=8ddc861836eebe7d24d55317d30ee12fb819cee6;hpb=82987d018ae680cd937c5bdf4ffe71143644988d;p=friendica.git diff --git a/src/Module/Outbox.php b/src/Module/Outbox.php index 8ddc861836..1482567791 100644 --- a/src/Module/Outbox.php +++ b/src/Module/Outbox.php @@ -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 init() + public static function rawContent() { $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); - $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);