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