2019-02-05 11:48:08 +09:00
|
|
|
import $ from 'cafy';
|
2019-04-07 21:50:36 +09:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2018-11-02 13:47:44 +09:00
|
|
|
import define from '../../define';
|
2019-02-22 14:02:56 +09:00
|
|
|
import { getNote } from '../../common/getters';
|
2019-02-22 11:46:58 +09:00
|
|
|
import { ApiError } from '../../error';
|
2019-04-07 21:50:36 +09:00
|
|
|
import { NoteReactions } from '../../../../models';
|
2019-09-03 07:25:02 +09:00
|
|
|
import { DeepPartial } from 'typeorm';
|
|
|
|
import { NoteReaction } from '../../../../models/entities/note-reaction';
|
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
|
|
|
},
|
|
|
|
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['notes', 'reactions'],
|
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: false as const,
|
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),
|
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
|
|
|
|
2019-09-03 07:25:02 +09:00
|
|
|
type: {
|
|
|
|
validator: $.optional.nullable.str,
|
|
|
|
},
|
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
limit: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.num.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: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.num,
|
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: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2018-10-29 10:52:36 +09:00
|
|
|
|
2018-11-02 03:32:24 +09:00
|
|
|
untilId: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-02 03:32:24 +09:00
|
|
|
},
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
2018-10-29 10:52:36 +09:00
|
|
|
|
2019-02-27 05:08:42 +09:00
|
|
|
res: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-27 05:08:42 +09:00
|
|
|
items: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 22:35:26 +09:00
|
|
|
ref: 'NoteReaction',
|
2019-02-27 05:08:42 +09:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
|
|
|
id: '263fff3d-d0e1-4af4-bea7-8408059b451a'
|
|
|
|
}
|
2018-10-29 10:52:36 +09:00
|
|
|
}
|
2019-02-22 11:46:58 +09:00
|
|
|
};
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-02-22 14:02:56 +09:00
|
|
|
const note = await getNote(ps.noteId).catch(e => {
|
2019-02-22 11:46:58 +09:00
|
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw e;
|
2016-12-29 07:49:51 +09:00
|
|
|
});
|
|
|
|
|
2018-10-29 10:52:36 +09:00
|
|
|
const query = {
|
2019-04-07 21:50:36 +09:00
|
|
|
noteId: note.id
|
2019-09-03 07:25:02 +09:00
|
|
|
} as DeepPartial<NoteReaction>;
|
|
|
|
|
|
|
|
if (ps.type) {
|
2020-04-18 12:06:44 +09:00
|
|
|
// ローカルリアクションはホスト名が . とされているが
|
|
|
|
// DB 上ではそうではないので、必要に応じて変換
|
|
|
|
const suffix = '@.:';
|
|
|
|
const type = ps.type.endsWith(suffix) ? ps.type.slice(0, ps.type.length - suffix.length) + ':' : ps.type;
|
|
|
|
query.reaction = type;
|
2019-09-03 07:25:02 +09:00
|
|
|
}
|
2018-10-29 10:52:36 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
const reactions = await NoteReactions.find({
|
|
|
|
where: query,
|
2019-04-13 01:43:22 +09:00
|
|
|
take: ps.limit!,
|
2019-02-22 11:46:58 +09:00
|
|
|
skip: ps.offset,
|
2019-04-07 21:50:36 +09:00
|
|
|
order: {
|
|
|
|
id: -1
|
|
|
|
}
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
return await Promise.all(reactions.map(reaction => NoteReactions.pack(reaction, user)));
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|