2022-02-27 04:07:39 +02:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { NoteReactions, UserProfiles } from '@/models/index.js';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query.js';
|
|
|
|
import { generateVisibilityQuery } from '../../common/generate-visibility-query.js';
|
|
|
|
import { ApiError } from '../../error.js';
|
2021-10-16 19:33:15 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['users', 'reactions'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: false,
|
2021-10-16 19:33:15 +03:00
|
|
|
|
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-10-16 19:33:15 +03:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-10-16 19:33:15 +03:00
|
|
|
ref: 'NoteReaction',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2021-10-16 19:33:15 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
2021-10-17 19:16:59 +03:00
|
|
|
reactionsNotPublic: {
|
|
|
|
message: 'Reactions of the user is not public.',
|
|
|
|
code: 'REACTIONS_NOT_PUBLIC',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '673a7dd2-6924-1093-e0c0-e68456ceae5c',
|
2021-10-17 19:16:59 +03:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2021-10-16 19:33:15 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
|
|
sinceDate: { type: 'integer' },
|
|
|
|
untilDate: { type: 'integer' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2021-10-17 19:16:59 +03:00
|
|
|
const profile = await UserProfiles.findOneOrFail(ps.userId);
|
|
|
|
|
|
|
|
if (me == null || (me.id !== ps.userId && !profile.publicReactions)) {
|
|
|
|
throw new ApiError(meta.errors.reactionsNotPublic);
|
|
|
|
}
|
|
|
|
|
2021-10-16 19:33:15 +03:00
|
|
|
const query = makePaginationQuery(NoteReactions.createQueryBuilder('reaction'),
|
|
|
|
ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate)
|
|
|
|
.andWhere(`reaction.userId = :userId`, { userId: ps.userId })
|
|
|
|
.leftJoinAndSelect('reaction.note', 'note');
|
|
|
|
|
|
|
|
generateVisibilityQuery(query, me);
|
|
|
|
|
|
|
|
const reactions = await query
|
2022-02-19 07:05:32 +02:00
|
|
|
.take(ps.limit)
|
2021-10-16 19:33:15 +03:00
|
|
|
.getMany();
|
|
|
|
|
|
|
|
return await Promise.all(reactions.map(reaction => NoteReactions.pack(reaction, me, { withNote: true })));
|
|
|
|
});
|