2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../../misc/cafy-id';
|
2018-11-06 06:58:20 +01:00
|
|
|
import Note from '../../../../../models/note';
|
|
|
|
import define from '../../../define';
|
|
|
|
import watch from '../../../../../services/note/watch';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
stability: 'stable',
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した投稿をウォッチします。',
|
|
|
|
'en-US': 'Watch a note.'
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
kind: 'account-write',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'Target note ID.'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
|
|
|
// Get note
|
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: ps.noteId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
await watch(user._id, note);
|
|
|
|
|
|
|
|
// Send response
|
|
|
|
res();
|
|
|
|
}));
|