]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Api/Mastodon/FollowRequests.php
Merge pull request #8118 from annando/spamcheck
[friendica.git] / src / Module / Api / Mastodon / FollowRequests.php
index a8d6cb52ea0a190b7e6ea90bdf5e7e7920e1e57d..fc384f79793d959b0aa787ed9150cef47bfb82a9 100644 (file)
@@ -2,18 +2,16 @@
 
 namespace Friendica\Module\Api\Mastodon;
 
-use Friendica\Api\Mastodon;
+use Friendica\Api\Entity\Mastodon;
+use Friendica\Api\Entity\Mastodon\Relationship;
 use Friendica\Core\System;
-use Friendica\Database\DBA;
-use Friendica\Model\APContact;
 use Friendica\DI;
 use Friendica\Model\Contact;
-use Friendica\Model\Introduction;
 use Friendica\Module\Base\Api;
 use Friendica\Network\HTTPException;
 
 /**
- * @see https://docs.joinmastodon.org/api/rest/follow-requests/
+ * @see https://docs.joinmastodon.org/methods/accounts/follow_requests
  */
 class FollowRequests extends Api
 {
@@ -26,29 +24,41 @@ class FollowRequests extends Api
                }
        }
 
+       /**
+        * @param array $parameters
+        * @throws HTTPException\BadRequestException
+        * @throws HTTPException\ForbiddenException
+        * @throws HTTPException\InternalServerErrorException
+        * @throws HTTPException\NotFoundException
+        * @throws HTTPException\UnauthorizedException
+        * @throws \ImagickException
+        *
+        * @see https://docs.joinmastodon.org/methods/accounts/follow_requests#accept-follow
+        * @see https://docs.joinmastodon.org/methods/accounts/follow_requests#reject-follow
+        */
        public static function post(array $parameters = [])
        {
                parent::post($parameters);
 
-               /** @var Introduction $Intro */
-               $Intro = self::getClass(Introduction::class);
-               $Intro->fetch(['id' => $parameters['id'], 'uid' => self::$current_user_id]);
-
-               $contactId = $Intro->{'contact-id'};
+               $introduction = DI::intro()->selectFirst(['id' => $parameters['id'], 'uid' => self::$current_user_id]);
 
-               $relationship = new Mastodon\Relationship();
-               $relationship->id = $contactId;
+               $contactId = $introduction->{'contact-id'};
 
                switch ($parameters['action']) {
                        case 'authorize':
-                               $Intro->confirm();
-                               $relationship = Mastodon\Relationship::createFromContact(Contact::getById($contactId));
+                               $introduction->confirm();
+
+                               $relationship = DI::mstdnRelationship()->createFromContactId($contactId);
                                break;
                        case 'ignore':
-                               $Intro->ignore();
+                               $introduction->ignore();
+
+                               $relationship = DI::mstdnRelationship()->createDefaultFromContactId($contactId);
                                break;
                        case 'reject':
-                               $Intro->discard();
+                               $introduction->discard();
+
+                               $relationship = DI::mstdnRelationship()->createDefaultFromContactId($contactId);
                                break;
                        default:
                                throw new HTTPException\BadRequestException('Unexpected action parameter, expecting "authorize", "ignore" or "reject"');
@@ -60,7 +70,8 @@ class FollowRequests extends Api
        /**
         * @param array $parameters
         * @throws HTTPException\InternalServerErrorException
-        * @see https://docs.joinmastodon.org/api/rest/follow-requests/#get-api-v1-follow-requests
+        * @throws \ImagickException
+        * @see https://docs.joinmastodon.org/methods/accounts/follow_requests#pending-follows
         */
        public static function rawContent(array $parameters = [])
        {
@@ -68,35 +79,25 @@ class FollowRequests extends Api
                $max_id = $_GET['max_id'] ?? null;
                $limit = intval($_GET['limit'] ?? 40);
 
-               if (isset($since_id) && isset($max_id)) {
-                       $condition = ['`uid` = ? AND NOT `ignore` AND `id` > ? AND `id` < ?', self::$current_user_id, $since_id, $max_id];
-               } elseif (isset($since_id)) {
-                       $condition = ['`uid` = ? AND NOT `ignore` AND `id` > ?', self::$current_user_id, $since_id];
-               } elseif (isset($max_id)) {
-                       $condition = ['`uid` = ? AND NOT `ignore` AND `id` < ?', self::$current_user_id, $max_id];
-               } else {
-                       $condition = ['`uid` = ? AND NOT `ignore`', self::$current_user_id];
-               }
-
-               $count = DBA::count('intro', $condition);
+               $baseUrl = DI::baseUrl();
 
-               $intros = DBA::selectToArray(
-                       'intro',
-                       [],
-                       $condition,
-                       ['order' => ['id' => 'DESC'], 'limit' => $limit]
+               $introductions = DI::intro()->selectByBoundaries(
+                       ['`uid` = ? AND NOT `ignore`', self::$current_user_id],
+                       ['order' => ['id' => 'DESC']],
+                       $since_id,
+                       $max_id,
+                       $limit
                );
 
                $return = [];
-               foreach ($intros as $intro) {
-                       $contact = Contact::getById($intro['contact-id']);
-                       $apcontact = APContact::getByURL($contact['url'], false);
-                       $account = Mastodon\Account::createFromContact($contact, $apcontact);
-
-                       // Not ideal, the same "account" can have multiple ids depending on the context
-                       $account->id = $intro['id'];
 
-                       $return[] = $account;
+               foreach ($introductions as $key => $introduction) {
+                       try {
+                               $return[] = DI::mstdnFollowRequest()->createFromIntroduction($introduction);
+                       } catch (HTTPException\InternalServerErrorException $exception) {
+                               DI::intro()->delete($introduction);
+                               unset($introductions[$key]);
+                       }
                }
 
                $base_query = [];
@@ -104,13 +105,11 @@ class FollowRequests extends Api
                        $base_query['limit'] = $limit;
                }
 
-               $BaseURL = DI::baseUrl();
-
                $links = [];
-               if ($count > $limit) {
-                       $links[] = '<' . $BaseURL->get() . '/api/v1/follow_requests?' . http_build_query($base_query + ['max_id' => $intros[count($intros) - 1]['id']]) . '>; rel="next"';
+               if ($introductions->getTotalCount() > $limit) {
+                       $links[] = '<' . $baseUrl->get() . '/api/v1/follow_requests?' . http_build_query($base_query + ['max_id' => $introductions[count($introductions) - 1]->id]) . '>; rel="next"';
                }
-               $links[] = '<' . $BaseURL->get() . '/api/v1/follow_requests?' . http_build_query($base_query + ['since_id' => $intros[0]['id']]) . '>; rel="prev"';
+               $links[] = '<' . $baseUrl->get() . '/api/v1/follow_requests?' . http_build_query($base_query + ['since_id' => $introductions[0]->id]) . '>; rel="prev"';
 
                header('Link: ' . implode(', ', $links));