Sharkey/src/server/api/endpoints/notifications/mark_as_read_all.ts
2018-06-18 09:54:53 +09:00

34 lines
695 B
TypeScript

import Notification from '../../../../models/notification';
import event from '../../../../publishers/stream';
import User, { ILocalUser } from '../../../../models/user';
/**
* Mark as read all notifications
*/
module.exports = (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
// Update documents
await Notification.update({
notifieeId: user._id,
isRead: false
}, {
$set: {
isRead: true
}
}, {
multi: true
});
// Response
res();
// Update flag
User.update({ _id: user._id }, {
$set: {
hasUnreadNotification: false
}
});
// 全ての通知を読みましたよというイベントを発行
event(user._id, 'read_all_notifications');
});