]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Api/Mastodon/FollowRequests.php
Update copyright
[friendica.git] / src / Module / Api / Mastodon / FollowRequests.php
index e31f023cde5924651417f97c3dfb36e14049e223..009094057782bdef047b12ff044e87b05f01005f 100644 (file)
@@ -1,21 +1,35 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Module\Api\Mastodon;
 
-use Friendica\Api\Mastodon;
 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\Module\BaseApi;
 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
+class FollowRequests extends BaseApi
 {
        public static function init(array $parameters = [])
        {
@@ -30,8 +44,11 @@ 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
         */
@@ -39,23 +56,25 @@ class FollowRequests extends Api
        {
                parent::post($parameters);
 
-               $Intro = DI::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"');
@@ -72,47 +91,29 @@ class FollowRequests extends Api
         */
        public static function rawContent(array $parameters = [])
        {
-               $since_id = $_GET['since_id'] ?? null;
+               $min_id = $_GET['min_id'] ?? null;
                $max_id = $_GET['max_id'] ?? null;
                $limit = intval($_GET['limit'] ?? 40);
 
                $baseUrl = DI::baseUrl();
 
-               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);
-
-               $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']],
+                       $min_id,
+                       $max_id,
+                       $limit
                );
 
                $return = [];
-               foreach ($intros as $intro) {
-                       $cdata = Contact::getPublicAndUserContacID($intro['contact-id'], $intro['uid']);
-                       if (empty($cdata['public'])) {
-                               continue;
-                       }
-
-                       $publicContact = Contact::getById($cdata['public']);
-                       $userContact = Contact::getById($cdata['user']);
-                       $apcontact = APContact::getByURL($publicContact['url'], false);
-                       $account = Mastodon\Account::create($baseUrl, $publicContact, $apcontact, $userContact);
 
-                       // 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 = [];
@@ -121,10 +122,13 @@ class FollowRequests extends Api
                }
 
                $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"';
+               }
+
+               if (count($introductions)) {
+                       $links[] = '<' . $baseUrl->get() . '/api/v1/follow_requests?' . http_build_query($base_query + ['min_id' => $introductions[0]->id]) . '>; rel="prev"';
                }
-               $links[] = '<' . $baseUrl->get() . '/api/v1/follow_requests?' . http_build_query($base_query + ['since_id' => $intros[0]['id']]) . '>; rel="prev"';
 
                header('Link: ' . implode(', ', $links));