mizzkey/src/server/api/endpoints/notifications/mark_all_as_read.ts

45 lines
900 B
TypeScript
Raw Normal View History

2018-03-29 13:32:18 +02:00
import Notification from '../../../../models/notification';
2018-07-30 00:20:27 +02:00
import { publishUserStream } from '../../../../stream';
2018-06-18 02:54:53 +02:00
import User, { ILocalUser } from '../../../../models/user';
2018-07-16 21:36:44 +02:00
export const meta = {
desc: {
ja: '全ての通知を既読にします。',
en: 'Mark all notifications as read.'
2018-07-16 21:36:44 +02:00
},
requireCredential: true,
kind: 'notification-write'
};
/**
* Mark all notifications as read
*/
2018-07-05 19:58:29 +02:00
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
// Update documents
await Notification.update({
2018-03-29 07:48:47 +02:00
notifieeId: user._id,
isRead: false
}, {
$set: {
isRead: true
}
}, {
multi: true
});
// Response
res();
2018-05-28 18:22:39 +02:00
// Update flag
User.update({ _id: user._id }, {
$set: {
hasUnreadNotification: false
}
});
// 全ての通知を読みましたよというイベントを発行
2018-07-30 00:20:27 +02:00
publishUserStream(user._id, 'read_all_notifications');
});