]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Twitter/Lists/Destroy.php
Merge pull request #12921 from HankG/add-visibility-data-to-mastodon-status
[friendica.git] / src / Module / Api / Twitter / Lists / Destroy.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Api\Twitter\Lists;
23
24 use Friendica\App;
25 use Friendica\Core\L10n;
26 use Friendica\Database\Database;
27 use Friendica\Factory\Api\Friendica\Group as FriendicaGroup;
28 use Friendica\Module\BaseApi;
29 use Friendica\Model\Contact;
30 use Friendica\Model\Group;
31 use Friendica\Module\Api\ApiResponse;
32 use Friendica\Network\HTTPException;
33 use Friendica\Util\Profiler;
34 use Psr\Log\LoggerInterface;
35
36 /**
37  * Delete a group.
38  *
39  * @see https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/post-lists-destroy
40  */
41 class Destroy extends BaseApi
42 {
43         /** @var friendicaGroup */
44         private $friendicaGroup;
45
46         /** @var Database */
47         private $dba;
48
49         public function __construct(Database $dba, FriendicaGroup $friendicaGroup, App $app, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, ApiResponse $response, array $server, array $parameters = [])
50         {
51                 parent::__construct($app, $l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
52
53                 $this->dba            = $dba;
54                 $this->friendicaGroup = $friendicaGroup;
55         }
56
57         protected function rawContent(array $request = [])
58         {
59                 BaseApi::checkAllowedScope(BaseApi::SCOPE_WRITE);
60                 $uid = BaseApi::getCurrentUserID();
61
62                 // params
63                 $gid = $this->getRequestValue($request, 'list_id', 0);
64
65                 // error if no gid specified
66                 if ($gid == 0) {
67                         throw new HTTPException\BadRequestException('gid not specified');
68                 }
69
70                 // get data of the specified group id
71                 $group = $this->dba->selectFirst('group', [], ['uid' => $uid, 'id' => $gid]);
72                 // error message if specified gid is not in database
73                 if (!$group) {
74                         throw new HTTPException\BadRequestException('gid not available');
75                 }
76
77                 $list = $this->friendicaGroup->createFromId($gid);
78
79                 if (Group::remove($gid)) {
80                         $this->response->exit('statuses', ['lists' => ['lists' => $list]], $this->parameters['extension'] ?? null, Contact::getPublicIdByUserId($uid));
81                 }
82         }
83 }