2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
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';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { Notes } from '../../../../models';
|
2018-10-21 22:16:27 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
stability: 'stable',
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した投稿を取得します。',
|
|
|
|
'en-US': 'Get a note.'
|
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2018-10-21 22:16:27 +02:00
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
2018-10-21 22:16:27 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'Target note ID.'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
res: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
ref: 'Note',
|
2019-02-23 03:20:58 +01:00
|
|
|
},
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
|
|
|
id: '24fcbfc6-2e37-42b6-8388-c29b3861a08d'
|
|
|
|
}
|
2018-10-21 22:16:27 +02:00
|
|
|
}
|
|
|
|
};
|
2018-04-07 19:30:37 +02: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-04-07 19:30:37 +02:00
|
|
|
});
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Notes.pack(note, user, {
|
2018-04-07 19:30:37 +02:00
|
|
|
detail: true
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|
|
|
|
});
|