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