]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Accounts/Statuses.php
Merge pull request #10166 from mexon/mat/refactor-user-arguments
[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                 $condition = ['author-id' => $id, 'private' => [Item::PUBLIC, Item::UNLISTED],
68                         'uid' => 0, 'network' => Protocol::FEDERATED];
69
70                 $condition = DBA::mergeConditions($condition, ["(`gravity` IN (?, ?) OR (`gravity` = ? AND `vid` = ?))",
71                         GRAVITY_PARENT, GRAVITY_COMMENT, GRAVITY_ACTIVITY, Verb::getID(Activity::ANNOUNCE)]);
72
73                 if (!empty($max_id)) {
74                         $condition = DBA::mergeConditions($condition, ["`uri-id` < ?", $max_id]);
75                 }
76
77                 if (!empty($since_id)) {
78                         $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $since_id]);
79                 }
80
81                 if (!empty($min_id)) {
82                         $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $min_id]);
83                         $params['order'] = ['uri-id'];
84                 }
85
86                 $items = Post::selectForUser(0, ['uri-id', 'uid'], $condition, $params);
87
88                 $statuses = [];
89                 while ($item = Post::fetch($items)) {
90                         $statuses[] = DI::mstdnStatus()->createFromUriId($item['uri-id'], $item['uid']);
91                 }
92                 DBA::close($items);
93
94                 if (!empty($min_id)) {
95                         array_reverse($statuses);
96                 }
97
98                 System::jsonExit($statuses);
99         }
100 }