2018-09-23 19:29:31 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2023-01-01 15:36:24 +01:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 16:18:46 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-09-23 19:29:31 +02:00
|
|
|
*/
|
2020-02-09 16:18:46 +01:00
|
|
|
|
2021-07-17 22:28:46 +02:00
|
|
|
namespace Friendica\Module\ActivityPub;
|
2018-09-23 19:29:31 +02:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2022-04-09 13:58:01 +02:00
|
|
|
use Friendica\Core\System;
|
2020-05-06 04:32:45 +02:00
|
|
|
use Friendica\Model\Contact;
|
2018-09-23 19:29:31 +02:00
|
|
|
use Friendica\Model\User;
|
2019-05-01 21:29:04 +02:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2022-02-08 22:05:15 +01:00
|
|
|
use Friendica\Util\HTTPSignature;
|
2018-09-23 19:29:31 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ActivityPub Followers
|
|
|
|
*/
|
|
|
|
class Followers extends BaseModule
|
|
|
|
{
|
2021-11-20 15:38:03 +01:00
|
|
|
protected function rawContent(array $request = [])
|
2018-09-23 19:29:31 +02:00
|
|
|
{
|
2021-11-14 23:19:25 +01:00
|
|
|
if (empty($this->parameters['nickname'])) {
|
2019-05-02 05:16:10 +02:00
|
|
|
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
|
2021-11-14 23:19:25 +01:00
|
|
|
$owner = User::getOwnerDataByNick($this->parameters['nickname']);
|
2018-09-23 19:29:31 +02:00
|
|
|
if (empty($owner)) {
|
2019-05-02 05:16:10 +02:00
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException();
|
2018-09-23 19:29:31 +02:00
|
|
|
}
|
|
|
|
|
2022-04-21 06:29:08 +02:00
|
|
|
$page = !empty($request['page']) ? (int)$request['page'] : null;
|
2018-09-23 19:29:31 +02:00
|
|
|
|
2022-02-08 22:05:15 +01:00
|
|
|
$followers = ActivityPub\Transmitter::getContacts($owner, [Contact::FOLLOWER, Contact::FRIEND], 'followers', $page, (string)HTTPSignature::getSigner('', $_SERVER));
|
2018-09-23 19:29:31 +02:00
|
|
|
|
2022-04-09 13:58:01 +02:00
|
|
|
System::jsonExit($followers, 'application/activity+json');
|
2018-09-23 19:29:31 +02:00
|
|
|
}
|
|
|
|
}
|