2021-04-24 13:38:24 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../../define';
|
|
|
|
import { GalleryLikes } from '@/models/index';
|
|
|
|
import { makePaginationQuery } from '../../../common/make-pagination-query';
|
2021-04-24 13:38:24 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['account', 'gallery'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2021-04-24 13:38:24 +00:00
|
|
|
|
|
|
|
kind: 'read:gallery-likes',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 14:58:30 +00:00
|
|
|
default: 10,
|
2021-04-24 13:38:24 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
|
|
|
validator: $.optional.type(ID),
|
|
|
|
},
|
|
|
|
|
|
|
|
untilId: {
|
|
|
|
validator: $.optional.type(ID),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-04-24 13:38:24 +00:00
|
|
|
properties: {
|
|
|
|
id: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
format: 'id',
|
2021-04-24 13:38:24 +00:00
|
|
|
},
|
|
|
|
page: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
ref: 'GalleryPost',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2021-04-24 13:38:24 +00:00
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2021-04-24 13:38:24 +00:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const query = makePaginationQuery(GalleryLikes.createQueryBuilder('like'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`like.userId = :meId`, { meId: user.id })
|
|
|
|
.leftJoinAndSelect('like.post', 'post');
|
|
|
|
|
|
|
|
const likes = await query
|
|
|
|
.take(ps.limit!)
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
return await GalleryLikes.packMany(likes, user);
|
|
|
|
});
|