iceshrimp-legacy/src/server/api/common/read-notification.ts

73 lines
1.8 KiB
TypeScript
Raw Normal View History

import * as mongo from 'mongodb';
2018-10-16 04:38:09 +02:00
import isObjectId from '../../../misc/is-objectid';
2018-03-29 13:32:18 +02:00
import { default as Notification, INotification } from '../../../models/notification';
2019-02-05 06:14:23 +01:00
import { publishMainStream } from '../../../services/stream';
2018-05-22 04:45:49 +02:00
import Mute from '../../../models/mute';
2018-05-28 18:22:39 +02:00
import User from '../../../models/user';
/**
* Mark notifications as read
*/
export default (
user: string | mongo.ObjectID,
message: string | string[] | INotification | INotification[] | mongo.ObjectID | mongo.ObjectID[]
) => new Promise<any>(async (resolve, reject) => {
2018-10-16 04:38:09 +02:00
const userId = isObjectId(user)
? user
: new mongo.ObjectID(user);
const ids: mongo.ObjectID[] = Array.isArray(message)
2018-10-16 04:38:09 +02:00
? isObjectId(message[0])
? (message as mongo.ObjectID[])
: typeof message[0] === 'string'
? (message as string[]).map(m => new mongo.ObjectID(m))
: (message as INotification[]).map(m => m._id)
2018-10-16 04:38:09 +02:00
: isObjectId(message)
? [(message as mongo.ObjectID)]
: typeof message === 'string'
? [new mongo.ObjectID(message)]
: [(message as INotification)._id];
2018-05-22 04:45:49 +02:00
const mute = await Mute.find({
muterId: userId
});
const mutedUserIds = mute.map(m => m.muteeId);
// Update documents
await Notification.update({
_id: { $in: ids },
2018-03-29 07:48:47 +02:00
isRead: false
}, {
$set: {
isRead: true
}
}, {
multi: true
});
// Calc count of my unread notifications
const count = await Notification
.count({
2018-03-29 07:48:47 +02:00
notifieeId: userId,
2018-05-22 04:45:49 +02:00
notifierId: {
$nin: mutedUserIds
},
2018-03-29 07:48:47 +02:00
isRead: false
2018-05-14 02:24:49 +02:00
}, {
limit: 1
});
if (count == 0) {
2018-05-28 18:22:39 +02:00
// Update flag
User.update({ _id: userId }, {
$set: {
hasUnreadNotification: false
}
});
// 全ての(いままで未読だった)通知を(これで)読みましたよというイベントを発行
publishMainStream(userId, 'readAllNotifications');
}
});