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

116 lines
2.7 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
{
public static function delete(array $parameters = [])
{
2021-05-13 23:15:32 +02:00
self::login();
$uid = self::getCurrentUserID();
if (empty($parameters['id'])) {
DI::mstdnError()->UnprocessableEntity();
}
if (!Group::exists($parameters['id'], $uid)) {
DI::mstdnError()->RecordNotFound();
}
if (!Group::remove($parameters['id'])) {
DI::mstdnError()->InternalError();
}
System::jsonExit([]);
2021-05-09 11:35:51 +02:00
}
public static function post(array $parameters = [])
{
2021-05-13 23:15:32 +02:00
self::login();
$uid = self::getCurrentUserID();
$title = $_REQUEST['title'] ?? '';
if (empty($title)) {
DI::mstdnError()->UnprocessableEntity();
}
Group::create($uid, $title);
$id = Group::getIdByName($uid, $title);
if (!$id) {
DI::mstdnError()->InternalError();
}
System::jsonExit(DI::mstdnList()->createFromGroupId($id));
2021-05-09 11:35:51 +02:00
}
public static function put(array $parameters = [])
{
2021-05-13 23:15:32 +02:00
$data = self::getPutData();
if (empty($data['title']) || empty($parameters['id'])) {
DI::mstdnError()->UnprocessableEntity();
}
Group::update($parameters['id'], $data['title']);
2021-05-09 11:35:51 +02:00
}
/**
* @param array $parameters
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
public static function rawContent(array $parameters = [])
{
self::login();
$uid = self::getCurrentUserID();
if (empty($parameters['id'])) {
$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 = $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);
}
}