2018-03-29 11:32:18 +00:00
|
|
|
import Notification from '../../../../models/notification';
|
2018-07-07 10:19:00 +00:00
|
|
|
import event from '../../../../stream';
|
2018-06-18 00:54:53 +00:00
|
|
|
import User, { ILocalUser } from '../../../../models/user';
|
2017-10-30 13:12:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark as read all notifications
|
|
|
|
*/
|
2018-07-05 17:58:29 +00:00
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2017-10-30 13:12:10 +00:00
|
|
|
// Update documents
|
|
|
|
await Notification.update({
|
2018-03-29 05:48:47 +00:00
|
|
|
notifieeId: user._id,
|
|
|
|
isRead: false
|
2017-10-30 13:12:10 +00:00
|
|
|
}, {
|
|
|
|
$set: {
|
2018-03-29 05:48:47 +00:00
|
|
|
isRead: true
|
2017-10-30 13:12:10 +00:00
|
|
|
}
|
|
|
|
}, {
|
|
|
|
multi: true
|
|
|
|
});
|
|
|
|
|
|
|
|
// Response
|
|
|
|
res();
|
|
|
|
|
2018-05-28 16:22:39 +00:00
|
|
|
// Update flag
|
|
|
|
User.update({ _id: user._id }, {
|
|
|
|
$set: {
|
|
|
|
hasUnreadNotification: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-10-30 13:12:10 +00:00
|
|
|
// 全ての通知を読みましたよというイベントを発行
|
|
|
|
event(user._id, 'read_all_notifications');
|
|
|
|
});
|