2018-07-07 12:19:00 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
|
2018-04-07 19:30:37 +02:00
|
|
|
import Note from '../../../../models/note';
|
|
|
|
import Reaction, { pack } from '../../../../models/note-reaction';
|
2018-06-18 02:54:53 +02:00
|
|
|
import { ILocalUser } from '../../../../models/user';
|
2018-10-29 02:52:36 +01:00
|
|
|
import getParams from '../../get-params';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '指定した投稿のリアクション一覧を取得します。',
|
|
|
|
'en-US': 'Show reactions of a note.'
|
2018-07-16 21:36:44 +02:00
|
|
|
},
|
|
|
|
|
2018-10-29 02:52:36 +01:00
|
|
|
requireCredential: false,
|
2018-07-16 21:36:44 +02:00
|
|
|
|
2018-10-29 02:52:36 +01:00
|
|
|
params: {
|
|
|
|
noteId: $.type(ID).note({
|
|
|
|
}),
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-10-29 02:52:36 +01:00
|
|
|
limit: $.num.optional.range(1, 100).note({
|
|
|
|
default: 10
|
|
|
|
}),
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-10-29 02:52:36 +01:00
|
|
|
offset: $.num.optional.note({
|
|
|
|
default: 0
|
|
|
|
}),
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-10-29 02:52:36 +01:00
|
|
|
sinceId: $.type(ID).optional.note({
|
|
|
|
}),
|
|
|
|
|
|
|
|
untilId: $.type(ID).optional.note({
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
|
|
|
const [ps, psErr] = getParams(meta, params);
|
|
|
|
if (psErr) return rej(psErr);
|
|
|
|
|
|
|
|
// Check if both of sinceId and untilId is specified
|
|
|
|
if (ps.sinceId && ps.untilId) {
|
|
|
|
return rej('cannot set sinceId and untilId');
|
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
// Lookup note
|
|
|
|
const note = await Note.findOne({
|
2018-10-29 02:52:36 +01:00
|
|
|
_id: ps.noteId
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2018-10-29 02:52:36 +01: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-19 20:24:19 +01:00
|
|
|
const reactions = await Reaction
|
2018-10-29 02:52:36 +01:00
|
|
|
.find(query, {
|
|
|
|
limit: ps.limit,
|
|
|
|
skip: ps.offset,
|
|
|
|
sort: sort
|
2017-01-17 03:11:22 +01:00
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Serialize
|
2018-07-16 21:36:44 +02:00
|
|
|
res(await Promise.all(reactions.map(reaction => pack(reaction, user))));
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|