1de3f186d7
- Adding Friendica\DI class for getting dynamic classes - Replacing BaseObject::getApp() with this class
42 lines
909 B
PHP
42 lines
909 B
PHP
<?php
|
|
/**
|
|
* @file src/Module/Following.php
|
|
*/
|
|
namespace Friendica\Module;
|
|
|
|
use Friendica\BaseModule;
|
|
use Friendica\Core\System;
|
|
use Friendica\DI;
|
|
use Friendica\Model\User;
|
|
use Friendica\Protocol\ActivityPub;
|
|
|
|
/**
|
|
* ActivityPub Following
|
|
*/
|
|
class Following extends BaseModule
|
|
{
|
|
public static function rawContent(array $parameters = [])
|
|
{
|
|
$a = DI::app();
|
|
|
|
// @TODO: Replace with parameter from router
|
|
if (empty($a->argv[1])) {
|
|
throw new \Friendica\Network\HTTPException\NotFoundException();
|
|
}
|
|
|
|
// @TODO: Replace with parameter from router
|
|
$owner = User::getOwnerDataByNick($a->argv[1]);
|
|
if (empty($owner)) {
|
|
throw new \Friendica\Network\HTTPException\NotFoundException();
|
|
}
|
|
|
|
$page = $_REQUEST['page'] ?? null;
|
|
|
|
$Following = ActivityPub\Transmitter::getFollowing($owner, $page);
|
|
|
|
header('Content-Type: application/activity+json');
|
|
echo json_encode($Following);
|
|
exit();
|
|
}
|
|
}
|