2019-02-05 11:48:08 +09:00
|
|
|
import $ from 'cafy';
|
2021-08-19 21:55:45 +09:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { getNote } from '../../common/getters';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { Notes } from '@/models/index';
|
2018-10-22 05:16:27 +09:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: false as const,
|
2018-10-22 05:16:27 +09:00
|
|
|
|
|
|
|
params: {
|
2018-11-02 03:32:24 +09:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
|
|
|
|
2019-02-23 11:20:58 +09:00
|
|
|
res: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 22:35:26 +09:00
|
|
|
ref: 'Note',
|
2019-02-23 11:20:58 +09:00
|
|
|
},
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 23:58:30 +09:00
|
|
|
id: '24fcbfc6-2e37-42b6-8388-c29b3861a08d',
|
|
|
|
},
|
|
|
|
},
|
2018-10-22 05:16:27 +09:00
|
|
|
};
|
2018-04-08 02:30:37 +09:00
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-02-22 14:02:56 +09:00
|
|
|
const note = await getNote(ps.noteId).catch(e => {
|
2019-02-22 11:46:58 +09:00
|
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw e;
|
2018-04-08 02:30:37 +09:00
|
|
|
});
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
return await Notes.pack(note, user, {
|
2021-12-09 23:58:30 +09:00
|
|
|
detail: true,
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|
|
|
|
});
|