2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { PagesRepository } from '@/models/index.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { QueryService } from '@/core/QueryService.js';
|
|
|
|
import { PageEntityService } from '@/core/entities/PageEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2019-04-29 03:11:57 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['account', 'pages'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2019-04-29 03:11:57 +03:00
|
|
|
|
|
|
|
kind: 'read:pages',
|
|
|
|
|
2021-03-06 15:34:11 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02: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: 'Page',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2019-04-29 03:11:57 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
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-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.pagesRepository)
|
|
|
|
private pagesRepository: PagesRepository,
|
|
|
|
|
|
|
|
private pageEntityService: PageEntityService,
|
|
|
|
private queryService: QueryService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const query = this.queryService.makePaginationQuery(this.pagesRepository.createQueryBuilder('page'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere('page.userId = :meId', { meId: me.id });
|
|
|
|
|
|
|
|
const pages = await query
|
|
|
|
.take(ps.limit)
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
return await this.pageEntityService.packMany(pages);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|