. * */ 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\Protocol\Activity; /** * @see https://docs.joinmastodon.org/methods/notifications/ */ class Notifications extends BaseApi { /** * @param array $parameters * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ public static function rawContent(array $parameters = []) { self::checkAllowedScope(self::SCOPE_READ); $uid = self::getCurrentUserID(); if (!empty($parameters['id'])) { $id = $parameters['id']; if (!DBA::exists('notification', ['id' => $id, 'uid' => $uid])) { DI::mstdnError()->RecordNotFound(); } System::jsonExit(DI::mstdnNotification()->createFromNotificationId($id)); } $request = self::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' => 20, // Maximum number of results to return (default 20) '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. 'count' => 0, // Unknown parameter ]); $params = ['order' => ['id' => true], 'limit' => $request['limit']]; $condition = ['uid' => $uid, 'seen' => false]; if (!empty($request['account_id'])) { $contact = Contact::getById($request['account_id'], ['url']); if (!empty($contact['url'])) { $condition['url'] = $contact['url']; } } if (in_array('follow_request', $request['exclude_types'])) { $condition = DBA::mergeConditions($condition, ["(`vid` != ? OR `type` != ? OR NOT EXISTS (SELECT `id` FROM `contact` WHERE `id` = `actor-id` AND `pending`))", Verb::getID(Activity::FOLLOW), Post\UserNotification::NOTIF_NONE]); } if (in_array('follow', $request['exclude_types'])) { $condition = DBA::mergeConditions($condition, ["(`vid` != ? OR `type` != ? OR NOT EXISTS (SELECT `id` FROM `contact` WHERE `id` = `actor-id` AND NOT `pending`))", Verb::getID(Activity::FOLLOW), Post\UserNotification::NOTIF_NONE]); } if (in_array('favourite', $request['exclude_types'])) { $condition = DBA::mergeConditions($condition, ["(NOT `vid` IN (?, ?) OR NOT `type` IN (?, ?))", Verb::getID(Activity::LIKE), Verb::getID(Activity::DISLIKE), Post\UserNotification::NOTIF_DIRECT_COMMENT, Post\UserNotification::NOTIF_THREAD_COMMENT]); } if (in_array('reblog', $request['exclude_types'])) { $condition = DBA::mergeConditions($condition, ["(NOT `vid` IN (?) OR NOT `type` IN (?, ?))", Verb::getID(Activity::ANNOUNCE), Post\UserNotification::NOTIF_DIRECT_COMMENT, Post\UserNotification::NOTIF_THREAD_COMMENT]); } if (in_array('mention', $request['exclude_types'])) { $condition = DBA::mergeConditions($condition, ["(NOT `vid` IN (?) OR NOT `type` IN (?, ?, ?, ?, ?))", Verb::getID(Activity::POST), Post\UserNotification::NOTIF_EXPLICIT_TAGGED, Post\UserNotification::NOTIF_IMPLICIT_TAGGED, Post\UserNotification::NOTIF_DIRECT_COMMENT, Post\UserNotification::NOTIF_DIRECT_THREAD_COMMENT, Post\UserNotification::NOTIF_THREAD_COMMENT]); } if (in_array('status', $request['exclude_types'])) { $condition = DBA::mergeConditions($condition, ["(NOT `vid` IN (?) OR NOT `type` IN (?))", Verb::getID(Activity::POST), Post\UserNotification::NOTIF_SHARED]); } if (!empty($request['max_id'])) { $condition = DBA::mergeConditions($condition, ["`id` < ?", $request['max_id']]); } if (!empty($request['since_id'])) { $condition = DBA::mergeConditions($condition, ["`id` > ?", $request['since_id']]); } if (!empty($request['min_id'])) { $condition = DBA::mergeConditions($condition, ["`id` > ?", $request['min_id']]); $params['order'] = ['id']; } $notifications = []; $notify = DBA::select('notification', ['id'], $condition, $params); while ($notification = DBA::fetch($notify)) { $entry = DI::mstdnNotification()->createFromNotificationId($notification['id']); if (!empty($entry)) { $notifications[] = $entry; } } if (!empty($request['min_id'])) { array_reverse($notifications); } System::jsonExit($notifications); } }