1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-01 23:55:58 +09:00
cherrypick/src/publishers/notify.ts

63 lines
1.6 KiB
TypeScript
Raw Normal View History

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