]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Api/Mastodon/Statuses/Context.php
Rename BaseApi->logErrorAndJsonExit to logAndJsonError to better match the functionality
[friendica.git] / src / Module / Api / Mastodon / Statuses / Context.php
index 345a473dbe2e3a379751e245c92f60f55652bd11..6e35d717bf741d09bec7f51937beea1b1ff8edaa 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -24,6 +24,7 @@ namespace Friendica\Module\Api\Mastodon\Statuses;
 use Friendica\Core\System;
 use Friendica\Database\DBA;
 use Friendica\DI;
+use Friendica\Model\Item;
 use Friendica\Model\Post;
 use Friendica\Module\BaseApi;
 
@@ -33,62 +34,113 @@ use Friendica\Module\BaseApi;
 class Context extends BaseApi
 {
        /**
-        * @param array $parameters
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function rawContent(array $parameters = [])
+       protected function rawContent(array $request = [])
        {
                $uid = self::getCurrentUserID();
 
-               if (empty($parameters['id'])) {
-                       DI::mstdnError()->UnprocessableEntity();
+               if (empty($this->parameters['id'])) {
+                       $this->logAndJsonError(422, $this->errorFactory->UnprocessableEntity());
                }
 
-               $id = $parameters['id'];
+               $request = $this->getRequest([
+                       'max_id'   => 0,     // Return results older than this id
+                       'since_id' => 0,     // Return results newer than this id
+                       'min_id'   => 0,     // Return results immediately newer than this id
+                       'limit'    => 40,    // Maximum number of results to return. Defaults to 40.
+                       'show_all' => false, // shows posts for all users including blocked and ignored users
+               ], $request);
 
-               $parent = Post::selectFirst(['parent-uri-id'], ['uri-id' => $id]);
-               if (!DBA::isResult($parent)) {
-                       DI::mstdnError()->RecordNotFound();
-               }
+               $id = $this->parameters['id'];
 
                $parents  = [];
                $children = [];
+               $deleted  = [];
+
+               $parent = Post::selectOriginal(['uri-id', 'parent-uri-id'], ['uri-id' => $id]);
+               if (DBA::isResult($parent)) {
+                       $id = $parent['uri-id'];
+                       $params    = ['order' => ['uri-id' => true]];
+                       $condition = ['parent-uri-id' => $parent['parent-uri-id'], 'gravity' => [Item::GRAVITY_PARENT, Item::GRAVITY_COMMENT]];
 
-               $posts = Post::select(['uri-id', 'thr-parent-id'],
-                       ['parent-uri-id' => $parent['parent-uri-id'], 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT]], [], false);
-               while ($post = Post::fetch($posts)) {
-                       if ($post['uri-id'] == $post['thr-parent-id']) {
-                               continue;
+                       if (!empty($request['max_id'])) {
+                               $condition = DBA::mergeConditions($condition, ["`uri-id` < ?", $request['max_id']]);
                        }
-                       $parents[$post['uri-id']] = $post['thr-parent-id'];
 
-                       $children[$post['thr-parent-id']][] = $post['uri-id'];
+                       if (!empty($request['since_id'])) {
+                               $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $request['since_id']]);
+                       }
+
+                       if (!empty($request['min_id'])) {
+                               $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $request['min_id']]);
+                               $params['order'] = ['uri-id'];
+                       }
+
+                       if (!empty($uid) && !$request['show_all']) {
+                               $condition = DBA::mergeConditions(
+                                       $condition,
+                                       ["NOT `author-id` IN (SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND (`blocked` OR `ignored`))", $uid]
+                               );
+                       }
+
+                       $posts = Post::selectPosts(['uri-id', 'thr-parent-id', 'deleted'], $condition, $params);
+                       while ($post = Post::fetch($posts)) {
+                               if ($post['uri-id'] == $post['thr-parent-id']) {
+                                       continue;
+                               }
+                               self::setBoundaries($post['uri-id']);
+
+                               $parents[$post['uri-id']] = $post['thr-parent-id'];
+
+                               $children[$post['thr-parent-id']][] = $post['uri-id'];
+
+                               if ($post['deleted']) {
+                                       $deleted[] = $post['uri-id'];
+                               }
+                       }
+                       DBA::close($posts);
+
+                       self::setLinkHeader();
+               } else {
+                       $parent = DBA::selectFirst('mail', ['parent-uri-id'], ['uri-id' => $id, 'uid' => $uid]);
+                       if (DBA::isResult($parent)) {
+                               $posts = DBA::select('mail', ['uri-id', 'thr-parent-id'], ['parent-uri-id' => $parent['parent-uri-id']]);
+                               while ($post = DBA::fetch($posts)) {
+                                       if ($post['uri-id'] == $post['thr-parent-id']) {
+                                               continue;
+                                       }
+                                       $parents[$post['uri-id']] = $post['thr-parent-id'];
+
+                                       $children[$post['thr-parent-id']][] = $post['uri-id'];
+                               }
+                               DBA::close($posts);
+                       } else {
+                               $this->logAndJsonError(404, $this->errorFactory->RecordNotFound());
+                       }
                }
-               DBA::close($posts);
 
                $statuses = ['ancestors' => [], 'descendants' => []];
 
-               $ancestors = [];
-               foreach (self::getParents($id, $parents) as $ancestor) {
-                       $ancestors[$ancestor] = DI::mstdnStatus()->createFromUriId($ancestor, $uid);
-               }
+               $ancestors = array_diff(self::getParents($id, $parents), $deleted);
 
-               ksort($ancestors);
-               foreach ($ancestors as $ancestor) {
-                       $statuses['ancestors'][] = $ancestor;
-               }
+               asort($ancestors);
+
+               $display_quotes = self::appSupportsQuotes();
 
-               $descendants = [];
-               foreach (self::getChildren($id, $children) as $descendant) {
-                       $descendants[] = DI::mstdnStatus()->createFromUriId($descendant, $uid);
+               foreach (array_slice($ancestors, 0, $request['limit']) as $ancestor) {
+                       $statuses['ancestors'][] = DI::mstdnStatus()->createFromUriId($ancestor, $uid, $display_quotes);
                }
 
-               ksort($descendants);
-               foreach ($descendants as $descendant) {
-                       $statuses['descendants'][] = $descendant;
+               $descendants = array_diff(self::getChildren($id, $children), $deleted);
+
+               asort($descendants);
+
+               foreach (array_slice($descendants, 0, $request['limit']) as $descendant) {
+                       $statuses['descendants'][] = DI::mstdnStatus()->createFromUriId($descendant, $uid, $display_quotes);
                }
 
-               System::jsonExit($statuses);
+               $this->jsonExit($statuses);
        }
 
        private static function getParents(int $id, array $parents, array $list = [])