Sharkey/src/server/api/endpoints/notes/replies.ts

46 lines
879 B
TypeScript
Raw Normal View History

2018-11-01 20:32:24 +02:00
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
import Note, { packMany } from '../../../../models/note';
2018-11-02 06:47:44 +02:00
import define from '../../define';
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
export const meta = {
desc: {
'ja-JP': '指定した投稿への返信を取得します。',
'en-US': 'Get replies of a note.'
},
requireCredential: false,
params: {
noteId: {
validator: $.type(ID),
transform: transform,
2018-11-03 15:49:36 +02:00
desc: {
'ja-JP': '対象の投稿のID',
'en-US': 'Target note ID'
}
2018-11-01 20:32:24 +02:00
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
limit: {
validator: $.num.optional.range(1, 100),
default: 10
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
offset: {
validator: $.num.optional.min(0),
default: 0
},
}
};
2018-11-02 06:47:44 +02:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
2016-12-29 00:49:51 +02:00
2018-11-23 16:12:28 +02:00
const notes = await Note.find({
replyId: ps.noteId
}, {
limit: ps.limit,
skip: ps.offset
});
2016-12-29 00:49:51 +02:00
2018-11-23 16:12:28 +02:00
res(await packMany(notes, user));
2018-11-02 06:47:44 +02:00
}));