friendica/src/Module/Followers.php

39 lines
706 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\Protocol\ActivityPub;
use Friendica\Core\System;
use Friendica\Model\User;
/**
* ActivityPub Followers
*/
class Followers 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);
$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();
}
}