]> git.mxchange.org Git - friendica.git/commitdiff
Remove extraneous ID parameter from Mastodon Blocks Listing API
authorHank Grabowski <hankgrabowski@gmail.com>
Mon, 20 Feb 2023 15:18:15 +0000 (10:18 -0500)
committerHank Grabowski <hankgrabowski@gmail.com>
Mon, 20 Feb 2023 15:18:15 +0000 (10:18 -0500)
src/Module/Api/Mastodon/Blocks.php

index 2c2adad2a65a0a49d50f13a82c4cd57de433edde..55e65b61966fe0988c234c8071b7fd1883530b75 100644 (file)
@@ -39,15 +39,6 @@ class Blocks extends BaseApi
                self::checkAllowedScope(self::SCOPE_READ);
                $uid = self::getCurrentUserID();
 
-               if (empty($this->parameters['id'])) {
-                       DI::mstdnError()->UnprocessableEntity();
-               }
-
-               $id = $this->parameters['id'];
-               if (!DBA::exists('contact', ['id' => $id, 'uid' => 0])) {
-                       DI::mstdnError()->RecordNotFound();
-               }
-
                $request = $this->getRequest([
                        'max_id'   => 0,  // Return results older than this id
                        'since_id' => 0,  // Return results newer than this id
@@ -57,7 +48,7 @@ class Blocks extends BaseApi
 
                $params = ['order' => ['cid' => true], 'limit' => $request['limit']];
 
-               $condition = ['cid' => $id, 'blocked' => true, 'uid' => $uid];
+               $condition = ['blocked' => true, 'uid' => $uid];
 
                if (!empty($request['max_id'])) {
                        $condition = DBA::mergeConditions($condition, ["`cid` < ?", $request['max_id']]);
@@ -74,6 +65,7 @@ class Blocks extends BaseApi
                }
 
                $followers = DBA::select('user-contact', ['cid'], $condition, $params);
+               $accounts = [];
                while ($follower = DBA::fetch($followers)) {
                        self::setBoundaries($follower['cid']);
                        $accounts[] = DI::mstdnAccount()->createFromContactId($follower['cid'], $uid);