egirlskey/src/server/api/common/notify.ts

51 lines
1.4 KiB
TypeScript
Raw Normal View History

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