
* feat: 通報を受けた際にメールまたはWebhookで通知を送出出来るようにする
* モデログに対応&エンドポイントを単一オブジェクトでのサポートに変更(API経由で大量に作るシチュエーションもないと思うので)
* fix spdx
* fix migration
* fix migration
* fix models
* add e2e webhook
* tweak
* fix modlog
* fix bugs
* add tests and fix bugs
* add tests and fix bugs
* add tests
* fix path
* regenerate locale
* 混入除去
* 混入除去
* add abuseReportResolved
* fix pnpm-lock.yaml
* add abuseReportResolved test
* fix bugs
* fix ui
* add tests
* fix CHANGELOG.md
* add tests
* add RoleService.getModeratorIds tests
* WebhookServiceをUserとSystemに分割
* fix CHANGELOG.md
* fix test
* insertOneを使う用に
* fix
* regenerate locales
* revert version
* separate webhook job queue
* fix
* 🎨
* Update QueueProcessorService.ts
---------
Co-authored-by: osamu <46447427+sam-osamu@users.noreply.github.com>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { AbuseUserReportsRepository } from '@/models/_.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { ApiError } from '@/server/api/error.js';
|
|
import { AbuseReportService } from '@/core/AbuseReportService.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
kind: 'write:admin:resolve-abuse-user-report',
|
|
|
|
errors: {
|
|
noSuchAbuseReport: {
|
|
message: 'No such abuse report.',
|
|
code: 'NO_SUCH_ABUSE_REPORT',
|
|
id: 'ac3794dd-2ce4-d878-e546-73c60c06b398',
|
|
kind: 'server',
|
|
httpStatusCode: 404,
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
reportId: { type: 'string', format: 'misskey:id' },
|
|
forward: { type: 'boolean', default: false },
|
|
},
|
|
required: ['reportId'],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
@Inject(DI.abuseUserReportsRepository)
|
|
private abuseUserReportsRepository: AbuseUserReportsRepository,
|
|
private abuseReportService: AbuseReportService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const report = await this.abuseUserReportsRepository.findOneBy({ id: ps.reportId });
|
|
if (!report) {
|
|
throw new ApiError(meta.errors.noSuchAbuseReport);
|
|
}
|
|
|
|
await this.abuseReportService.resolve([{ reportId: report.id, forward: ps.forward }], me);
|
|
});
|
|
}
|
|
}
|