X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FOutbox.php;h=14825677910919e92a50833d6866bbeb1b16f5c9;hb=bf82736522ce570b154ec342b9dee49fa9d3a932;hp=681d1cccb103d76ccd1b225758e67f442a115f3b;hpb=4528d8748c76cf4257ae2c29bd2d7b13f8395922;p=friendica.git diff --git a/src/Module/Outbox.php b/src/Module/Outbox.php index 681d1cccb1..1482567791 100644 --- a/src/Module/Outbox.php +++ b/src/Module/Outbox.php @@ -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,17 +18,21 @@ class Outbox extends BaseModule { $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); + /// @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');