2019-12-05 08:16:13 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module\Api\Mastodon;
|
|
|
|
|
2019-12-11 03:37:48 -05:00
|
|
|
use Friendica\Api\Mastodon;
|
2019-12-05 08:16:13 -05:00
|
|
|
use Friendica\App\BaseURL;
|
|
|
|
use Friendica\Core\System;
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
use Friendica\Model\Contact;
|
2019-12-11 03:50:09 -05:00
|
|
|
use Friendica\Model\Introduction;
|
2019-12-05 08:16:13 -05:00
|
|
|
use Friendica\Module\Base\Api;
|
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see https://docs.joinmastodon.org/api/rest/follow-requests/
|
|
|
|
*/
|
|
|
|
class FollowRequests extends Api
|
|
|
|
{
|
|
|
|
public static function init(array $parameters = [])
|
|
|
|
{
|
|
|
|
parent::init($parameters);
|
|
|
|
|
2019-12-11 03:37:48 -05:00
|
|
|
if (!self::login()) {
|
|
|
|
throw new HTTPException\UnauthorizedException();
|
|
|
|
}
|
2019-12-05 08:16:13 -05:00
|
|
|
}
|
|
|
|
|
2019-12-11 03:50:09 -05:00
|
|
|
public static function post(array $parameters = [])
|
|
|
|
{
|
|
|
|
parent::post($parameters);
|
|
|
|
|
|
|
|
/** @var Introduction $Intro */
|
|
|
|
$Intro = self::getClass(Introduction::class);
|
|
|
|
$Intro->fetch(['id' => $parameters['id'], 'uid' => self::$current_user_id]);
|
|
|
|
|
|
|
|
$contactId = $Intro->{'contact-id'};
|
|
|
|
|
|
|
|
$relationship = new Mastodon\Relationship();
|
|
|
|
$relationship->id = $contactId;
|
|
|
|
|
|
|
|
switch ($parameters['action']) {
|
|
|
|
case 'authorize':
|
|
|
|
$Intro->confirm();
|
|
|
|
$relationship = Mastodon\Relationship::createFromContact(Contact::getById($contactId));
|
|
|
|
break;
|
|
|
|
case 'ignore':
|
|
|
|
$Intro->ignore();
|
|
|
|
break;
|
|
|
|
case 'reject':
|
|
|
|
$Intro->discard();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new HTTPException\BadRequestException('Unexpected action parameter, expecting "authorize", "ignore" or "reject"');
|
|
|
|
}
|
|
|
|
|
|
|
|
System::jsonExit($relationship);
|
|
|
|
}
|
|
|
|
|
2019-12-05 08:16:13 -05:00
|
|
|
/**
|
|
|
|
* @param array $parameters
|
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
* @see https://docs.joinmastodon.org/api/rest/follow-requests/#get-api-v1-follow-requests
|
|
|
|
*/
|
|
|
|
public static function rawContent(array $parameters = [])
|
|
|
|
{
|
|
|
|
$since_id = $_GET['since_id'] ?? null;
|
|
|
|
$max_id = $_GET['max_id'] ?? null;
|
|
|
|
$limit = intval($_GET['limit'] ?? 40);
|
|
|
|
|
|
|
|
if (isset($since_id) && isset($max_id)) {
|
2019-12-11 03:37:48 -05:00
|
|
|
$condition = ['`uid` = ? AND NOT `ignore` AND `id` > ? AND `id` < ?', self::$current_user_id, $since_id, $max_id];
|
2019-12-05 08:16:13 -05:00
|
|
|
} elseif (isset($since_id)) {
|
2019-12-11 03:37:48 -05:00
|
|
|
$condition = ['`uid` = ? AND NOT `ignore` AND `id` > ?', self::$current_user_id, $since_id];
|
2019-12-05 08:16:13 -05:00
|
|
|
} elseif (isset($max_id)) {
|
2019-12-11 03:37:48 -05:00
|
|
|
$condition = ['`uid` = ? AND NOT `ignore` AND `id` < ?', self::$current_user_id, $max_id];
|
2019-12-05 08:16:13 -05:00
|
|
|
} else {
|
2019-12-11 03:37:48 -05:00
|
|
|
$condition = ['`uid` = ? AND NOT `ignore`', self::$current_user_id];
|
2019-12-05 08:16:13 -05:00
|
|
|
}
|
|
|
|
|
2019-12-11 03:37:48 -05:00
|
|
|
$count = DBA::count('intro', $condition);
|
2019-12-05 08:16:13 -05:00
|
|
|
|
2019-12-11 03:37:48 -05:00
|
|
|
$intros = DBA::selectToArray(
|
|
|
|
'intro',
|
2019-12-05 08:16:13 -05:00
|
|
|
[],
|
|
|
|
$condition,
|
|
|
|
['order' => ['id' => 'DESC'], 'limit' => $limit]
|
|
|
|
);
|
|
|
|
|
|
|
|
$return = [];
|
2019-12-11 03:37:48 -05:00
|
|
|
foreach ($intros as $intro) {
|
|
|
|
$account = Mastodon\Account::createFromContact(Contact::getById($intro['contact-id']));
|
|
|
|
|
|
|
|
// Not ideal, the same "account" can have multiple ids depending on the context
|
|
|
|
$account->id = $intro['id'];
|
2019-12-05 08:16:13 -05:00
|
|
|
|
|
|
|
$return[] = $account;
|
|
|
|
}
|
|
|
|
|
|
|
|
$base_query = [];
|
|
|
|
if (isset($_GET['limit'])) {
|
|
|
|
$base_query['limit'] = $limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @var BaseURL $BaseURL */
|
|
|
|
$BaseURL = self::getClass(BaseURL::class);
|
|
|
|
|
|
|
|
$links = [];
|
|
|
|
if ($count > $limit) {
|
2019-12-11 03:37:48 -05:00
|
|
|
$links[] = '<' . $BaseURL->get() . '/api/v1/follow_requests?' . http_build_query($base_query + ['max_id' => $intros[count($intros) - 1]['id']]) . '>; rel="next"';
|
2019-12-05 08:16:13 -05:00
|
|
|
}
|
2019-12-11 03:37:48 -05:00
|
|
|
$links[] = '<' . $BaseURL->get() . '/api/v1/follow_requests?' . http_build_query($base_query + ['since_id' => $intros[0]['id']]) . '>; rel="prev"';
|
2019-12-05 08:16:13 -05:00
|
|
|
|
|
|
|
header('Link: ' . implode(', ', $links));
|
|
|
|
|
|
|
|
System::jsonExit($return);
|
|
|
|
}
|
|
|
|
}
|