]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Accounts/Statuses.php
API: We now support two more timeline api endpoints
[friendica.git] / src / Module / Api / Mastodon / Accounts / Statuses.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\Accounts;
23
24 use Friendica\Core\Protocol;
25 use Friendica\Core\System;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28 use Friendica\Model\Item;
29 use Friendica\Model\Post;
30 use Friendica\Model\Verb;
31 use Friendica\Module\BaseApi;
32 use Friendica\Protocol\Activity;
33
34 /**
35  * @see https://docs.joinmastodon.org/methods/accounts/
36  */
37 class Statuses extends BaseApi
38 {
39         /**
40          * @param array $parameters
41          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
42          */
43         public static function rawContent(array $parameters = [])
44         {
45                 if (empty($parameters['id'])) {
46                         DI::mstdnError()->RecordNotFound();
47                 }
48
49                 $id = $parameters['id'];
50                 if (!DBA::exists('contact', ['id' => $id, 'uid' => 0])) {
51                         DI::mstdnError()->RecordNotFound();
52                 }
53
54                 // Show only statuses with media attached? Defaults to false.
55                 $only_media = (bool)!isset($_REQUEST['only_media']) ? false : ($_REQUEST['only_media'] == 'true'); // Currently not supported
56                 // Return results older than this id
57                 $max_id = (int)!isset($_REQUEST['max_id']) ? 0 : $_REQUEST['max_id'];
58                 // Return results newer than this id
59                 $since_id = (int)!isset($_REQUEST['since_id']) ? 0 : $_REQUEST['since_id'];
60                 // Return results immediately newer than this id
61                 $min_id = (int)!isset($_REQUEST['min_id']) ? 0 : $_REQUEST['min_id'];
62                 // Maximum number of results to return. Defaults to 20.
63                 $limit = (int)!isset($_REQUEST['limit']) ? 20 : $_REQUEST['limit'];
64
65                 $params = ['order' => ['uri-id' => true], 'limit' => $limit];
66
67                 $uid = self::getCurrentUserID();
68
69                 if (!$uid) {
70                         $condition = ['author-id' => $id, 'private' => [Item::PUBLIC, Item::UNLISTED],
71                                 'uid' => 0, 'network' => Protocol::FEDERATED];
72                 } else {
73                         $condition = ["`author-id` = ? AND (`uid` = 0 OR (`uid` = ? AND NOT `global`))", $id, $uid];
74                 }
75
76                 $condition = DBA::mergeConditions($condition, ["(`gravity` IN (?, ?) OR (`gravity` = ? AND `vid` = ?))",
77                         GRAVITY_PARENT, GRAVITY_COMMENT, GRAVITY_ACTIVITY, Verb::getID(Activity::ANNOUNCE)]);
78
79                 if (!empty($max_id)) {
80                         $condition = DBA::mergeConditions($condition, ["`uri-id` < ?", $max_id]);
81                 }
82
83                 if (!empty($since_id)) {
84                         $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $since_id]);
85                 }
86
87                 if (!empty($min_id)) {
88                         $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $min_id]);
89                         $params['order'] = ['uri-id'];
90                 }
91
92                 $items = Post::selectForUser($uid, ['uri-id'], $condition, $params);
93
94                 $statuses = [];
95                 while ($item = Post::fetch($items)) {
96                         $statuses[] = DI::mstdnStatus()->createFromUriId($item['uri-id'], $uid);
97                 }
98                 DBA::close($items);
99
100                 if (!empty($min_id)) {
101                         array_reverse($statuses);
102                 }
103
104                 System::jsonExit($statuses);
105         }
106 }