2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
2021-03-23 09:43:07 +01:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
2018-11-06 06:58:20 +01:00
|
|
|
import define from '../../../define';
|
|
|
|
import watch from '../../../../../services/note/watch';
|
2019-02-22 06:02:56 +01:00
|
|
|
import { getNote } from '../../../common/getters';
|
2019-02-22 03:46:58 +01:00
|
|
|
import { ApiError } from '../../../error';
|
2018-11-06 06:58:20 +01:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2020-02-15 13:33:32 +01:00
|
|
|
requireCredential: true as const,
|
2018-11-06 06:58:20 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
kind: 'write:account',
|
2018-11-06 06:58:20 +01:00
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
|
|
|
id: 'ea0e37a6-90a3-4f58-ba6b-c328ca206fc7'
|
|
|
|
}
|
2018-11-06 06:58:20 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-02-22 06:02:56 +01:00
|
|
|
const note = await getNote(ps.noteId).catch(e => {
|
2019-02-22 03:46:58 +01:00
|
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw e;
|
2018-11-06 06:58:20 +01:00
|
|
|
});
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
await watch(user.id, note);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|