2021-05-09 09:35:51 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2023-01-01 14:36:24 +00:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2021-05-09 09:35:51 +00: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Module\Api\Mastodon\Accounts;
|
|
|
|
|
|
|
|
use Friendica\Core\System;
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
use Friendica\DI;
|
|
|
|
use Friendica\Model\Contact;
|
|
|
|
use Friendica\Module\BaseApi;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see https://docs.joinmastodon.org/methods/accounts/
|
|
|
|
*/
|
|
|
|
class Lists extends BaseApi
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
2021-11-20 14:38:03 +00:00
|
|
|
protected function rawContent(array $request = [])
|
2021-05-09 09:35:51 +00:00
|
|
|
{
|
2021-06-08 12:00:22 +00:00
|
|
|
self::checkAllowedScope(self::SCOPE_READ);
|
2021-05-09 09:35:51 +00:00
|
|
|
$uid = self::getCurrentUserID();
|
|
|
|
|
2021-11-14 22:19:25 +00:00
|
|
|
if (empty($this->parameters['id'])) {
|
2021-05-12 14:00:15 +00:00
|
|
|
DI::mstdnError()->UnprocessableEntity();
|
2021-05-09 09:35:51 +00:00
|
|
|
}
|
|
|
|
|
2021-11-14 22:19:25 +00:00
|
|
|
$id = $this->parameters['id'];
|
2021-05-09 09:35:51 +00:00
|
|
|
if (!DBA::exists('contact', ['id' => $id, 'uid' => 0])) {
|
|
|
|
DI::mstdnError()->RecordNotFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
$lists = [];
|
|
|
|
|
2021-07-11 09:39:34 +00:00
|
|
|
$cdata = Contact::getPublicAndUserContactID($id, $uid);
|
2021-05-09 09:35:51 +00:00
|
|
|
if (!empty($cdata['user'])) {
|
2023-05-13 23:54:35 +00:00
|
|
|
$circles = DBA::select('group_member', ['gid'], ['contact-id' => $cdata['user']]);
|
|
|
|
while ($circle = DBA::fetch($circles)) {
|
|
|
|
$lists[] = DI::mstdnList()->createFromCircleId($circle['gid']);
|
2021-05-09 09:35:51 +00:00
|
|
|
}
|
2023-05-13 23:54:35 +00:00
|
|
|
DBA::close($circles);
|
2021-05-09 09:35:51 +00:00
|
|
|
}
|
|
|
|
|
2023-09-21 16:16:17 +00:00
|
|
|
$this->jsonExit($lists);
|
2021-05-09 09:35:51 +00:00
|
|
|
}
|
|
|
|
}
|