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