2021-05-09 11:50:05 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2021-05-09 11:50:05 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Module\Api\Mastodon;
|
|
|
|
|
|
|
|
use Friendica\Core\System;
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
use Friendica\DI;
|
|
|
|
use Friendica\Model\Contact;
|
2021-06-01 05:51:03 +00:00
|
|
|
use Friendica\Model\Post;
|
|
|
|
use Friendica\Model\Verb;
|
2021-05-09 11:50:05 +00:00
|
|
|
use Friendica\Module\BaseApi;
|
2021-09-18 04:03:32 +00:00
|
|
|
use Friendica\Navigation\Notifications\Entity;
|
|
|
|
use Friendica\Object\Api\Mastodon\Notification;
|
2021-06-01 05:51:03 +00:00
|
|
|
use Friendica\Protocol\Activity;
|
2021-05-09 11:50:05 +00:00
|
|
|
|
|
|
|
/**
|
2021-05-15 10:08:47 +00:00
|
|
|
* @see https://docs.joinmastodon.org/methods/notifications/
|
2021-05-09 11:50:05 +00:00
|
|
|
*/
|
|
|
|
class Notifications extends BaseApi
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
2021-11-20 14:38:03 +00:00
|
|
|
protected function rawContent(array $request = [])
|
2021-05-09 11:50:05 +00:00
|
|
|
{
|
2021-06-08 12:00:22 +00:00
|
|
|
self::checkAllowedScope(self::SCOPE_READ);
|
2021-05-09 11:50:05 +00:00
|
|
|
$uid = self::getCurrentUserID();
|
|
|
|
|
2021-11-14 22:19:25 +00:00
|
|
|
if (!empty($this->parameters['id'])) {
|
|
|
|
$id = $this->parameters['id'];
|
2021-09-18 04:03:32 +00:00
|
|
|
try {
|
|
|
|
$notification = DI::notification()->selectOneForUser($uid, ['id' => $id]);
|
|
|
|
System::jsonExit(DI::mstdnNotification()->createFromNotification($notification));
|
|
|
|
} catch (\Exception $e) {
|
2021-05-09 11:50:05 +00:00
|
|
|
DI::mstdnError()->RecordNotFound();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-28 12:22:27 +00:00
|
|
|
$request = $this->getRequest([
|
2021-05-18 19:26:46 +00:00
|
|
|
'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
|
2021-05-19 06:18:42 +00:00
|
|
|
'with_muted' => false, // Pleroma extension: return activities by muted (not by blocked!) users.
|
2021-05-18 19:26:46 +00:00
|
|
|
'count' => 0, // Unknown parameter
|
2021-11-27 23:30:41 +00:00
|
|
|
], $request);
|
2021-05-18 19:26:46 +00:00
|
|
|
|
2021-09-18 04:03:32 +00:00
|
|
|
$params = ['order' => ['id' => true]];
|
2021-05-09 11:50:05 +00:00
|
|
|
|
2021-12-28 20:38:18 +00:00
|
|
|
$condition = ['uid' => $uid, 'dismissed' => false];
|
2021-05-09 11:50:05 +00:00
|
|
|
|
2021-05-18 19:26:46 +00:00
|
|
|
if (!empty($request['account_id'])) {
|
|
|
|
$contact = Contact::getById($request['account_id'], ['url']);
|
2021-05-09 11:50:05 +00:00
|
|
|
if (!empty($contact['url'])) {
|
|
|
|
$condition['url'] = $contact['url'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-18 03:15:23 +00:00
|
|
|
if (in_array(Notification::TYPE_INTRODUCTION, $request['exclude_types'])) {
|
2021-06-01 21:13:16 +00:00
|
|
|
$condition = DBA::mergeConditions($condition,
|
2022-09-24 17:56:07 +00:00
|
|
|
["(`vid` != ? OR `type` != ? OR NOT `actor-id` IN (SELECT `id` FROM `contact` WHERE `pending`))",
|
2021-09-18 02:14:32 +00:00
|
|
|
Verb::getID(Activity::FOLLOW), Post\UserNotification::TYPE_NONE]);
|
2021-06-01 21:13:16 +00:00
|
|
|
}
|
|
|
|
|
2021-09-18 03:15:23 +00:00
|
|
|
if (in_array(Notification::TYPE_FOLLOW, $request['exclude_types'])) {
|
2021-06-01 21:13:16 +00:00
|
|
|
$condition = DBA::mergeConditions($condition,
|
2022-09-24 17:56:07 +00:00
|
|
|
["(`vid` != ? OR `type` != ? OR NOT `actor-id` IN (SELECT `id` FROM `contact` WHERE NOT `pending`))",
|
2021-09-18 02:14:32 +00:00
|
|
|
Verb::getID(Activity::FOLLOW), Post\UserNotification::TYPE_NONE]);
|
2021-05-09 11:50:05 +00:00
|
|
|
}
|
|
|
|
|
2021-09-18 03:15:23 +00:00
|
|
|
if (in_array(Notification::TYPE_LIKE, $request['exclude_types'])) {
|
2021-09-18 02:14:32 +00:00
|
|
|
$condition = DBA::mergeConditions($condition, [
|
|
|
|
"(NOT `vid` IN (?, ?) OR NOT `type` IN (?, ?))",
|
2021-06-01 05:51:03 +00:00
|
|
|
Verb::getID(Activity::LIKE), Verb::getID(Activity::DISLIKE),
|
2021-09-18 02:14:32 +00:00
|
|
|
Post\UserNotification::TYPE_DIRECT_COMMENT, Post\UserNotification::TYPE_THREAD_COMMENT
|
|
|
|
]);
|
2021-05-09 11:50:05 +00:00
|
|
|
}
|
|
|
|
|
2021-09-18 03:15:23 +00:00
|
|
|
if (in_array(Notification::TYPE_RESHARE, $request['exclude_types'])) {
|
2021-09-18 02:14:32 +00:00
|
|
|
$condition = DBA::mergeConditions($condition, [
|
|
|
|
"(NOT `vid` IN (?) OR NOT `type` IN (?, ?))",
|
2021-06-01 05:51:03 +00:00
|
|
|
Verb::getID(Activity::ANNOUNCE),
|
2021-09-18 02:14:32 +00:00
|
|
|
Post\UserNotification::TYPE_DIRECT_COMMENT, Post\UserNotification::TYPE_THREAD_COMMENT
|
|
|
|
]);
|
2021-06-01 05:51:03 +00:00
|
|
|
}
|
|
|
|
|
2021-09-18 03:15:23 +00:00
|
|
|
if (in_array(Notification::TYPE_MENTION, $request['exclude_types'])) {
|
2021-09-18 02:14:32 +00:00
|
|
|
$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]);
|
2021-06-01 05:51:03 +00:00
|
|
|
}
|
|
|
|
|
2021-09-18 03:15:23 +00:00
|
|
|
if (in_array(Notification::TYPE_POST, $request['exclude_types'])) {
|
2021-06-01 05:51:03 +00:00
|
|
|
$condition = DBA::mergeConditions($condition, ["(NOT `vid` IN (?) OR NOT `type` IN (?))",
|
2021-09-18 02:14:32 +00:00
|
|
|
Verb::getID(Activity::POST), Post\UserNotification::TYPE_SHARED]);
|
2021-05-09 11:50:05 +00:00
|
|
|
}
|
|
|
|
|
2021-09-18 04:03:32 +00:00
|
|
|
$mstdnNotifications = [];
|
|
|
|
|
|
|
|
$Notifications = DI::notification()->selectByBoundaries(
|
|
|
|
$condition,
|
|
|
|
$params,
|
2021-10-13 01:17:19 +00:00
|
|
|
$request['min_id'] ?: $request['since_id'],
|
|
|
|
$request['max_id'],
|
2021-09-18 04:03:32 +00:00
|
|
|
$request['limit']
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach($Notifications as $Notification) {
|
|
|
|
try {
|
|
|
|
$mstdnNotifications[] = DI::mstdnNotification()->createFromNotification($Notification);
|
|
|
|
self::setBoundaries($Notification->id);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
// Skip this notification
|
2021-06-01 05:51:03 +00:00
|
|
|
}
|
2021-05-09 11:50:05 +00:00
|
|
|
}
|
|
|
|
|
2021-06-16 15:02:33 +00:00
|
|
|
self::setLinkHeader();
|
2021-09-18 04:03:32 +00:00
|
|
|
System::jsonExit($mstdnNotifications);
|
2021-05-09 11:50:05 +00:00
|
|
|
}
|
|
|
|
}
|