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