Merge pull request #12821 from HankG/notifications-summary

Add Notifications summary poption to Mastodon API Endpoint
This commit is contained in:
Philipp 2023-02-20 18:36:38 +01:00 committed by GitHub
commit 3de3d867a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 22 deletions

View File

@ -63,7 +63,8 @@ class Notifications extends BaseApi
'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
'include_all' => false, // Include dismissed and undismissed
'summary' => false,
], $request);
$params = ['order' => ['id' => true]];
@ -87,8 +88,8 @@ class Notifications extends BaseApi
$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]
Verb::getID(Activity::FOLLOW),
Post\UserNotification::TYPE_NONE]
);
}
@ -96,8 +97,8 @@ class Notifications extends BaseApi
$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]
Verb::getID(Activity::FOLLOW),
Post\UserNotification::TYPE_NONE]
);
}
@ -130,26 +131,31 @@ class Notifications extends BaseApi
Verb::getID(Activity::POST), Post\UserNotification::TYPE_SHARED]);
}
$mstdnNotifications = [];
if ($request['summary']) {
$count = DI::notification()->countForUser($uid, $condition);
System::jsonExit(['count' => $count]);
} else {
$mstdnNotifications = [];
$Notifications = DI::notification()->selectByBoundaries(
$condition,
$params,
$request['min_id'] ?: $request['since_id'],
$request['max_id'],
$request['limit']
);
$Notifications = DI::notification()->selectByBoundaries(
$condition,
$params,
$request['min_id'] ?: $request['since_id'],
$request['max_id'],
$request['limit']
);
foreach ($Notifications as $Notification) {
try {
$mstdnNotifications[] = DI::mstdnNotification()->createFromNotification($Notification, self::appSupportsQuotes());
self::setBoundaries($Notification->id);
} catch (\Exception $e) {
// Skip this notification
foreach ($Notifications as $Notification) {
try {
$mstdnNotifications[] = DI::mstdnNotification()->createFromNotification($Notification, self::appSupportsQuotes());
self::setBoundaries($Notification->id);
} catch (\Exception $e) {
// Skip this notification
}
}
}
self::setLinkHeader();
System::jsonExit($mstdnNotifications);
self::setLinkHeader();
System::jsonExit($mstdnNotifications);
}
}
}