3 * @copyright Copyright (C) 2010-2022, the Friendica project
5 * @license GNU AGPL version 3 or any later version
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.
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.
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/>.
22 namespace Friendica\Module\Api\Twitter\Followers;
24 use Friendica\Core\System;
25 use Friendica\Database\DBA;
26 use Friendica\Module\Api\Twitter\ContactEndpoint;
27 use Friendica\Module\BaseApi;
30 * @see https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-followers-ids
32 class Ids extends ContactEndpoint
34 protected function rawContent(array $request = [])
36 self::checkAllowedScope(self::SCOPE_READ);
37 $uid = BaseApi::getCurrentUserID();
39 // Expected value for user_id parameter: public/user contact id
40 $cid = BaseApi::getContactIDForSearchterm($this->getRequestValue($request, 'screen_name', ''), $this->getRequestValue($request, 'profileurl', ''), $this->getRequestValue($request, 'user_id', 0), $uid);
41 $cursor = $this->getRequestValue($request, 'cursor', -1);
42 $stringify_ids = $this->getRequestValue($request, 'stringify_ids', false);
43 $count = $this->getRequestValue($request, 'count', self::DEFAULT_COUNT, 1, self::MAX_COUNT);
46 $since_id = $this->getRequestValue($request, 'since_id', 0, 0);
47 $max_id = $this->getRequestValue($request, 'max_id', 0, 0);
48 $min_id = $this->getRequestValue($request, 'min_id', 0, 0);
50 $params = ['order' => ['relation-cid' => true], 'limit' => $count];
52 $condition = ['cid' => $cid, 'follows' => true];
54 $total_count = (int)DBA::count('contact-relation', $condition);
56 if (!empty($max_id)) {
57 $condition = DBA::mergeConditions($condition, ["`relation-cid` < ?", $max_id]);
60 if (!empty($since_id)) {
61 $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $since_id]);
64 if (!empty($min_id)) {
65 $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $min_id]);
67 $params['order'] = ['relation-cid'];
72 $followers = DBA::select('contact-relation', ['relation-cid'], $condition, $params);
73 while ($follower = DBA::fetch($followers)) {
74 self::setBoundaries($follower['relation-cid']);
75 $ids[] = $follower['relation-cid'];
77 DBA::close($followers);
79 if (!empty($min_id)) {
80 $ids = array_reverse($ids);
83 $return = self::ids($ids, $total_count, $cursor, $count, $stringify_ids);
85 self::setLinkHeader();
87 System::jsonExit($return);