]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Statuses/Context.php
Merge pull request #12837 from HankG/fix-blocks-ignores-in-full-context-status-request
[friendica.git] / src / Module / Api / Mastodon / Statuses / Context.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\Statuses;
23
24 use Friendica\Core\System;
25 use Friendica\Database\DBA;
26 use Friendica\DI;
27 use Friendica\Model\Item;
28 use Friendica\Model\Post;
29 use Friendica\Module\BaseApi;
30
31 /**
32  * @see https://docs.joinmastodon.org/methods/statuses/
33  */
34 class Context extends BaseApi
35 {
36         /**
37          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
38          */
39         protected function rawContent(array $request = [])
40         {
41                 $uid = self::getCurrentUserID();
42
43                 if (empty($this->parameters['id'])) {
44                         DI::mstdnError()->UnprocessableEntity();
45                 }
46
47                 $request = $this->getRequest([
48                         'max_id'   => 0,     // Return results older than this id
49                         'since_id' => 0,     // Return results newer than this id
50                         'min_id'   => 0,     // Return results immediately newer than this id
51                         'limit'    => 40,    // Maximum number of results to return. Defaults to 40.
52                         'show_all' => false, // shows posts for all users including blocked and ignored users
53                 ], $request);
54
55                 $id = $this->parameters['id'];
56
57                 $parents  = [];
58                 $children = [];
59
60                 $parent = Post::selectFirst(['parent-uri-id'], ['uri-id' => $id]);
61                 if (DBA::isResult($parent)) {
62                         $params    = ['order' => ['uri-id' => true]];
63                         $condition = ['parent-uri-id' => $parent['parent-uri-id'], 'gravity' => [Item::GRAVITY_PARENT, Item::GRAVITY_COMMENT]];
64
65                         if (!empty($request['max_id'])) {
66                                 $condition = DBA::mergeConditions($condition, ["`uri-id` < ?", $request['max_id']]);
67                         }
68         
69                         if (!empty($request['since_id'])) {
70                                 $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $request['since_id']]);
71                         }
72         
73                         if (!empty($request['min_id'])) {
74                                 $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $request['min_id']]);
75                                 $params['order'] = ['uri-id'];
76                         }
77
78                         if (!empty($uid) && !$request['show_all']) {
79                                 $condition = DBA::mergeConditions(
80                                         $condition,
81                                         ["NOT `author-id` IN (SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND (`blocked` OR `ignored`))", $uid]
82                                 );
83                         }
84         
85                         $posts = Post::selectPosts(['uri-id', 'thr-parent-id'], $condition, $params);
86                         while ($post = Post::fetch($posts)) {
87                                 if ($post['uri-id'] == $post['thr-parent-id']) {
88                                         continue;
89                                 }
90                                 self::setBoundaries($post['uri-id']);
91
92                                 $parents[$post['uri-id']] = $post['thr-parent-id'];
93
94                                 $children[$post['thr-parent-id']][] = $post['uri-id'];
95                         }
96                         DBA::close($posts);
97
98                         self::setLinkHeader();
99                 } else {
100                         $parent = DBA::selectFirst('mail', ['parent-uri-id'], ['uri-id' => $id, 'uid' => $uid]);
101                         if (DBA::isResult($parent)) {
102                                 $posts = DBA::select('mail', ['uri-id', 'thr-parent-id'], ['parent-uri-id' => $parent['parent-uri-id']]);
103                                 while ($post = DBA::fetch($posts)) {
104                                         if ($post['uri-id'] == $post['thr-parent-id']) {
105                                                 continue;
106                                         }
107                                         $parents[$post['uri-id']] = $post['thr-parent-id'];
108
109                                         $children[$post['thr-parent-id']][] = $post['uri-id'];
110                                 }
111                                 DBA::close($posts);
112                         } else {
113                                 DI::mstdnError()->RecordNotFound();
114                         }
115                 }
116
117                 $statuses = ['ancestors' => [], 'descendants' => []];
118
119                 $ancestors = self::getParents($id, $parents);
120
121                 asort($ancestors);
122
123                 $display_quotes = self::appSupportsQuotes();
124
125                 foreach (array_slice($ancestors, 0, $request['limit']) as $ancestor) {
126                         $statuses['ancestors'][] = DI::mstdnStatus()->createFromUriId($ancestor, $uid, $display_quotes);
127                 }
128
129                 $descendants = self::getChildren($id, $children);
130
131                 asort($descendants);
132
133                 foreach (array_slice($descendants, 0, $request['limit']) as $descendant) {
134                         $statuses['descendants'][] = DI::mstdnStatus()->createFromUriId($descendant, $uid, $display_quotes);
135                 }
136
137                 System::jsonExit($statuses);
138         }
139
140         private static function getParents(int $id, array $parents, array $list = [])
141         {
142                 if (!empty($parents[$id])) {
143                         $list[] = $parents[$id];
144
145                         $list = self::getParents($parents[$id], $parents, $list);
146                 }
147                 return $list;
148         }
149
150         private static function getChildren(int $id, array $children, array $list = [])
151         {
152                 if (!empty($children[$id])) {
153                         foreach ($children[$id] as $child) {
154                                 $list[] = $child;
155
156                                 $list = self::getChildren($child, $children, $list);
157                         }
158                 }
159                 return $list;
160         }
161 }