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

117 lines
3.2 KiB
PHP
Raw Normal View History

2021-05-09 11:35:51 +02:00
<?php
/**
2023-01-01 15:36:24 +01:00
* @copyright Copyright (C) 2010-2023, the Friendica project
2021-05-09 11:35:51 +02: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;
use Friendica\Core\System;
use Friendica\DI;
use Friendica\Module\BaseApi;
use Friendica\Model\Circle;
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
{
$this->checkAllowedScope(self::SCOPE_WRITE);
2021-05-13 23:15:32 +02:00
$uid = self::getCurrentUserID();
if (empty($this->parameters['id'])) {
$this->logErrorAndJsonExit(422, $this->errorFactory->UnprocessableEntity());
2021-05-13 23:15:32 +02:00
}
if (!Circle::exists($this->parameters['id'], $uid)) {
$this->logErrorAndJsonExit(404, $this->errorFactory->RecordNotFound());
2021-05-13 23:15:32 +02:00
}
if (!Circle::remove($this->parameters['id'])) {
$this->logErrorAndJsonExit(500, $this->errorFactory->InternalError());
2021-05-13 23:15:32 +02:00
}
$this->jsonExit([]);
2021-05-09 11:35:51 +02:00
}
protected function post(array $request = [])
2021-05-09 11:35:51 +02:00
{
$this->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'])) {
$this->logErrorAndJsonExit(422, $this->errorFactory->UnprocessableEntity());
2021-05-13 23:15:32 +02:00
}
Circle::create($uid, $request['title']);
2021-05-13 23:15:32 +02:00
$id = Circle::getIdByName($uid, $request['title']);
2021-05-13 23:15:32 +02:00
if (!$id) {
$this->logErrorAndJsonExit(500, $this->errorFactory->InternalError());
2021-05-13 23:15:32 +02:00
}
$this->jsonExit(DI::mstdnList()->createFromCircleId($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".
], $request);
2021-05-13 23:15:32 +02:00
if (empty($request['title']) || empty($this->parameters['id'])) {
$this->logErrorAndJsonExit(422, $this->errorFactory->UnprocessableEntity());
2021-05-13 23:15:32 +02:00
}
Circle::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
{
$this->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 = [];
foreach (Circle::getByUserId($uid) as $circle) {
$lists[] = DI::mstdnList()->createFromCircleId($circle['id']);
2021-05-09 11:35:51 +02:00
}
} else {
$id = $this->parameters['id'];
2021-05-13 23:15:32 +02:00
if (!Circle::exists($id, $uid)) {
$this->logErrorAndJsonExit(404, $this->errorFactory->RecordNotFound());
2021-05-09 11:35:51 +02:00
}
$lists = DI::mstdnList()->createFromCircleId($id);
2021-05-09 11:35:51 +02:00
}
$this->jsonExit($lists);
2021-05-09 11:35:51 +02:00
}
}