]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/FollowRequests.php
Merge pull request #12837 from HankG/fix-blocks-ignores-in-full-context-status-request
[friendica.git] / src / Module / Api / Mastodon / FollowRequests.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Api\Mastodon;
23
24 use Friendica\Core\System;
25 use Friendica\DI;
26 use Friendica\Model\Contact;
27 use Friendica\Module\BaseApi;
28 use Friendica\Network\HTTPException;
29
30 /**
31  * @see https://docs.joinmastodon.org/methods/accounts/follow_requests
32  */
33 class FollowRequests extends BaseApi
34 {
35         /**
36          * @throws HTTPException\BadRequestException
37          * @throws HTTPException\InternalServerErrorException
38          * @throws HTTPException\NotFoundException
39          * @throws HTTPException\UnauthorizedException
40          * @throws \ImagickException
41          *
42          * @see https://docs.joinmastodon.org/methods/accounts/follow_requests#accept-follow
43          * @see https://docs.joinmastodon.org/methods/accounts/follow_requests#reject-follow
44          */
45         protected function post(array $request = [])
46         {
47                 self::checkAllowedScope(self::SCOPE_FOLLOW);
48                 $uid = self::getCurrentUserID();
49
50                 $cdata = Contact::getPublicAndUserContactID($this->parameters['id'], $uid);
51                 if (empty($cdata['user'])) {
52                         throw new HTTPException\NotFoundException('Contact not found');
53                 }
54
55                 $introduction = DI::intro()->selectForContact($cdata['user']);
56
57                 $contactId = $introduction->cid;
58
59                 switch ($this->parameters['action']) {
60                         case 'authorize':
61                                 Contact\Introduction::confirm($introduction);
62                                 $relationship = DI::mstdnRelationship()->createFromContactId($contactId, $uid);
63
64                                 DI::intro()->delete($introduction);
65                                 break;
66                         case 'ignore':
67                                 $introduction->ignore();
68                                 $relationship = DI::mstdnRelationship()->createFromContactId($contactId, $uid);
69
70                                 DI::intro()->save($introduction);
71                                 break;
72                         case 'reject':
73                                 Contact\Introduction::discard($introduction);
74                                 $relationship = DI::mstdnRelationship()->createFromContactId($contactId, $uid);
75
76                                 DI::intro()->delete($introduction);
77                                 break;
78                         default:
79                                 throw new HTTPException\BadRequestException('Unexpected action parameter, expecting "authorize", "ignore" or "reject"');
80                 }
81
82                 System::jsonExit($relationship);
83         }
84
85         /**
86          * @throws HTTPException\InternalServerErrorException
87          * @throws \ImagickException
88          * @see https://docs.joinmastodon.org/methods/accounts/follow_requests/
89          */
90         protected function rawContent(array $request = [])
91         {
92                 self::checkAllowedScope(self::SCOPE_READ);
93                 $uid = self::getCurrentUserID();
94
95                 $request = $this->getRequest([
96                         'min_id' => 0,
97                         'max_id' => 0,
98                         'limit'  => 40, // Maximum number of results to return. Defaults to 40. Paginate using the HTTP Link header.
99                 ], $request);
100
101                 $introductions = DI::intro()->selectForUser($uid, $request['min_id'], $request['max_id'], $request['limit']);
102
103                 $return = [];
104
105                 foreach ($introductions as $key => $introduction) {
106                         try {
107                                 self::setBoundaries($introduction->id);
108                                 $return[] = DI::mstdnAccount()->createFromContactId($introduction->cid, $introduction->uid);
109                         } catch (HTTPException\InternalServerErrorException
110                                 | HTTPException\NotFoundException
111                                 | \ImagickException $exception) {
112                                 DI::intro()->delete($introduction);
113                                 unset($introductions[$key]);
114                         }
115                 }
116
117                 self::setLinkHeader();
118                 System::jsonExit($return);
119         }
120 }