2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2023-09-15 07:28:29 +02:00
|
|
|
import type { ModerationLogsRepository } from '@/models/_.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { QueryService } from '@/core/QueryService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-24 03:43:23 +02:00
|
|
|
import { ModerationLogEntityService } from '@/core/entities/ModerationLogEntityService.js';
|
2019-07-13 20:18:45 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2019-07-13 20:18:45 +02:00
|
|
|
requireModerator: true,
|
|
|
|
|
2021-03-06 14:34:11 +01:00
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
items: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
properties: {
|
|
|
|
id: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 15:58:30 +01:00
|
|
|
format: 'id',
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
createdAt: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 15:58:30 +01:00
|
|
|
format: 'date-time',
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
type: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
info: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
userId: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 15:58:30 +01:00
|
|
|
format: 'id',
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
user: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'UserDetailed',
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2019-07-13 20:18:45 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01: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' },
|
2023-09-23 11:28:16 +02:00
|
|
|
type: { type: 'string', nullable: true },
|
|
|
|
userId: { type: 'string', format: 'misskey:id', nullable: true },
|
2022-02-19 06:05:32 +01:00
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
2023-08-17 14:20:58 +02:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.moderationLogsRepository)
|
|
|
|
private moderationLogsRepository: ModerationLogsRepository,
|
2019-07-13 20:18:45 +02:00
|
|
|
|
2022-09-24 03:43:23 +02:00
|
|
|
private moderationLogEntityService: ModerationLogEntityService,
|
2022-09-17 20:27:08 +02:00
|
|
|
private queryService: QueryService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const query = this.queryService.makePaginationQuery(this.moderationLogsRepository.createQueryBuilder('report'), ps.sinceId, ps.untilId);
|
2019-07-13 20:18:45 +02:00
|
|
|
|
2023-09-23 11:28:16 +02:00
|
|
|
if (ps.type != null) {
|
|
|
|
query.andWhere('report.type = :type', { type: ps.type });
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.userId != null) {
|
|
|
|
query.andWhere('report.userId = :userId', { userId: ps.userId });
|
|
|
|
}
|
|
|
|
|
2023-07-08 09:53:07 +02:00
|
|
|
const reports = await query.limit(ps.limit).getMany();
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
return await this.moderationLogEntityService.packMany(reports);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|