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

94 lines
1.8 KiB
TypeScript
Raw Normal View History

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