2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2018-04-07 19:30:37 +02:00
|
|
|
import Reaction, { pack } from '../../../../models/note-reaction';
|
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';
|
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: {
|
2018-11-01 19:32:24 +01:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-10-29 11:04:58 +01:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'The ID of the target note'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
limit: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-10-29 02:52:36 +01:00
|
|
|
default: 10
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
offset: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num,
|
2018-10-29 02:52:36 +01:00
|
|
|
default: 0
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
sinceId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
transform: transform,
|
|
|
|
},
|
2018-10-29 02:52:36 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
untilId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
transform: transform,
|
|
|
|
},
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
2018-10-29 02:52:36 +01:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
|
|
|
id: '263fff3d-d0e1-4af4-bea7-8408059b451a'
|
|
|
|
}
|
2018-10-29 02:52:36 +01:00
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
};
|
2016-12-28 23:49:51 +01: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;
|
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
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
const reactions = await Reaction.find(query, {
|
|
|
|
limit: ps.limit,
|
|
|
|
skip: ps.offset,
|
|
|
|
sort: sort
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
return await Promise.all(reactions.map(reaction => pack(reaction, user)));
|
|
|
|
});
|