. * */ namespace Friendica\Module\Api\Mastodon; use Friendica\Core\System; use Friendica\Database\DBA; use Friendica\DI; use Friendica\Model\Contact; use Friendica\Model\Post; use Friendica\Model\Verb; use Friendica\Module\BaseApi; use Friendica\Object\Api\Mastodon\Notification; use Friendica\Protocol\Activity; /** * @see https://docs.joinmastodon.org/methods/notifications/ */ class Notifications extends BaseApi { /** * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ protected function rawContent(array $request = []) { $this->checkAllowedScope(self::SCOPE_READ); $uid = self::getCurrentUserID(); if (!empty($this->parameters['id'])) { $id = $this->parameters['id']; try { $notification = DI::notification()->selectOneForUser($uid, ['id' => $id]); $this->jsonExit(DI::mstdnNotification()->createFromNotification($notification, self::appSupportsQuotes())); } catch (\Exception $e) { $this->logErrorAndJsonExit(404, $this->errorFactory->RecordNotFound()); } } $request = $this->getRequest([ 'max_id' => 0, // Return results older than this ID 'since_id' => 0, // Return results newer than this ID 'min_id' => 0, // Return results immediately newer than this ID 'limit' => 15, // Maximum number of results to return. Defaults to 15 notifications. Max 30 notifications. 'exclude_types' => [], // Array of types to exclude (follow, favourite, reblog, mention, poll, follow_request) 'account_id' => 0, // Return only notifications received from this account 'with_muted' => false, // Pleroma extension: return activities by muted (not by blocked!) users. 'include_all' => false, // Include dismissed and undismissed 'summary' => false, ], $request); $params = ['order' => ['id' => true]]; $condition = ["`uid` = ? AND (NOT `type` IN (?, ?))", $uid, Post\UserNotification::TYPE_ACTIVITY_PARTICIPATION, Post\UserNotification::TYPE_COMMENT_PARTICIPATION]; if (!$request['include_all']) { $condition = DBA::mergeConditions($condition, ['dismissed' => false]); } if (!empty($request['account_id'])) { $contact = Contact::getById($request['account_id'], ['url']); if (!empty($contact['url'])) { $condition['url'] = $contact['url']; } } if (in_array(Notification::TYPE_INTRODUCTION, $request['exclude_types'])) { $condition = DBA::mergeConditions( $condition, ["(`vid` != ? OR `type` != ? OR NOT `actor-id` IN (SELECT `id` FROM `contact` WHERE `pending`))", Verb::getID(Activity::FOLLOW), Post\UserNotification::TYPE_NONE] ); } if (in_array(Notification::TYPE_FOLLOW, $request['exclude_types'])) { $condition = DBA::mergeConditions( $condition, ["(`vid` != ? OR `type` != ? OR NOT `actor-id` IN (SELECT `id` FROM `contact` WHERE NOT `pending`))", Verb::getID(Activity::FOLLOW), Post\UserNotification::TYPE_NONE] ); } if (in_array(Notification::TYPE_LIKE, $request['exclude_types'])) { $condition = DBA::mergeConditions($condition, [ "(NOT `vid` IN (?, ?) OR NOT `type` IN (?, ?))", Verb::getID(Activity::LIKE), Verb::getID(Activity::DISLIKE), Post\UserNotification::TYPE_DIRECT_COMMENT, Post\UserNotification::TYPE_THREAD_COMMENT ]); } if (in_array(Notification::TYPE_RESHARE, $request['exclude_types'])) { $condition = DBA::mergeConditions($condition, [ "(NOT `vid` IN (?) OR NOT `type` IN (?, ?))", Verb::getID(Activity::ANNOUNCE), Post\UserNotification::TYPE_DIRECT_COMMENT, Post\UserNotification::TYPE_THREAD_COMMENT ]); } if (in_array(Notification::TYPE_MENTION, $request['exclude_types'])) { $condition = DBA::mergeConditions($condition, [ "(NOT `vid` IN (?) OR NOT `type` IN (?, ?, ?, ?, ?))", Verb::getID(Activity::POST), Post\UserNotification::TYPE_EXPLICIT_TAGGED, Post\UserNotification::TYPE_IMPLICIT_TAGGED, Post\UserNotification::TYPE_DIRECT_COMMENT, Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT, Post\UserNotification::TYPE_THREAD_COMMENT]); } if (in_array(Notification::TYPE_POST, $request['exclude_types'])) { $condition = DBA::mergeConditions($condition, ["(NOT `vid` IN (?) OR NOT `type` IN (?))", Verb::getID(Activity::POST), Post\UserNotification::TYPE_SHARED]); } if ($request['summary']) { $count = DI::notification()->countForUser($uid, $condition); $this->jsonExit(['count' => $count]); } else { $mstdnNotifications = []; $Notifications = DI::notification()->selectByBoundaries( $condition, $params, $request['min_id'] ?: $request['since_id'], $request['max_id'], min($request['limit'], 30) ); foreach ($Notifications as $Notification) { try { $mstdnNotifications[] = DI::mstdnNotification()->createFromNotification($Notification, self::appSupportsQuotes()); self::setBoundaries($Notification->id); } catch (\Exception $e) { // Skip this notification } } self::setLinkHeader(); $this->jsonExit($mstdnNotifications); } } }