]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Api/Mastodon/Mutes.php
Merge pull request #11070 from annando/api-array-reverse
[friendica.git] / src / Module / Api / Mastodon / Mutes.php
index 7939da114b0619061c997825d1951102dcb3f5b6..80e04f3dd268cb40d6af482e9757ed6a3e1f6f27 100644 (file)
@@ -32,28 +32,28 @@ use Friendica\Module\BaseApi;
 class Mutes 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);
                $uid = self::getCurrentUserID();
 
-               if (empty($parameters['id'])) {
+               if (empty($this->parameters['id'])) {
                        DI::mstdnError()->UnprocessableEntity();
                }
 
-               $id = $parameters['id'];
+               $id = $this->parameters['id'];
                if (!DBA::exists('contact', ['id' => $id, 'uid' => 0])) {
                        DI::mstdnError()->RecordNotFound();
                }
 
-               $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. Defaults to 40.
-               ]);
+               ], $request);
 
                $params = ['order' => ['cid' => true], 'limit' => $request['limit']];
 
@@ -67,21 +67,21 @@ class Mutes extends BaseApi
                        $condition = DBA::mergeConditions($condition, ["`cid` > ?", $request['since_id']]);
                }
 
-               if (!empty($min_id)) {
-                       $condition = DBA::mergeConditions($condition, ["`cid` > ?", $min_id]);
+               if (!empty($request['min_id'])) {
+                       $condition = DBA::mergeConditions($condition, ["`cid` > ?", $request['min_id']]);
 
                        $params['order'] = ['cid'];
                }
 
-               $followers = DBA::select('user-contact', ['cid'], $condition, $parameters);
+               $followers = DBA::select('user-contact', ['cid'], $condition, $params);
                while ($follower = DBA::fetch($followers)) {
                        self::setBoundaries($follower['cid']);
                        $accounts[] = DI::mstdnAccount()->createFromContactId($follower['cid'], $uid);
                }
                DBA::close($followers);
 
-               if (!empty($min_id)) {
-                       array_reverse($accounts);
+               if (!empty($request['min_id'])) {
+                       $accounts = array_reverse($accounts);
                }
 
                self::setLinkHeader();