2021-04-24 08:38:24 -05:00
|
|
|
import $ from 'cafy';
|
2021-08-19 07:55:45 -05:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { GalleryPosts } from '@/models/index';
|
2021-04-24 08:38:24 -05:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['gallery'],
|
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 08:58:30 -06:00
|
|
|
default: 10,
|
2021-04-24 08:38:24 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
|
|
|
validator: $.optional.type(ID),
|
|
|
|
},
|
|
|
|
|
|
|
|
untilId: {
|
|
|
|
validator: $.optional.type(ID),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
ref: 'GalleryPost',
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2021-04-24 08:38:24 -05:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2021-04-24 08:38:24 -05:00
|
|
|
export default define(meta, async (ps, me) => {
|
|
|
|
const query = makePaginationQuery(GalleryPosts.createQueryBuilder('post'), ps.sinceId, ps.untilId)
|
|
|
|
.innerJoinAndSelect('post.user', 'user');
|
|
|
|
|
|
|
|
const posts = await query.take(ps.limit!).getMany();
|
|
|
|
|
|
|
|
return await GalleryPosts.packMany(posts, me);
|
|
|
|
});
|