mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-24 19:48:08 +09:00
9bd3c82e6c
* fix: limit multiple notification read * fix * fix
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import { publishMainStream } from '@/services/stream.js';
|
|
import { pushNotification } from '@/services/push-notification.js';
|
|
import { User } from '@/models/entities/user.js';
|
|
import { Notification } from '@/models/entities/notification.js';
|
|
import { Notifications, Users } from '@/models/index.js';
|
|
import { In } from 'typeorm';
|
|
|
|
export async function readNotification(
|
|
userId: User['id'],
|
|
notificationIds: Notification['id'][]
|
|
) {
|
|
if (notificationIds.length === 0) return;
|
|
|
|
// Update documents
|
|
await Notifications.update({
|
|
id: In(notificationIds),
|
|
isRead: false,
|
|
}, {
|
|
isRead: true,
|
|
});
|
|
|
|
if (!await Users.getHasUnreadNotification(userId)) return postReadAllNotifications(userId);
|
|
else return postReadNotifications(userId, notificationIds);
|
|
}
|
|
|
|
export async function readNotificationByQuery(
|
|
userId: User['id'],
|
|
query: Record<string, any>
|
|
) {
|
|
const notificationIds = await Notifications.find({
|
|
...query,
|
|
notifieeId: userId,
|
|
isRead: false,
|
|
}).then(notifications => notifications.map(notification => notification.id));
|
|
|
|
return readNotification(userId, notificationIds);
|
|
}
|
|
|
|
function postReadAllNotifications(userId: User['id']) {
|
|
publishMainStream(userId, 'readAllNotifications');
|
|
return pushNotification(userId, 'readAllNotifications', undefined);
|
|
}
|
|
|
|
function postReadNotifications(userId: User['id'], notificationIds: Notification['id'][]) {
|
|
publishMainStream(userId, 'readNotifications', notificationIds);
|
|
return pushNotification(userId, 'readNotifications', { notificationIds });
|
|
}
|