3 * @copyright Copyright (C) 2010-2023, 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;
26 use Friendica\App\Router;
27 use Friendica\BaseModule;
28 use Friendica\Core\L10n;
29 use Friendica\Core\Logger;
30 use Friendica\Core\System;
31 use Friendica\Database\DBA;
33 use Friendica\Model\Contact;
34 use Friendica\Model\Item;
35 use Friendica\Model\Post;
36 use Friendica\Model\User;
37 use Friendica\Module\Api\ApiResponse;
38 use Friendica\Module\Special\HTTPException as ModuleHTTPException;
39 use Friendica\Network\HTTPException;
40 use Friendica\Object\Api\Mastodon\Status;
41 use Friendica\Object\Api\Mastodon\TimelineOrderByTypes;
42 use Friendica\Security\BasicAuth;
43 use Friendica\Security\OAuth;
44 use Friendica\Util\DateTimeFormat;
45 use Friendica\Util\Profiler;
46 use Psr\Http\Message\ResponseInterface;
47 use Psr\Log\LoggerInterface;
49 class BaseApi extends BaseModule
51 const LOG_PREFIX = 'API {action} - ';
53 const SCOPE_READ = 'read';
54 const SCOPE_WRITE = 'write';
55 const SCOPE_FOLLOW = 'follow';
56 const SCOPE_PUSH = 'push';
61 protected static $boundaries = [];
66 protected static $request = [];
71 /** @var ApiResponse */
74 public function __construct(App $app, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, ApiResponse $response, array $server, array $parameters = [])
76 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
82 * Additionally checks, if the caller is permitted to do this action
86 * @throws HTTPException\ForbiddenException
88 public function run(ModuleHTTPException $httpException, array $request = [], bool $scopecheck = true): ResponseInterface
91 switch ($this->args->getMethod()) {
96 self::checkAllowedScope(self::SCOPE_WRITE);
98 if (!self::getCurrentUserID()) {
99 throw new HTTPException\ForbiddenException($this->t('Permission denied.'));
105 return parent::run($httpException, $request);
109 * Processes data from GET requests and sets paging conditions
111 * @param array $request Custom REQUEST array
112 * @param array $condition Existing conditions to merge
113 * @return array paging data condition parameters data
116 protected function addPagingConditions(array $request, array $condition): array
118 $requested_order = $request['friendica_order'];
119 if ($requested_order == TimelineOrderByTypes::ID) {
120 if (!empty($request['max_id'])) {
121 $condition = DBA::mergeConditions($condition, ["`uri-id` < ?", intval($request['max_id'])]);
124 if (!empty($request['since_id'])) {
125 $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", intval($request['since_id'])]);
128 if (!empty($request['min_id'])) {
129 $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", intval($request['min_id'])]);
132 switch ($requested_order) {
133 case TimelineOrderByTypes::RECEIVED:
134 case TimelineOrderByTypes::CHANGED:
135 case TimelineOrderByTypes::EDITED:
136 case TimelineOrderByTypes::CREATED:
137 case TimelineOrderByTypes::COMMENTED:
138 $order_field = $requested_order;
141 throw new \Exception("Unrecognized request order: $requested_order");
144 if (!empty($request['max_id'])) {
145 $condition = DBA::mergeConditions($condition, ["`$order_field` < ?", DateTimeFormat::convert($request['max_id'], DateTimeFormat::MYSQL)]);
148 if (!empty($request['since_id'])) {
149 $condition = DBA::mergeConditions($condition, ["`$order_field` > ?", DateTimeFormat::convert($request['since_id'], DateTimeFormat::MYSQL)]);
152 if (!empty($request['min_id'])) {
153 $condition = DBA::mergeConditions($condition, ["`$order_field` > ?", DateTimeFormat::convert($request['min_id'], DateTimeFormat::MYSQL)]);
161 * Processes data from GET requests and sets paging conditions
163 * @param array $request Custom REQUEST array
164 * @param array $params Existing $params element to build on
165 * @return array ordering data added to the params blocks that was passed in
168 protected function buildOrderAndLimitParams(array $request, array $params = []): array
170 $requested_order = $request['friendica_order'];
171 switch ($requested_order) {
172 case TimelineOrderByTypes::CHANGED:
173 case TimelineOrderByTypes::CREATED:
174 case TimelineOrderByTypes::COMMENTED:
175 case TimelineOrderByTypes::EDITED:
176 case TimelineOrderByTypes::RECEIVED:
177 $order_field = $requested_order;
179 case TimelineOrderByTypes::ID:
181 $order_field = 'uri-id';
184 if (!empty($request['min_id'])) {
185 $params['order'] = [$order_field];
187 $params['order'] = [$order_field => true];
190 $params['limit'] = $request['limit'];
196 * Update the ID/time boundaries for this result set. Used for building Link Headers
198 * @param Status $status
199 * @param array $post_item
200 * @param string $order
204 protected function updateBoundaries(Status $status, array $post_item, string $order)
208 case TimelineOrderByTypes::CHANGED:
209 if (!empty($status->friendicaExtension()->changedAt())) {
210 self::setBoundaries(new DateTime(DateTimeFormat::utc($status->friendicaExtension()->changedAt(), DateTimeFormat::JSON)));
213 case TimelineOrderByTypes::CREATED:
214 if (!empty($status->createdAt())) {
215 self::setBoundaries(new DateTime(DateTimeFormat::utc($status->createdAt(), DateTimeFormat::JSON)));
218 case TimelineOrderByTypes::COMMENTED:
219 if (!empty($status->friendicaExtension()->commentedAt())) {
220 self::setBoundaries(new DateTime(DateTimeFormat::utc($status->friendicaExtension()->commentedAt(), DateTimeFormat::JSON)));
223 case TimelineOrderByTypes::EDITED:
224 if (!empty($status->editedAt())) {
225 self::setBoundaries(new DateTime(DateTimeFormat::utc($status->editedAt(), DateTimeFormat::JSON)));
228 case TimelineOrderByTypes::RECEIVED:
229 if (!empty($status->friendicaExtension()->receivedAt())) {
230 self::setBoundaries(new DateTime(DateTimeFormat::utc($status->friendicaExtension()->receivedAt(), DateTimeFormat::JSON)));
233 case TimelineOrderByTypes::ID:
235 self::setBoundaries($post_item['uri-id']);
237 } catch (\Exception $e) {
238 Logger::debug('Error processing page boundary calculation, skipping', ['error' => $e]);
243 * Processes data from GET requests and sets defaults
245 * @param array $defaults Associative array of expected request keys and their default typed value. A null
246 * value will remove the request key from the resulting value array.
247 * @param array $request Custom REQUEST array, superglobal instead
248 * @return array request data
251 public function getRequest(array $defaults, array $request): array
253 self::$request = $request;
254 self::$boundaries = [];
256 unset(self::$request['pagename']);
258 return $this->checkDefaults($defaults, $request);
262 * Set boundaries for the "link" header
263 * @param array $boundaries
264 * @param int|\DateTime $id
266 protected static function setBoundaries($id)
268 if (!isset(self::$boundaries['min'])) {
269 self::$boundaries['min'] = $id;
272 if (!isset(self::$boundaries['max'])) {
273 self::$boundaries['max'] = $id;
276 self::$boundaries['min'] = min(self::$boundaries['min'], $id);
277 self::$boundaries['max'] = max(self::$boundaries['max'], $id);
281 * Get the "link" header with "next" and "prev" links
284 protected static function getLinkHeader(bool $asDate = false): string
286 if (empty(self::$boundaries)) {
290 $request = self::$request;
292 unset($request['min_id']);
293 unset($request['max_id']);
294 unset($request['since_id']);
296 $prev_request = $next_request = $request;
299 $max_date = self::$boundaries['max'];
300 $min_date = self::$boundaries['min'];
301 $prev_request['min_id'] = $max_date->format(DateTimeFormat::JSON);
302 $next_request['max_id'] = $min_date->format(DateTimeFormat::JSON);
304 $prev_request['min_id'] = self::$boundaries['max'];
305 $next_request['max_id'] = self::$boundaries['min'];
308 $command = DI::baseUrl() . '/' . DI::args()->getCommand();
310 $prev = $command . '?' . http_build_query($prev_request);
311 $next = $command . '?' . http_build_query($next_request);
313 return 'Link: <' . $next . '>; rel="next", <' . $prev . '>; rel="prev"';
317 * Get the "link" header with "next" and "prev" links for an offset/limit type call
320 protected static function getOffsetAndLimitLinkHeader(int $offset, int $limit): string
322 $request = self::$request;
324 unset($request['offset']);
325 $request['limit'] = $limit;
327 $prev_request = $next_request = $request;
329 $prev_request['offset'] = $offset - $limit;
330 $next_request['offset'] = $offset + $limit;
332 $command = DI::baseUrl() . '/' . DI::args()->getCommand();
334 $prev = $command . '?' . http_build_query($prev_request);
335 $next = $command . '?' . http_build_query($next_request);
337 if ($prev_request['offset'] >= 0) {
338 return 'Link: <' . $next . '>; rel="next", <' . $prev . '>; rel="prev"';
340 return 'Link: <' . $next . '>; rel="next"';
345 * Set the "link" header with "next" and "prev" links
348 protected static function setLinkHeader(bool $asDate = false)
350 $header = self::getLinkHeader($asDate);
351 if (!empty($header)) {
357 * Set the "link" header with "next" and "prev" links
360 protected static function setLinkHeaderByOffsetLimit(int $offset, int $limit)
362 $header = self::getOffsetAndLimitLinkHeader($offset, $limit);
363 if (!empty($header)) {
369 * Check if the app is known to support quoted posts
373 public static function appSupportsQuotes(): bool
375 $token = OAuth::getCurrentApplicationToken();
376 return (!empty($token['name']) && in_array($token['name'], ['Fedilab']));
380 * Get current application token
382 * @return array token
384 public static function getCurrentApplication()
386 $token = OAuth::getCurrentApplicationToken();
389 $token = BasicAuth::getCurrentApplicationToken();
396 * Get current user id, returns 0 if not logged in
398 * @return int User ID
400 public static function getCurrentUserID()
402 $uid = OAuth::getCurrentUserID();
405 $uid = BasicAuth::getCurrentUserID(false);
412 * Check if the provided scope does exist.
413 * halts execution on missing scope or when not logged in.
415 * @param string $scope the requested scope (read, write, follow, push)
417 public static function checkAllowedScope(string $scope)
419 $token = self::getCurrentApplication();
422 Logger::notice('Empty application token');
423 DI::mstdnError()->Forbidden();
426 if (!isset($token[$scope])) {
427 Logger::warning('The requested scope does not exist', ['scope' => $scope, 'application' => $token]);
428 DI::mstdnError()->Forbidden();
431 if (empty($token[$scope])) {
432 Logger::warning('The requested scope is not allowed', ['scope' => $scope, 'application' => $token]);
433 DI::mstdnError()->Forbidden();
437 public static function checkThrottleLimit()
439 $uid = self::getCurrentUserID();
441 // Check for throttling (maximum posts per day, week and month)
442 $throttle_day = DI::config()->get('system', 'throttle_limit_day');
443 if ($throttle_day > 0) {
444 $datefrom = date(DateTimeFormat::MYSQL, time() - 24*60*60);
446 $condition = ["`gravity` = ? AND `uid` = ? AND `wall` AND `received` > ?", Item::GRAVITY_PARENT, $uid, $datefrom];
447 $posts_day = Post::countThread($condition);
449 if ($posts_day > $throttle_day) {
450 Logger::notice('Daily posting limit reached', ['uid' => $uid, 'posts' => $posts_day, 'limit' => $throttle_day]);
451 $error = DI::l10n()->t('Too Many Requests');
452 $error_description = DI::l10n()->tt("Daily posting limit of %d post reached. The post was rejected.", "Daily posting limit of %d posts reached. The post was rejected.", $throttle_day);
453 $errorobj = new \Friendica\Object\Api\Mastodon\Error($error, $error_description);
454 System::jsonError(429, $errorobj->toArray());
458 $throttle_week = DI::config()->get('system', 'throttle_limit_week');
459 if ($throttle_week > 0) {
460 $datefrom = date(DateTimeFormat::MYSQL, time() - 24*60*60*7);
462 $condition = ["`gravity` = ? AND `uid` = ? AND `wall` AND `received` > ?", Item::GRAVITY_PARENT, $uid, $datefrom];
463 $posts_week = Post::countThread($condition);
465 if ($posts_week > $throttle_week) {
466 Logger::notice('Weekly posting limit reached', ['uid' => $uid, 'posts' => $posts_week, 'limit' => $throttle_week]);
467 $error = DI::l10n()->t('Too Many Requests');
468 $error_description = DI::l10n()->tt("Weekly posting limit of %d post reached. The post was rejected.", "Weekly posting limit of %d posts reached. The post was rejected.", $throttle_week);
469 $errorobj = new \Friendica\Object\Api\Mastodon\Error($error, $error_description);
470 System::jsonError(429, $errorobj->toArray());
474 $throttle_month = DI::config()->get('system', 'throttle_limit_month');
475 if ($throttle_month > 0) {
476 $datefrom = date(DateTimeFormat::MYSQL, time() - 24*60*60*30);
478 $condition = ["`gravity` = ? AND `uid` = ? AND `wall` AND `received` > ?", Item::GRAVITY_PARENT, $uid, $datefrom];
479 $posts_month = Post::countThread($condition);
481 if ($posts_month > $throttle_month) {
482 Logger::notice('Monthly posting limit reached', ['uid' => $uid, 'posts' => $posts_month, 'limit' => $throttle_month]);
483 $error = DI::l10n()->t('Too Many Requests');
484 $error_description = DI::l10n()->tt('Monthly posting limit of %d post reached. The post was rejected.', 'Monthly posting limit of %d posts reached. The post was rejected.', $throttle_month);
485 $errorobj = new \Friendica\Object\Api\Mastodon\Error($error, $error_description);
486 System::jsonError(429, $errorobj->toArray());
491 public static function getContactIDForSearchterm(string $screen_name = null, string $profileurl = null, int $cid = null, int $uid)
497 if (!empty($profileurl)) {
498 return Contact::getIdForURL($profileurl);
501 if (empty($cid) && !empty($screen_name)) {
502 if (strpos($screen_name, '@') !== false) {
503 return Contact::getIdForURL($screen_name, 0, false);
506 $user = User::getByNickname($screen_name, ['uid']);
507 if (!empty($user['uid'])) {
508 return Contact::getPublicIdByUserId($user['uid']);
513 return Contact::getPublicIdByUserId($uid);