2021-08-19 15:55:45 +03:00
|
|
|
import define from '../../../define';
|
|
|
|
import { GalleryPosts } from '@/models/index';
|
|
|
|
import { makePaginationQuery } from '../../../common/make-pagination-query';
|
2021-04-24 16:38:24 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['account', 'gallery'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2021-04-24 16:38:24 +03:00
|
|
|
|
|
|
|
kind: 'read:gallery',
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-04-24 16:38:24 +03:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
ref: 'GalleryPost',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2021-04-24 16:38:24 +03:00
|
|
|
|
2022-02-19 07:05:32 +02:00
|
|
|
const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} 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, user) => {
|
2021-04-24 16:38:24 +03:00
|
|
|
const query = makePaginationQuery(GalleryPosts.createQueryBuilder('post'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`post.userId = :meId`, { meId: user.id });
|
|
|
|
|
|
|
|
const posts = await query
|
2022-02-19 07:05:32 +02:00
|
|
|
.take(ps.limit)
|
2021-04-24 16:38:24 +03:00
|
|
|
.getMany();
|
|
|
|
|
|
|
|
return await GalleryPosts.packMany(posts, user);
|
|
|
|
});
|