dc8ab01168
* fix(backend): お知らせのページネーションが機能しない #11800 * Update CHANGELOG
66 lines
2 KiB
TypeScript
66 lines
2 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Brackets } from 'typeorm';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { QueryService } from '@/core/QueryService.js';
|
|
import { AnnouncementService } from '@/core/AnnouncementService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { AnnouncementReadsRepository, AnnouncementsRepository } from '@/models/_.js';
|
|
|
|
export const meta = {
|
|
tags: ['meta'],
|
|
|
|
requireCredential: false,
|
|
|
|
res: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'Announcement',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export 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' },
|
|
isActive: { type: 'boolean', default: true },
|
|
},
|
|
required: [],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
@Inject(DI.announcementsRepository)
|
|
private announcementsRepository: AnnouncementsRepository,
|
|
|
|
@Inject(DI.announcementReadsRepository)
|
|
private announcementReadsRepository: AnnouncementReadsRepository,
|
|
|
|
private queryService: QueryService,
|
|
private announcementService: AnnouncementService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const query = this.queryService.makePaginationQuery(this.announcementsRepository.createQueryBuilder('announcement'), ps.sinceId, ps.untilId)
|
|
.andWhere('announcement.isActive = :isActive', { isActive: ps.isActive })
|
|
.andWhere(new Brackets(qb => {
|
|
if (me) qb.orWhere('announcement.userId = :meId', { meId: me.id });
|
|
qb.orWhere('announcement.userId IS NULL');
|
|
}));
|
|
|
|
const announcements = await query.limit(ps.limit).getMany();
|
|
|
|
return this.announcementService.packMany(announcements, me);
|
|
});
|
|
}
|
|
}
|