2018-09-23 13:29:31 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Module/Following.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\System;
|
|
|
|
use Friendica\Model\User;
|
2019-05-01 15:29:04 -04:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2018-09-23 13:29:31 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ActivityPub Following
|
|
|
|
*/
|
|
|
|
class Following extends BaseModule
|
|
|
|
{
|
2019-11-05 14:16:26 -05:00
|
|
|
public static function rawContent($parameters)
|
2018-09-23 13:29:31 -04:00
|
|
|
{
|
|
|
|
$a = self::getApp();
|
|
|
|
|
2019-05-01 15:29:04 -04:00
|
|
|
// @TODO: Replace with parameter from router
|
2018-09-23 13:29:31 -04:00
|
|
|
if (empty($a->argv[1])) {
|
2019-05-01 23:16:10 -04:00
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException();
|
2018-09-23 13:29:31 -04:00
|
|
|
}
|
|
|
|
|
2019-05-01 15:29:04 -04:00
|
|
|
// @TODO: Replace with parameter from router
|
2018-09-23 13:29:31 -04:00
|
|
|
$owner = User::getOwnerDataByNick($a->argv[1]);
|
|
|
|
if (empty($owner)) {
|
2019-05-01 23:16:10 -04:00
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException();
|
2018-09-23 13:29:31 -04:00
|
|
|
}
|
|
|
|
|
2019-10-15 09:20:32 -04:00
|
|
|
$page = $_REQUEST['page'] ?? null;
|
2018-09-23 13:29:31 -04:00
|
|
|
|
2018-10-03 02:15:07 -04:00
|
|
|
$Following = ActivityPub\Transmitter::getFollowing($owner, $page);
|
2018-09-23 13:29:31 -04:00
|
|
|
|
|
|
|
header('Content-Type: application/activity+json');
|
|
|
|
echo json_encode($Following);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|