]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Timelines/ListTimeline.php
Rename BaseApi->logErrorAndJsonExit to logAndJsonError to better match the functionality
[friendica.git] / src / Module / Api / Mastodon / Timelines / ListTimeline.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Logger;
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\Module\BaseApi;
31 use Friendica\Network\HTTPException;
32 use Friendica\Object\Api\Mastodon\TimelineOrderByTypes;
33
34 /**
35  * @see https://docs.joinmastodon.org/methods/timelines/
36  */
37 class ListTimeline extends BaseApi
38 {
39         /**
40          * @throws HTTPException\InternalServerErrorException
41          */
42         protected function rawContent(array $request = [])
43         {
44                 $this->checkAllowedScope(self::SCOPE_READ);
45                 $uid = self::getCurrentUserID();
46
47                 if (empty($this->parameters['id'])) {
48                         $this->logAndJsonError(422, $this->errorFactory->UnprocessableEntity());
49                 }
50
51                 $request = $this->getRequest([
52                         'max_id'          => null,  // Return results older than id
53                         'since_id'        => null,  // Return results newer than id
54                         'min_id'          => null,  // Return results immediately newer than id
55                         'limit'           => 20,    // Maximum number of results to return. Defaults to 20.Return results older than this ID.
56                         'with_muted'      => false, // Pleroma extension: return activities by muted (not by blocked!) users.
57                         'only_media'      => false, // Show only statuses with media attached? Defaults to false.
58                         'local'           => false, // Show only local statuses? Defaults to false.
59                         'remote'          => false, // Show only remote statuses? Defaults to false.
60                         'exclude_replies' => false, // Don't show comments
61                         'friendica_order' => TimelineOrderByTypes::ID, // Sort order options (defaults to ID)
62                 ], $request);
63
64                 $condition = ["`uid` = ? AND `gravity` IN (?, ?) AND `contact-id` IN (SELECT `contact-id` FROM `group_member` WHERE `gid` = ?)",
65                         $uid, Item::GRAVITY_PARENT, Item::GRAVITY_COMMENT, $this->parameters['id']];
66
67                 $condition = $this->addPagingConditions($request, $condition);
68                 $params = $this->buildOrderAndLimitParams($request);
69
70                 if ($request['only_media']) {
71                         $condition = DBA::mergeConditions($condition, ["`uri-id` IN (SELECT `uri-id` FROM `post-media` WHERE `type` IN (?, ?, ?))",
72                                 Post\Media::AUDIO, Post\Media::IMAGE, Post\Media::VIDEO]);
73                 }
74
75                 if ($request['exclude_replies']) {
76                         $condition = DBA::mergeConditions($condition, ['gravity' => Item::GRAVITY_PARENT]);
77                 }
78
79                 if ($request['local']) {
80                         $condition = DBA::mergeConditions($condition, ["`uri-id` IN (SELECT `uri-id` FROM `post-user` WHERE `origin`)"]);
81                 }
82
83                 if ($request['remote']) {
84                         $condition = DBA::mergeConditions($condition, ["NOT `uri-id` IN (SELECT `uri-id` FROM `post-user` WHERE `origin` AND `post-user`.`uri-id` = `post-user-view`.`uri-id`)"]);
85                 }
86
87                 $items = Post::selectForUser($uid, ['uri-id'], $condition, $params);
88
89                 $display_quotes = self::appSupportsQuotes();
90
91                 $statuses = [];
92                 while ($item = Post::fetch($items)) {
93                         try {
94                                 $status =  DI::mstdnStatus()->createFromUriId($item['uri-id'], $uid, $display_quotes);
95                                 $this->updateBoundaries($status, $item, $request['friendica_order']);
96                                 $statuses[] = $status;
97                         } catch (\Throwable $th) {
98                                 Logger::info('Post not fetchable', ['uri-id' => $item['uri-id'], 'uid' => $uid, 'error' => $th]);
99                         }
100                 }
101                 DBA::close($items);
102
103                 if (!empty($request['min_id'])) {
104                         $statuses = array_reverse($statuses);
105                 }
106
107                 self::setLinkHeader($request['friendica_order'] != TimelineOrderByTypes::ID);
108                 $this->jsonExit($statuses);
109         }
110 }