2018-11-02 05:47:44 +01:00
|
|
|
import User from '../../../../models/user';
|
2018-10-18 23:36:59 +02:00
|
|
|
import { publishMainStream } from '../../../../stream';
|
|
|
|
import NoteUnread from '../../../../models/note-unread';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2018-10-18 23:36:59 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-10-20 08:46:01 +02:00
|
|
|
'ja-JP': '未読の投稿をすべて既読にします。',
|
|
|
|
'en-US': 'Mark all messages as read.'
|
2018-10-18 23:36:59 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
kind: 'account-write',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
2018-10-18 23:36:59 +02:00
|
|
|
// Remove documents
|
|
|
|
await NoteUnread.remove({
|
|
|
|
userId: user._id
|
|
|
|
});
|
|
|
|
|
|
|
|
User.update({ _id: user._id }, {
|
|
|
|
$set: {
|
|
|
|
hasUnreadMentions: false,
|
|
|
|
hasUnreadSpecifiedNotes: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// 全て既読になったイベントを発行
|
|
|
|
publishMainStream(user._id, 'readAllUnreadMentions');
|
|
|
|
publishMainStream(user._id, 'readAllUnreadSpecifiedNotes');
|
|
|
|
|
|
|
|
res();
|
2018-11-02 05:47:44 +01:00
|
|
|
}));
|