Add notifications summary (count only for now) to Mastodon API
This commit is contained in:
parent
711135a85b
commit
e594bb72dd
|
@ -56,14 +56,15 @@ class Notifications extends BaseApi
|
||||||
}
|
}
|
||||||
|
|
||||||
$request = $this->getRequest([
|
$request = $this->getRequest([
|
||||||
'max_id' => 0, // Return results older than this ID
|
'max_id' => 0, // Return results older than this ID
|
||||||
'since_id' => 0, // Return results newer than this ID
|
'since_id' => 0, // Return results newer than this ID
|
||||||
'min_id' => 0, // Return results immediately newer than this ID
|
'min_id' => 0, // Return results immediately newer than this ID
|
||||||
'limit' => 20, // Maximum number of results to return (default 20)
|
'limit' => 20, // Maximum number of results to return (default 20)
|
||||||
'exclude_types' => [], // Array of types to exclude (follow, favourite, reblog, mention, poll, follow_request)
|
'exclude_types' => [], // Array of types to exclude (follow, favourite, reblog, mention, poll, follow_request)
|
||||||
'account_id' => 0, // Return only notifications received from this account
|
'account_id' => 0, // Return only notifications received from this account
|
||||||
'with_muted' => false, // Pleroma extension: return activities by muted (not by blocked!) users.
|
'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);
|
], $request);
|
||||||
|
|
||||||
$params = ['order' => ['id' => true]];
|
$params = ['order' => ['id' => true]];
|
||||||
|
@ -87,8 +88,8 @@ class Notifications extends BaseApi
|
||||||
$condition = DBA::mergeConditions(
|
$condition = DBA::mergeConditions(
|
||||||
$condition,
|
$condition,
|
||||||
["(`vid` != ? OR `type` != ? OR NOT `actor-id` IN (SELECT `id` FROM `contact` WHERE `pending`))",
|
["(`vid` != ? OR `type` != ? OR NOT `actor-id` IN (SELECT `id` FROM `contact` WHERE `pending`))",
|
||||||
Verb::getID(Activity::FOLLOW),
|
Verb::getID(Activity::FOLLOW),
|
||||||
Post\UserNotification::TYPE_NONE]
|
Post\UserNotification::TYPE_NONE]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,8 +97,8 @@ class Notifications extends BaseApi
|
||||||
$condition = DBA::mergeConditions(
|
$condition = DBA::mergeConditions(
|
||||||
$condition,
|
$condition,
|
||||||
["(`vid` != ? OR `type` != ? OR NOT `actor-id` IN (SELECT `id` FROM `contact` WHERE NOT `pending`))",
|
["(`vid` != ? OR `type` != ? OR NOT `actor-id` IN (SELECT `id` FROM `contact` WHERE NOT `pending`))",
|
||||||
Verb::getID(Activity::FOLLOW),
|
Verb::getID(Activity::FOLLOW),
|
||||||
Post\UserNotification::TYPE_NONE]
|
Post\UserNotification::TYPE_NONE]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -130,26 +131,31 @@ class Notifications extends BaseApi
|
||||||
Verb::getID(Activity::POST), Post\UserNotification::TYPE_SHARED]);
|
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(
|
$Notifications = DI::notification()->selectByBoundaries(
|
||||||
$condition,
|
$condition,
|
||||||
$params,
|
$params,
|
||||||
$request['min_id'] ?: $request['since_id'],
|
$request['min_id'] ?: $request['since_id'],
|
||||||
$request['max_id'],
|
$request['max_id'],
|
||||||
$request['limit']
|
$request['limit']
|
||||||
);
|
);
|
||||||
|
|
||||||
foreach ($Notifications as $Notification) {
|
foreach ($Notifications as $Notification) {
|
||||||
try {
|
try {
|
||||||
$mstdnNotifications[] = DI::mstdnNotification()->createFromNotification($Notification, self::appSupportsQuotes());
|
$mstdnNotifications[] = DI::mstdnNotification()->createFromNotification($Notification, self::appSupportsQuotes());
|
||||||
self::setBoundaries($Notification->id);
|
self::setBoundaries($Notification->id);
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
// Skip this notification
|
// Skip this notification
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
self::setLinkHeader();
|
self::setLinkHeader();
|
||||||
System::jsonExit($mstdnNotifications);
|
System::jsonExit($mstdnNotifications);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue