]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Timelines/Direct.php
Use "checkAllowedScope" instead of "login"
[friendica.git] / src / Module / Api / Mastodon / Timelines / Direct.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\Timelines;
23
24 use Friendica\Core\System;
25 use Friendica\Database\DBA;
26 use Friendica\DI;
27 use Friendica\Module\BaseApi;
28 use Friendica\Network\HTTPException;
29
30 /**
31  * @see https://docs.joinmastodon.org/methods/timelines/
32  */
33 class Direct extends BaseApi
34 {
35         /**
36          * @param array $parameters
37          * @throws HTTPException\InternalServerErrorException
38          */
39         public static function rawContent(array $parameters = [])
40         {
41                 self::checkAllowedScope(self::SCOPE_READ);
42                 $uid = self::getCurrentUserID();
43
44                 $request = self::getRequest([
45                         'max_id'   => 0,  // Return results older than id
46                         'since_id' => 0,  // Return results newer than id
47                         'min_id'   => 0,  // Return results immediately newer than id
48                         'limit'    => 20, // Maximum number of results to return. Defaults to 20.
49                 ]);
50
51                 $params = ['order' => ['uri-id' => true], 'limit' => $request['limit']];
52
53                 $condition = ['uid' => $uid];
54
55                 if (!empty($request['max_id'])) {
56                         $condition = DBA::mergeConditions($condition, ["`uri-id` < ?", $request['max_id']]);
57                 }
58
59                 if (!empty($request['since_id'])) {
60                         $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $request['since_id']]);
61                 }
62
63                 if (!empty($request['min_id'])) {
64                         $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $request['min_id']]);
65
66                         $params['order'] = ['uri-id'];
67                 }
68
69                 $mails = DBA::select('mail', ['id'], $condition, $params);
70
71                 $statuses = [];
72
73                 while ($mail = DBA::fetch($mails)) {
74                         $statuses[] = DI::mstdnStatus()->createFromMailId($mail['id']);
75                 }
76
77                 if (!empty($request['min_id'])) {
78                         array_reverse($statuses);
79                 }
80
81                 System::jsonExit($statuses);
82         }
83 }