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