mirror of
https://github.com/friendica/friendica
synced 2025-01-01 16:42:19 +00:00
115 lines
2.7 KiB
PHP
115 lines
2.7 KiB
PHP
<?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;
|
|
use Friendica\Model\Group;
|
|
|
|
/**
|
|
* @see https://docs.joinmastodon.org/methods/timelines/lists/
|
|
*/
|
|
class Lists extends BaseApi
|
|
{
|
|
public static function delete(array $parameters = [])
|
|
{
|
|
self::login(self::SCOPE_WRITE);
|
|
|
|
$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([]);
|
|
}
|
|
|
|
public static function post(array $parameters = [])
|
|
{
|
|
self::login(self::SCOPE_WRITE);
|
|
|
|
$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));
|
|
}
|
|
|
|
public static function put(array $parameters = [])
|
|
{
|
|
$data = self::getPutData();
|
|
|
|
if (empty($data['title']) || empty($parameters['id'])) {
|
|
DI::mstdnError()->UnprocessableEntity();
|
|
}
|
|
|
|
Group::update($parameters['id'], $data['title']);
|
|
}
|
|
|
|
/**
|
|
* @param array $parameters
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
*/
|
|
public static function rawContent(array $parameters = [])
|
|
{
|
|
self::login(self::SCOPE_READ);
|
|
$uid = self::getCurrentUserID();
|
|
|
|
if (empty($parameters['id'])) {
|
|
$lists = [];
|
|
|
|
$groups = Group::getByUserId($uid);
|
|
|
|
foreach ($groups as $group) {
|
|
$lists[] = DI::mstdnList()->createFromGroupId($group['id']);
|
|
}
|
|
} else {
|
|
$id = $parameters['id'];
|
|
|
|
if (!Group::exists($id, $uid)) {
|
|
DI::mstdnError()->RecordNotFound();
|
|
}
|
|
$lists = DI::mstdnList()->createFromGroupId($id);
|
|
}
|
|
|
|
System::jsonExit($lists);
|
|
}
|
|
}
|