mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 11:43:08 +02:00
d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
31 lines
959 B
TypeScript
31 lines
959 B
TypeScript
import define from '../../define.js';
|
|
import { Pages } from '@/models/index.js';
|
|
import { makePaginationQuery } from '../../common/make-pagination-query.js';
|
|
|
|
export const meta = {
|
|
tags: ['users', 'pages'],
|
|
} 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(Pages.createQueryBuilder('page'), ps.sinceId, ps.untilId)
|
|
.andWhere(`page.userId = :userId`, { userId: ps.userId })
|
|
.andWhere('page.visibility = \'public\'');
|
|
|
|
const pages = await query
|
|
.take(ps.limit)
|
|
.getMany();
|
|
|
|
return await Pages.packMany(pages);
|
|
});
|