2021-08-19 07:55:45 -05:00
|
|
|
import define from '../../define';
|
|
|
|
import { Pages } from '@/models/index';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
2020-11-28 21:34:39 -06:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['users', 'pages'],
|
2022-02-18 23:05:32 -06:00
|
|
|
} as const;
|
2020-11-28 21:34:39 -06:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06: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' },
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
required: ['userId'],
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2020-11-28 21:34:39 -06:00
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-18 23:05:32 -06:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2020-11-28 21:34:39 -06:00
|
|
|
const query = makePaginationQuery(Pages.createQueryBuilder('page'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`page.userId = :userId`, { userId: ps.userId })
|
|
|
|
.andWhere('page.visibility = \'public\'');
|
|
|
|
|
|
|
|
const pages = await query
|
2022-02-18 23:05:32 -06:00
|
|
|
.take(ps.limit)
|
2020-11-28 21:34:39 -06:00
|
|
|
.getMany();
|
|
|
|
|
|
|
|
return await Pages.packMany(pages);
|
|
|
|
});
|