2022-02-26 20:07:39 -06:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { getNote } from '../../common/getters.js';
|
|
|
|
import { ApiError } from '../../error.js';
|
|
|
|
import { NoteReactions } from '@/models/index.js';
|
2019-09-02 17:25:02 -05:00
|
|
|
import { DeepPartial } from 'typeorm';
|
2022-02-26 20:07:39 -06:00
|
|
|
import { NoteReaction } from '@/models/entities/note-reaction.js';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-07-16 14:36:44 -05:00
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['notes', 'reactions'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: false,
|
2018-07-16 14:36:44 -05:00
|
|
|
|
2019-02-26 14:08:42 -06:00
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-26 14:08:42 -06:00
|
|
|
items: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 08:35:26 -05:00
|
|
|
ref: 'NoteReaction',
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2019-02-26 14:08:42 -06:00
|
|
|
},
|
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '263fff3d-d0e1-4af4-bea7-8408059b451a',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
type: { type: 'string', nullable: true },
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
offset: { type: 'integer', default: 0 },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['noteId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-18 23:05:32 -06:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2018-10-28 20:52:36 -05:00
|
|
|
const query = {
|
2022-03-24 23:11:52 -05:00
|
|
|
noteId: ps.noteId,
|
2019-09-02 17:25:02 -05:00
|
|
|
} as DeepPartial<NoteReaction>;
|
|
|
|
|
|
|
|
if (ps.type) {
|
2020-04-17 22:06:44 -05: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-02 17:25:02 -05:00
|
|
|
}
|
2018-10-28 20:52:36 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
const reactions = await NoteReactions.find({
|
|
|
|
where: query,
|
2022-02-18 23:05:32 -06:00
|
|
|
take: ps.limit,
|
2019-02-21 20:46:58 -06:00
|
|
|
skip: ps.offset,
|
2019-04-07 07:50:36 -05:00
|
|
|
order: {
|
2021-12-09 08:58:30 -06:00
|
|
|
id: -1,
|
|
|
|
},
|
2022-02-26 22:59:10 -06:00
|
|
|
relations: ['user', 'user.avatar', 'user.banner', 'note'],
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
return await Promise.all(reactions.map(reaction => NoteReactions.pack(reaction, user)));
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|