]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/ScheduledStatuses.php
Merge pull request #13176 from MrPetovan/bug/warnings
[friendica.git] / src / Module / Api / Mastodon / ScheduledStatuses.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\Mastodon;
23
24 use Friendica\App\Router;
25 use Friendica\Core\System;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28 use Friendica\Model\Post;
29 use Friendica\Module\BaseApi;
30
31 /**
32  * @see https://docs.joinmastodon.org/methods/statuses/scheduled_statuses/
33  */
34 class ScheduledStatuses extends BaseApi
35 {
36         public function put(array $request = [])
37         {
38                 self::checkAllowedScope(self::SCOPE_WRITE);
39                 $uid = self::getCurrentUserID();
40
41                 $this->response->unsupported(Router::PUT, $request);
42         }
43
44         protected function delete(array $request = [])
45         {
46                 self::checkAllowedScope(self::SCOPE_WRITE);
47                 $uid = self::getCurrentUserID();
48
49                 if (empty($this->parameters['id'])) {
50                         DI::mstdnError()->UnprocessableEntity();
51                 }
52
53                 if (!DBA::exists('delayed-post', ['id' => $this->parameters['id'], 'uid' => $uid])) {
54                         DI::mstdnError()->RecordNotFound();
55                 }
56
57                 Post\Delayed::deleteById($this->parameters['id']);
58
59                 System::jsonExit([]);
60         }
61
62         /**
63          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
64          */
65         protected function rawContent(array $request = [])
66         {
67                 self::checkAllowedScope(self::SCOPE_READ);
68                 $uid = self::getCurrentUserID();
69
70                 if (isset($this->parameters['id'])) {
71                         System::jsonExit(DI::mstdnScheduledStatus()->createFromDelayedPostId($this->parameters['id'], $uid)->toArray());
72                 }
73
74                 $request = $this->getRequest([
75                         'limit'           => 20, // Max number of results to return. Defaults to 20.
76                         'max_id'          => 0,  // Return results older than ID
77                         'since_id'        => 0,  // Return results newer than ID
78                         'min_id'          => 0,  // Return results immediately newer than ID
79                 ], $request);
80
81                 $params = ['order' => ['id' => true], 'limit' => $request['limit']];
82
83                 $condition = ["`uid` = ? AND NOT `wid` IS NULL", $uid];
84
85                 if (!empty($request['max_id'])) {
86                         $condition = DBA::mergeConditions($condition, ["`uri-id` < ?", $request['max_id']]);
87                 }
88
89                 if (!empty($request['since_id'])) {
90                         $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $request['since_id']]);
91                 }
92
93                 if (!empty($request['min_id'])) {
94                         $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $request['min_id']]);
95                         $params['order'] = ['uri-id'];
96                 }
97
98                 $posts = DBA::select('delayed-post', ['id'], $condition, $params);
99
100                 $statuses = [];
101                 while ($post = DBA::fetch($posts)) {
102                         self::setBoundaries($post['id']);
103                         $statuses[] = DI::mstdnScheduledStatus()->createFromDelayedPostId($post['id'], $uid);
104                 }
105                 DBA::close($posts);
106
107                 if (!empty($request['min_id'])) {
108                         $statuses = array_reverse($statuses);
109                 }
110
111                 self::setLinkHeader();
112                 System::jsonExit($statuses);
113         }
114 }