2017-10-30 14:12:10 +01:00
|
|
|
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';
|
2017-10-30 14:12:10 +01:00
|
|
|
|
|
|
|
/**
|
2018-07-20 07:16:02 +02:00
|
|
|
* Mark notifications as read
|
2017-10-30 14:12:10 +01:00
|
|
|
*/
|
|
|
|
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)
|
2017-10-30 14:12:10 +01:00
|
|
|
? user
|
|
|
|
: new mongo.ObjectID(user);
|
|
|
|
|
|
|
|
const ids: mongo.ObjectID[] = Array.isArray(message)
|
2018-10-16 04:38:09 +02:00
|
|
|
? isObjectId(message[0])
|
2017-10-30 14:12:10 +01:00
|
|
|
? (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)
|
2017-10-30 14:12:10 +01:00
|
|
|
? [(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);
|
|
|
|
|
2017-10-30 14:12:10 +01:00
|
|
|
// Update documents
|
|
|
|
await Notification.update({
|
|
|
|
_id: { $in: ids },
|
2018-03-29 07:48:47 +02:00
|
|
|
isRead: false
|
2017-10-30 14:12:10 +01:00
|
|
|
}, {
|
2018-07-20 07:16:02 +02:00
|
|
|
$set: {
|
|
|
|
isRead: true
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
multi: true
|
|
|
|
});
|
2017-10-30 14:12:10 +01:00
|
|
|
|
|
|
|
// 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
|
|
|
}, {
|
2018-07-20 07:16:02 +02:00
|
|
|
limit: 1
|
|
|
|
});
|
2017-10-30 14:12:10 +01:00
|
|
|
|
|
|
|
if (count == 0) {
|
2018-05-28 18:22:39 +02:00
|
|
|
// Update flag
|
|
|
|
User.update({ _id: userId }, {
|
|
|
|
$set: {
|
|
|
|
hasUnreadNotification: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-10-30 14:12:10 +01:00
|
|
|
// 全ての(いままで未読だった)通知を(これで)読みましたよというイベントを発行
|
2018-10-07 04:06:17 +02:00
|
|
|
publishMainStream(userId, 'readAllNotifications');
|
2017-10-30 14:12:10 +01:00
|
|
|
}
|
|
|
|
});
|