2016-12-28 23:49:51 +01:00
|
|
|
import * as mongo from 'mongodb';
|
2018-03-29 13:32:18 +02:00
|
|
|
import Notification from '../../../models/notification';
|
|
|
|
import Mute from '../../../models/mute';
|
2016-12-28 23:49:51 +01:00
|
|
|
import event from '../event';
|
2018-03-29 13:32:18 +02:00
|
|
|
import { pack } from '../../../models/notification';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
export default (
|
|
|
|
notifiee: mongo.ObjectID,
|
|
|
|
notifier: mongo.ObjectID,
|
|
|
|
type: string,
|
2017-03-05 04:09:34 +01:00
|
|
|
content?: any
|
2016-12-28 23:49:51 +01:00
|
|
|
) => new Promise<any>(async (resolve, reject) => {
|
|
|
|
if (notifiee.equals(notifier)) {
|
|
|
|
return resolve();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create notification
|
2017-01-17 21:28:12 +01:00
|
|
|
const notification = await Notification.insert(Object.assign({
|
2018-03-29 07:48:47 +02:00
|
|
|
createdAt: new Date(),
|
|
|
|
notifieeId: notifiee,
|
|
|
|
notifierId: notifier,
|
2016-12-28 23:49:51 +01:00
|
|
|
type: type,
|
2018-03-29 07:48:47 +02:00
|
|
|
isRead: false
|
2016-12-28 23:49:51 +01:00
|
|
|
}, content));
|
|
|
|
|
|
|
|
resolve(notification);
|
|
|
|
|
|
|
|
// Publish notification event
|
|
|
|
event(notifiee, 'notification',
|
2018-02-02 00:21:30 +01:00
|
|
|
await pack(notification));
|
2017-11-20 01:09:11 +01:00
|
|
|
|
|
|
|
// 3秒経っても(今回作成した)通知が既読にならなかったら「未読の通知がありますよ」イベントを発行する
|
|
|
|
setTimeout(async () => {
|
2018-03-29 07:48:47 +02:00
|
|
|
const fresh = await Notification.findOne({ _id: notification._id }, { isRead: true });
|
|
|
|
if (!fresh.isRead) {
|
2017-12-21 23:38:57 +01:00
|
|
|
//#region ただしミュートしているユーザーからの通知なら無視
|
|
|
|
const mute = await Mute.find({
|
2018-03-29 07:48:47 +02:00
|
|
|
muterId: notifiee,
|
|
|
|
deletedAt: { $exists: false }
|
2017-12-21 23:38:57 +01:00
|
|
|
});
|
2018-03-29 07:48:47 +02:00
|
|
|
const mutedUserIds = mute.map(m => m.muteeId.toString());
|
2017-12-21 23:43:56 +01:00
|
|
|
if (mutedUserIds.indexOf(notifier.toString()) != -1) {
|
2017-12-21 23:38:57 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
2018-02-02 00:21:30 +01:00
|
|
|
event(notifiee, 'unread_notification', await pack(notification));
|
2017-11-20 01:09:11 +01:00
|
|
|
}
|
|
|
|
}, 3000);
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|