2018-07-07 04:19:00 -06:00
|
|
|
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
|
2018-04-07 11:30:37 -06:00
|
|
|
import Note from '../../../../models/note';
|
|
|
|
import Reaction, { pack } from '../../../../models/note-reaction';
|
2018-06-17 18:54:53 -06:00
|
|
|
import { ILocalUser } from '../../../../models/user';
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-07-16 13:36:44 -06:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 15:59:43 -06:00
|
|
|
'ja-JP': '指定した投稿のリアクション一覧を取得します。',
|
|
|
|
'en-US': 'Show reactions of a note.'
|
2018-07-16 13:36:44 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true
|
|
|
|
};
|
|
|
|
|
2018-07-05 11:58:29 -06:00
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2018-04-07 11:30:37 -06:00
|
|
|
// Get 'noteId' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [noteId, noteIdErr] = $.type(ID).get(params.noteId);
|
2018-04-07 11:30:37 -06:00
|
|
|
if (noteIdErr) return rej('invalid noteId param');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
// Get 'limit' parameter
|
2018-07-05 08:36:07 -06:00
|
|
|
const [limit = 10, limitErr] = $.num.optional.range(1, 100).get(params.limit);
|
2017-03-02 14:48:26 -07:00
|
|
|
if (limitErr) return rej('invalid limit param');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
// Get 'offset' parameter
|
2018-07-05 08:36:07 -06:00
|
|
|
const [offset = 0, offsetErr] = $.num.optional.min(0).get(params.offset);
|
2017-03-02 14:48:26 -07:00
|
|
|
if (offsetErr) return rej('invalid offset param');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
// Get 'sort' parameter
|
2018-07-05 08:36:07 -06:00
|
|
|
const [sort = 'desc', sortError] = $.str.optional.or('desc asc').get(params.sort);
|
2017-03-02 14:48:26 -07:00
|
|
|
if (sortError) return rej('invalid sort param');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-04-07 11:30:37 -06:00
|
|
|
// Lookup note
|
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: noteId
|
2016-12-28 15:49:51 -07:00
|
|
|
});
|
|
|
|
|
2018-04-07 11:30:37 -06:00
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
2016-12-28 15:49:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Issue query
|
2017-03-19 13:24:19 -06:00
|
|
|
const reactions = await Reaction
|
2016-12-28 15:49:51 -07:00
|
|
|
.find({
|
2018-04-07 11:30:37 -06:00
|
|
|
noteId: note._id,
|
2018-03-28 23:48:47 -06:00
|
|
|
deletedAt: { $exists: false }
|
2017-01-16 19:11:22 -07:00
|
|
|
}, {
|
2016-12-28 15:49:51 -07:00
|
|
|
limit: limit,
|
|
|
|
skip: offset,
|
|
|
|
sort: {
|
|
|
|
_id: sort == 'asc' ? 1 : -1
|
|
|
|
}
|
2017-01-16 19:11:22 -07:00
|
|
|
});
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
// Serialize
|
2018-07-16 13:36:44 -06:00
|
|
|
res(await Promise.all(reactions.map(reaction => pack(reaction, user))));
|
2016-12-28 15:49:51 -07:00
|
|
|
});
|