2019-04-29 03:11:57 +03:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { Pages } from '@/models/index';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
2019-04-29 03:11:57 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['account', 'pages'],
|
|
|
|
|
2020-02-15 14:33:32 +02:00
|
|
|
requireCredential: true as const,
|
2019-04-29 03:11:57 +03:00
|
|
|
|
|
|
|
kind: 'read:pages',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 16:58:30 +02:00
|
|
|
default: 10,
|
2019-04-29 03:11:57 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
|
|
|
validator: $.optional.type(ID),
|
|
|
|
},
|
|
|
|
|
|
|
|
untilId: {
|
|
|
|
validator: $.optional.type(ID),
|
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
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,
|
2021-12-09 16:58:30 +02:00
|
|
|
ref: 'Page',
|
|
|
|
},
|
|
|
|
},
|
2019-04-29 03:11:57 +03:00
|
|
|
};
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-04-29 03:11:57 +03:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const query = makePaginationQuery(Pages.createQueryBuilder('page'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`page.userId = :meId`, { meId: user.id });
|
|
|
|
|
|
|
|
const pages = await query
|
|
|
|
.take(ps.limit!)
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
return await Pages.packMany(pages);
|
|
|
|
});
|