]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/FollowRequests.php
Merge pull request #11112 from nupplaphil/feat/woodpecker
[friendica.git] / src / Module / Api / Mastodon / FollowRequests.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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                 $introduction = DI::intro()->selectOneById($this->parameters['id'], $uid);
51
52                 $contactId = $introduction->cid;
53
54                 switch ($this->parameters['action']) {
55                         case 'authorize':
56                                 Contact\Introduction::confirm($introduction);
57                                 $relationship = DI::mstdnRelationship()->createFromContactId($contactId, $uid);
58
59                                 DI::intro()->delete($introduction);
60                                 break;
61                         case 'ignore':
62                                 $introduction->ignore();
63                                 $relationship = DI::mstdnRelationship()->createFromContactId($contactId, $uid);
64
65                                 DI::intro()->save($introduction);
66                                 break;
67                         case 'reject':
68                                 Contact\Introduction::discard($introduction);
69                                 $relationship = DI::mstdnRelationship()->createFromContactId($contactId, $uid);
70
71                                 DI::intro()->delete($introduction);
72                                 break;
73                         default:
74                                 throw new HTTPException\BadRequestException('Unexpected action parameter, expecting "authorize", "ignore" or "reject"');
75                 }
76
77                 System::jsonExit($relationship);
78         }
79
80         /**
81          * @throws HTTPException\InternalServerErrorException
82          * @throws \ImagickException
83          * @see https://docs.joinmastodon.org/methods/accounts/follow_requests/
84          */
85         protected function rawContent(array $request = [])
86         {
87                 self::checkAllowedScope(self::SCOPE_READ);
88                 $uid = self::getCurrentUserID();
89
90                 $request = $this->getRequest([
91                         'min_id' => 0,
92                         'max_id' => 0,
93                         'limit'  => 40, // Maximum number of results to return. Defaults to 40. Paginate using the HTTP Link header.
94                 ], $request);
95
96                 $introductions = DI::intro()->selectForUser($uid, $request['min_id'], $request['max_id'], $request['limit']);
97
98                 $return = [];
99
100                 foreach ($introductions as $key => $introduction) {
101                         try {
102                                 self::setBoundaries($introduction->id);
103                                 $return[] = DI::mstdnFollowRequest()->createFromIntroduction($introduction);
104                         } catch (HTTPException\InternalServerErrorException $exception) {
105                                 DI::intro()->delete($introduction);
106                                 unset($introductions[$key]);
107                         }
108                 }
109
110                 self::setLinkHeader();
111                 System::jsonExit($return);
112         }
113 }