friendica/src/Module/Followers.php

42 lines
909 B
PHP
Raw Normal View History

2018-09-23 19:29:31 +02:00
<?php
/**
* @file src/Module/Followers.php
*/
namespace Friendica\Module;
use Friendica\BaseModule;
use Friendica\Core\System;
use Friendica\DI;
2018-09-23 19:29:31 +02:00
use Friendica\Model\User;
2019-05-01 21:29:04 +02:00
use Friendica\Protocol\ActivityPub;
2018-09-23 19:29:31 +02:00
/**
* ActivityPub Followers
*/
class Followers extends BaseModule
{
public static function rawContent(array $parameters = [])
2018-09-23 19:29:31 +02:00
{
$a = DI::app();
2018-09-23 19:29:31 +02:00
2019-05-01 21:29:04 +02:00
// @TODO: Replace with parameter from router
2018-09-23 19:29:31 +02:00
if (empty($a->argv[1])) {
throw new \Friendica\Network\HTTPException\NotFoundException();
2018-09-23 19:29:31 +02:00
}
2019-05-01 21:29:04 +02:00
// @TODO: Replace with parameter from router
2018-09-23 19:29:31 +02:00
$owner = User::getOwnerDataByNick($a->argv[1]);
if (empty($owner)) {
throw new \Friendica\Network\HTTPException\NotFoundException();
2018-09-23 19:29:31 +02:00
}
$page = $_REQUEST['page'] ?? null;
2018-09-23 19:29:31 +02:00
$followers = ActivityPub\Transmitter::getFollowers($owner, $page);
2018-09-23 19:29:31 +02:00
header('Content-Type: application/activity+json');
echo json_encode($followers);
exit();
}
}