friendica/src/Module/Outbox.php

43 lines
853 B
PHP
Raw Normal View History

2018-09-23 19:29:31 +02:00
<?php
/**
* @file src/Module/Outbox.php
*/
namespace Friendica\Module;
use Friendica\BaseModule;
use Friendica\Protocol\ActivityPub;
use Friendica\Core\System;
use Friendica\Model\User;
use Friendica\Util\HTTPSignature;
2018-09-23 19:29:31 +02:00
/**
* ActivityPub Outbox
*/
class Outbox extends BaseModule
{
public static function rawContent()
2018-09-23 19:29:31 +02:00
{
$a = self::getApp();
if (empty($a->argv[1])) {
System::httpExit(404);
}
$owner = User::getOwnerDataByNick($a->argv[1]);
if (empty($owner)) {
System::httpExit(404);
}
$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);
2018-09-23 19:29:31 +02:00
header('Content-Type: application/activity+json');
2018-09-30 09:21:57 +02:00
echo json_encode($outbox);
2018-09-23 19:29:31 +02:00
exit();
}
}