]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Blocks.php
Merge pull request #13176 from MrPetovan/bug/warnings
[friendica.git] / src / Module / Api / Mastodon / Blocks.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\Database\DBA;
26 use Friendica\DI;
27 use Friendica\Module\BaseApi;
28
29 /**
30  * @see https://docs.joinmastodon.org/methods/accounts/blocks/
31  */
32 class Blocks extends BaseApi
33 {
34         /**
35          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
36          */
37         protected function rawContent(array $request = [])
38         {
39                 self::checkAllowedScope(self::SCOPE_READ);
40                 $uid = self::getCurrentUserID();
41
42                 $request = $this->getRequest([
43                         'max_id'   => 0,  // Return results older than this id
44                         'since_id' => 0,  // Return results newer than this id
45                         'min_id'   => 0,  // Return results immediately newer than id
46                         'limit'    => 40, // Maximum number of results. Defaults to 40.
47                 ], $request);
48
49                 $params = ['order' => ['cid' => true], 'limit' => $request['limit']];
50
51                 $condition = ['blocked' => true, 'uid' => $uid];
52
53                 if (!empty($request['max_id'])) {
54                         $condition = DBA::mergeConditions($condition, ["`cid` < ?", $request['max_id']]);
55                 }
56
57                 if (!empty($request['since_id'])) {
58                         $condition = DBA::mergeConditions($condition, ["`cid` > ?", $request['since_id']]);
59                 }
60
61                 if (!empty($request['min_id'])) {
62                         $condition = DBA::mergeConditions($condition, ["`cid` > ?", $request['min_id']]);
63
64                         $params['order'] = ['cid'];
65                 }
66
67                 $followers = DBA::select('user-contact', ['cid'], $condition, $params);
68                 $accounts = [];
69                 while ($follower = DBA::fetch($followers)) {
70                         self::setBoundaries($follower['cid']);
71                         $accounts[] = DI::mstdnAccount()->createFromContactId($follower['cid'], $uid);
72                 }
73                 DBA::close($followers);
74
75                 if (!empty($request['min_id'])) {
76                         $accounts = array_reverse($accounts);
77                 }
78
79                 self::setLinkHeader();
80                 System::jsonExit($accounts);
81         }
82 }