d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
30 lines
950 B
TypeScript
30 lines
950 B
TypeScript
import define from '../../../define.js';
|
|
import { GalleryPosts } from '@/models/index.js';
|
|
import { makePaginationQuery } from '../../../common/make-pagination-query.js';
|
|
|
|
export const meta = {
|
|
tags: ['users', 'gallery'],
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
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' },
|
|
},
|
|
required: ['userId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, user) => {
|
|
const query = makePaginationQuery(GalleryPosts.createQueryBuilder('post'), ps.sinceId, ps.untilId)
|
|
.andWhere(`post.userId = :userId`, { userId: ps.userId });
|
|
|
|
const posts = await query
|
|
.take(ps.limit)
|
|
.getMany();
|
|
|
|
return await GalleryPosts.packMany(posts, user);
|
|
});
|