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