]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Friendica/Events/Delete.php
Issue 12191: We can now follow and unfollow tags via API
[friendica.git] / src / Module / Api / Friendica / Events / Delete.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\Friendica\Events;
23
24 use Friendica\Database\DBA;
25 use Friendica\Model\Event;
26 use Friendica\Module\BaseApi;
27 use Friendica\Network\HTTPException;
28
29 /**
30  * API endpoint: /api/friendica/event_delete
31  */
32
33
34 class Delete extends BaseApi
35 {
36         protected function post(array $request = [])
37         {
38                 self::checkAllowedScope(self::SCOPE_WRITE);
39                 $uid = self::getCurrentUserID();
40
41                 $request = $this->getRequest([
42                         'id' => 0
43                 ], $request);
44
45                 // params
46
47                 // error if no id specified
48                 if ($request['id'] == 0) {
49                         throw new HTTPException\BadRequestException('id not specified');
50                 }
51
52                 // error message if specified id is not in database
53                 if (!DBA::exists('event', ['uid' => $uid, 'id' => $request['id']])) {
54                         throw new HTTPException\BadRequestException('id not available');
55                 }
56
57                 // delete event
58                 $eventid = $request['id'];
59                 Event::delete($eventid);
60
61                 $success = ['id' => $eventid, 'status' => 'deleted'];
62                 $this->response->exit('event_delete', ['$result' => $success], $this->parameters['extension'] ?? null);
63         }
64 }