]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Api/Mastodon/Accounts/Followers.php
Move jsonError out of Factory\Api\Mastodon\Error->UnprocessableEntity
[friendica.git] / src / Module / Api / Mastodon / Accounts / Followers.php
index 666cafc4205f84c946db666ce63e95dee7e633b9..19f2a438838041540f6c833854255f87d754502b 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\Accounts;
 use Friendica\Core\System;
 use Friendica\Database\DBA;
 use Friendica\DI;
+use Friendica\Model\Contact;
 use Friendica\Module\BaseApi;
 
 /**
@@ -32,59 +33,88 @@ use Friendica\Module\BaseApi;
 class Followers extends BaseApi
 {
        /**
-        * @param array $parameters
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function rawContent(array $parameters = [])
+       protected function rawContent(array $request = [])
        {
-               self::checkAllowedScope(self::SCOPE_READ);
+               $this->checkAllowedScope(self::SCOPE_READ);
                $uid = self::getCurrentUserID();
 
-               if (empty($parameters['id'])) {
-                       DI::mstdnError()->UnprocessableEntity();
+               if (empty($this->parameters['id'])) {
+                       $this->logErrorAndJsonExit(422, $this->errorFactory->UnprocessableEntity());
                }
 
-               $id = $parameters['id'];
+               $id = $this->parameters['id'];
                if (!DBA::exists('contact', ['id' => $id, 'uid' => 0])) {
-                       DI::mstdnError()->RecordNotFound();
+                       $this->logErrorAndJsonExit(404, $this->errorFactory->RecordNotFound());
                }
 
-               // @todo provide HTTP link header
-
-               $request = self::getRequest([
+               $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 id
                        'limit'    => 40, // Maximum number of results to return. Defaults to 40.
-               ]);
+               ], $request);
 
-               $params = ['order' => ['relation-cid' => true], 'limit' => $request['limit']];
+               if ($id == Contact::getPublicIdByUserId($uid)) {
+                       $params = ['order' => ['pid' => true], 'limit' => $request['limit']];
 
-               $condition = ['cid' => $id, 'follows' => true];
+                       $condition = ['uid' => $uid, 'self' => false, 'rel' => [Contact::FOLLOWER, Contact::FRIEND]];
 
-               if (!empty($request['max_id'])) {
-                       $condition = DBA::mergeConditions($condition, ["`relation-cid` < ?", $request['max_id']]);
-               }
+                       if (!empty($request['max_id'])) {
+                               $condition = DBA::mergeConditions($condition, ["`pid` < ?", $request['max_id']]);
+                       }
 
-               if (!empty($request['since_id'])) {
-                       $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $request['since_id']]);
-               }
+                       if (!empty($request['since_id'])) {
+                               $condition = DBA::mergeConditions($condition, ["`pid` > ?", $request['since_id']]);
+                       }
 
-               if (!empty($min_id)) {
-                       $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $min_id]);
+                       if (!empty($request['min_id'])) {
+                               $condition = DBA::mergeConditions($condition, ["`pid` > ?", $request['min_id']]);
 
-                       $params['order'] = ['cid'];
-               }
+                               $params['order'] = ['pid'];
+                       }
+
+                       $accounts = [];
+
+                       foreach (Contact::selectAccountToArray(['pid'], $condition, $params) as $follower) {
+                               self::setBoundaries($follower['pid']);
+                               $accounts[] = DI::mstdnAccount()->createFromContactId($follower['pid'], $uid);
+                       }
+               } else {
+                       $params = ['order' => ['relation-cid' => true], 'limit' => $request['limit']];
+
+                       $condition = ['cid' => $id, 'follows' => true];
+
+                       if (!empty($request['max_id'])) {
+                               $condition = DBA::mergeConditions($condition, ["`relation-cid` < ?", $request['max_id']]);
+                       }
+
+                       if (!empty($request['since_id'])) {
+                               $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $request['since_id']]);
+                       }
+
+                       if (!empty($request['min_id'])) {
+                               $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $request['min_id']]);
+
+                               $params['order'] = ['relation-cid'];
+                       }
+
+                       $accounts = [];
 
-               $followers = DBA::select('contact-relation', ['relation-cid'], $condition, $parameters);
-               while ($follower = DBA::fetch($followers)) {
-                       $accounts[] = DI::mstdnAccount()->createFromContactId($follower['relation-cid'], $uid);
+                       $followers = DBA::select('contact-relation', ['relation-cid'], $condition, $params);
+                       while ($follower = DBA::fetch($followers)) {
+                               self::setBoundaries($follower['relation-cid']);
+                               $accounts[] = DI::mstdnAccount()->createFromContactId($follower['relation-cid'], $uid);
+                       }
+                       DBA::close($followers);
                }
-               DBA::close($followers);
 
-               if (!empty($min_id)) {
-                       array_reverse($accounts);
+               if (!empty($request['min_id'])) {
+                       $accounts = array_reverse($accounts);
                }
 
-               System::jsonExit($accounts);
+               self::setLinkHeader();
+               $this->jsonExit($accounts);
        }
 }