sharkey/src/server/api/endpoints/notes/reactions.ts

90 lines
1.6 KiB
TypeScript
Raw Normal View History

2018-11-02 03:32:24 +09:00
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
2018-04-08 02:30:37 +09:00
import Note from '../../../../models/note';
import Reaction, { pack } from '../../../../models/note-reaction';
2018-11-02 13:47:44 +09:00
import define from '../../define';
2016-12-29 07:49:51 +09:00
2018-07-17 04:36:44 +09:00
export const meta = {
desc: {
2018-08-29 06:59:43 +09:00
'ja-JP': '指定した投稿のリアクション一覧を取得します。',
'en-US': 'Show reactions of a note.'
2018-07-17 04:36:44 +09:00
},
2018-10-29 10:52:36 +09:00
requireCredential: false,
2018-07-17 04:36:44 +09:00
2018-10-29 10:52:36 +09:00
params: {
2018-11-02 03:32:24 +09:00
noteId: {
validator: $.type(ID),
transform: transform,
2018-10-29 19:04:58 +09:00
desc: {
'ja-JP': '対象の投稿のID',
'en-US': 'The ID of the target note'
}
2018-11-02 03:32:24 +09:00
},
2016-12-29 07:49:51 +09:00
2018-11-02 03:32:24 +09:00
limit: {
validator: $.num.optional.range(1, 100),
2018-10-29 10:52:36 +09:00
default: 10
2018-11-02 03:32:24 +09:00
},
2016-12-29 07:49:51 +09:00
2018-11-02 03:32:24 +09:00
offset: {
validator: $.num.optional,
2018-10-29 10:52:36 +09:00
default: 0
2018-11-02 03:32:24 +09:00
},
2016-12-29 07:49:51 +09:00
2018-11-02 03:32:24 +09:00
sinceId: {
validator: $.type(ID).optional,
transform: transform,
},
2018-10-29 10:52:36 +09:00
2018-11-02 03:32:24 +09:00
untilId: {
validator: $.type(ID).optional,
transform: transform,
},
2018-10-29 10:52:36 +09:00
}
};
2018-11-02 13:47:44 +09:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
2018-10-29 10:52:36 +09:00
// Check if both of sinceId and untilId is specified
if (ps.sinceId && ps.untilId) {
return rej('cannot set sinceId and untilId');
}
2016-12-29 07:49:51 +09:00
2018-04-08 02:30:37 +09:00
// Lookup note
const note = await Note.findOne({
2018-10-29 10:52:36 +09:00
_id: ps.noteId
2016-12-29 07:49:51 +09:00
});
2018-04-08 02:30:37 +09:00
if (note === null) {
return rej('note not found');
2016-12-29 07:49:51 +09:00
}
2018-10-29 10:52:36 +09:00
const query = {
noteId: note._id
} as any;
const sort = {
_id: -1
};
if (ps.sinceId) {
sort._id = 1;
query._id = {
$gt: ps.sinceId
};
} else if (ps.untilId) {
query._id = {
$lt: ps.untilId
};
}
2017-03-20 04:24:19 +09:00
const reactions = await Reaction
2018-10-29 10:52:36 +09:00
.find(query, {
limit: ps.limit,
skip: ps.offset,
sort: sort
2017-01-17 11:11:22 +09:00
});
2016-12-29 07:49:51 +09:00
// Serialize
2018-07-17 04:36:44 +09:00
res(await Promise.all(reactions.map(reaction => pack(reaction, user))));
2018-11-02 13:47:44 +09:00
}));