friendica/src/Module/Api/Mastodon/Lists.php

119 lines
3 KiB
PHP
Raw Normal View History

2021-05-09 11:35:51 +02: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\DI;
use Friendica\Module\BaseApi;
2021-05-13 23:15:32 +02:00
use Friendica\Model\Group;
2021-05-09 11:35:51 +02:00
/**
* @see https://docs.joinmastodon.org/methods/timelines/lists/
*/
class Lists extends BaseApi
{
protected function delete(array $request = [])
2021-05-09 11:35:51 +02:00
{
self::checkAllowedScope(self::SCOPE_WRITE);
2021-05-13 23:15:32 +02:00
$uid = self::getCurrentUserID();
if (empty($this->parameters['id'])) {
2021-05-13 23:15:32 +02:00
DI::mstdnError()->UnprocessableEntity();
}
if (!Group::exists($this->parameters['id'], $uid)) {
2021-05-13 23:15:32 +02:00
DI::mstdnError()->RecordNotFound();
}
if (!Group::remove($this->parameters['id'])) {
2021-05-13 23:15:32 +02:00
DI::mstdnError()->InternalError();
}
System::jsonExit([]);
2021-05-09 11:35:51 +02:00
}
protected function post(array $request = [])
2021-05-09 11:35:51 +02:00
{
self::checkAllowedScope(self::SCOPE_WRITE);
2021-06-08 10:28:14 +02:00
$uid = self::getCurrentUserID();
2021-05-13 23:15:32 +02:00
$request = $this->getRequest([
2021-05-19 08:18:42 +02:00
'title' => '',
], $request);
2021-05-19 08:18:42 +02:00
if (empty($request['title'])) {
2021-05-13 23:15:32 +02:00
DI::mstdnError()->UnprocessableEntity();
}
2021-05-19 08:18:42 +02:00
Group::create($uid, $request['title']);
2021-05-13 23:15:32 +02:00
2021-05-19 08:18:42 +02:00
$id = Group::getIdByName($uid, $request['title']);
2021-05-13 23:15:32 +02:00
if (!$id) {
DI::mstdnError()->InternalError();
}
System::jsonExit(DI::mstdnList()->createFromGroupId($id));
2021-05-09 11:35:51 +02:00
}
public function put(array $request = [])
2021-05-09 11:35:51 +02:00
{
$request = $this->getRequest([
'title' => '', // The title of the list to be updated.
'replies_policy' => '', // One of: "followed", "list", or "none".
]);
2021-05-13 23:15:32 +02:00
if (empty($request['title']) || empty($this->parameters['id'])) {
2021-05-13 23:15:32 +02:00
DI::mstdnError()->UnprocessableEntity();
}
Group::update($this->parameters['id'], $request['title']);
2021-05-09 11:35:51 +02:00
}
/**
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
protected function rawContent(array $request = [])
2021-05-09 11:35:51 +02:00
{
self::checkAllowedScope(self::SCOPE_READ);
2021-05-09 11:35:51 +02:00
$uid = self::getCurrentUserID();
if (empty($this->parameters['id'])) {
2021-05-09 11:35:51 +02:00
$lists = [];
2021-05-13 23:15:32 +02:00
$groups = Group::getByUserId($uid);
foreach ($groups as $group) {
2021-05-09 20:44:08 +02:00
$lists[] = DI::mstdnList()->createFromGroupId($group['id']);
2021-05-09 11:35:51 +02:00
}
} else {
$id = $this->parameters['id'];
2021-05-13 23:15:32 +02:00
if (!Group::exists($id, $uid)) {
2021-05-09 11:35:51 +02:00
DI::mstdnError()->RecordNotFound();
}
2021-05-09 20:44:08 +02:00
$lists = DI::mstdnList()->createFromGroupId($id);
2021-05-09 11:35:51 +02:00
}
System::jsonExit($lists);
}
}