2021-05-08 19:21:52 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Module\Api\Mastodon;
|
|
|
|
|
|
|
|
use Friendica\Core\System;
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
use Friendica\DI;
|
|
|
|
use Friendica\Module\BaseApi;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see https://docs.joinmastodon.org/methods/accounts/mutes/
|
|
|
|
*/
|
|
|
|
class Mutes extends BaseApi
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
2021-11-14 19:46:25 +00:00
|
|
|
public static function rawContent()
|
2021-05-08 19:21:52 +00:00
|
|
|
{
|
2021-06-08 12:00:22 +00:00
|
|
|
self::checkAllowedScope(self::SCOPE_READ);
|
2021-05-08 19:21:52 +00:00
|
|
|
$uid = self::getCurrentUserID();
|
|
|
|
|
2021-11-14 19:46:25 +00:00
|
|
|
if (empty(static::$parameters['id'])) {
|
2021-05-12 14:00:15 +00:00
|
|
|
DI::mstdnError()->UnprocessableEntity();
|
2021-05-08 19:21:52 +00:00
|
|
|
}
|
|
|
|
|
2021-11-14 19:46:25 +00:00
|
|
|
$id = static::$parameters['id'];
|
2021-05-08 19:21:52 +00:00
|
|
|
if (!DBA::exists('contact', ['id' => $id, 'uid' => 0])) {
|
|
|
|
DI::mstdnError()->RecordNotFound();
|
|
|
|
}
|
|
|
|
|
2021-05-18 19:26:46 +00:00
|
|
|
$request = self::getRequest([
|
|
|
|
'max_id' => 0, // Return results older than this id
|
|
|
|
'since_id' => 0, // Return results newer than this id
|
|
|
|
'limit' => 40, // Maximum number of results. Defaults to 40.
|
|
|
|
]);
|
2021-05-08 19:21:52 +00:00
|
|
|
|
2021-05-18 19:26:46 +00:00
|
|
|
$params = ['order' => ['cid' => true], 'limit' => $request['limit']];
|
2021-05-08 19:21:52 +00:00
|
|
|
|
|
|
|
$condition = ['cid' => $id, 'ignored' => true, 'uid' => $uid];
|
|
|
|
|
2021-05-18 19:26:46 +00:00
|
|
|
if (!empty($request['max_id'])) {
|
|
|
|
$condition = DBA::mergeConditions($condition, ["`cid` < ?", $request['max_id']]);
|
2021-05-08 19:21:52 +00:00
|
|
|
}
|
|
|
|
|
2021-05-18 19:26:46 +00:00
|
|
|
if (!empty($request['since_id'])) {
|
|
|
|
$condition = DBA::mergeConditions($condition, ["`cid` > ?", $request['since_id']]);
|
2021-05-08 19:21:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($min_id)) {
|
|
|
|
$condition = DBA::mergeConditions($condition, ["`cid` > ?", $min_id]);
|
|
|
|
|
|
|
|
$params['order'] = ['cid'];
|
|
|
|
}
|
|
|
|
|
2021-11-14 19:46:25 +00:00
|
|
|
$followers = DBA::select('user-contact', ['cid'], $condition, static::$parameters);
|
2021-05-08 19:21:52 +00:00
|
|
|
while ($follower = DBA::fetch($followers)) {
|
2021-06-16 15:02:33 +00:00
|
|
|
self::setBoundaries($follower['cid']);
|
2021-05-08 19:21:52 +00:00
|
|
|
$accounts[] = DI::mstdnAccount()->createFromContactId($follower['cid'], $uid);
|
|
|
|
}
|
|
|
|
DBA::close($followers);
|
|
|
|
|
2021-05-09 09:35:51 +00:00
|
|
|
if (!empty($min_id)) {
|
|
|
|
array_reverse($accounts);
|
|
|
|
}
|
|
|
|
|
2021-06-16 15:02:33 +00:00
|
|
|
self::setLinkHeader();
|
2021-05-08 19:21:52 +00:00
|
|
|
System::jsonExit($accounts);
|
|
|
|
}
|
|
|
|
}
|