summaryrefslogtreecommitdiff
path: root/src/server/api/common/read-notification.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-11-12 02:02:25 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-11-12 02:02:25 +0900
commit0e4a111f81cceed275d9bec2695f6e401fb654d8 (patch)
tree40874799472fa07416f17b50a398ac33b7771905 /src/server/api/common/read-notification.ts
parentupdate deps (diff)
downloadsharkey-0e4a111f81cceed275d9bec2695f6e401fb654d8.tar.gz
sharkey-0e4a111f81cceed275d9bec2695f6e401fb654d8.tar.bz2
sharkey-0e4a111f81cceed275d9bec2695f6e401fb654d8.zip
refactoring
Resolve #7779
Diffstat (limited to 'src/server/api/common/read-notification.ts')
-rw-r--r--src/server/api/common/read-notification.ts43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/server/api/common/read-notification.ts b/src/server/api/common/read-notification.ts
deleted file mode 100644
index a4406c9eeb..0000000000
--- a/src/server/api/common/read-notification.ts
+++ /dev/null
@@ -1,43 +0,0 @@
-import { publishMainStream } from '@/services/stream';
-import { User } from '@/models/entities/user';
-import { Notification } from '@/models/entities/notification';
-import { Notifications, Users } from '@/models/index';
-import { In } from 'typeorm';
-
-export async function readNotification(
- userId: User['id'],
- notificationIds: Notification['id'][]
-) {
- // Update documents
- await Notifications.update({
- id: In(notificationIds),
- isRead: false
- }, {
- isRead: true
- });
-
- post(userId);
-}
-
-export async function readNotificationByQuery(
- userId: User['id'],
- query: Record<string, any>
-) {
- // Update documents
- await Notifications.update({
- ...query,
- notifieeId: userId,
- isRead: false
- }, {
- isRead: true
- });
-
- post(userId);
-}
-
-async function post(userId: User['id']) {
- if (!await Users.getHasUnreadNotification(userId)) {
- // 全ての(いままで未読だった)通知を(これで)読みましたよというイベントを発行
- publishMainStream(userId, 'readAllNotifications');
- }
-}