61fae45390
* 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>
128 lines
4.6 KiB
TypeScript
128 lines
4.6 KiB
TypeScript
/*
|
||
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||
* SPDX-License-Identifier: AGPL-3.0-only
|
||
*/
|
||
|
||
import { Inject, Injectable } from '@nestjs/common';
|
||
import { In } from 'typeorm';
|
||
import { DI } from '@/di-symbols.js';
|
||
import { bindThis } from '@/decorators.js';
|
||
import type { AbuseUserReportsRepository, MiAbuseUserReport, MiUser, UsersRepository } from '@/models/_.js';
|
||
import { AbuseReportNotificationService } from '@/core/AbuseReportNotificationService.js';
|
||
import { QueueService } from '@/core/QueueService.js';
|
||
import { InstanceActorService } from '@/core/InstanceActorService.js';
|
||
import { ApRendererService } from '@/core/activitypub/ApRendererService.js';
|
||
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
||
import { IdService } from './IdService.js';
|
||
|
||
@Injectable()
|
||
export class AbuseReportService {
|
||
constructor(
|
||
@Inject(DI.abuseUserReportsRepository)
|
||
private abuseUserReportsRepository: AbuseUserReportsRepository,
|
||
@Inject(DI.usersRepository)
|
||
private usersRepository: UsersRepository,
|
||
private idService: IdService,
|
||
private abuseReportNotificationService: AbuseReportNotificationService,
|
||
private queueService: QueueService,
|
||
private instanceActorService: InstanceActorService,
|
||
private apRendererService: ApRendererService,
|
||
private moderationLogService: ModerationLogService,
|
||
) {
|
||
}
|
||
|
||
/**
|
||
* ユーザからの通報をDBに記録し、その内容を下記の手段で管理者各位に通知する.
|
||
* - 管理者用Redisイベント
|
||
* - EMail(モデレータ権限所有者ユーザ+metaテーブルに設定されているメールアドレス)
|
||
* - SystemWebhook
|
||
*
|
||
* @param params 通報内容. もし複数件の通報に対応した時のために、あらかじめ複数件を処理できる前提で考える
|
||
* @see AbuseReportNotificationService.notify
|
||
*/
|
||
@bindThis
|
||
public async report(params: {
|
||
targetUserId: MiAbuseUserReport['targetUserId'],
|
||
targetUserHost: MiAbuseUserReport['targetUserHost'],
|
||
reporterId: MiAbuseUserReport['reporterId'],
|
||
reporterHost: MiAbuseUserReport['reporterHost'],
|
||
comment: string,
|
||
}[]) {
|
||
const entities = params.map(param => {
|
||
return {
|
||
id: this.idService.gen(),
|
||
targetUserId: param.targetUserId,
|
||
targetUserHost: param.targetUserHost,
|
||
reporterId: param.reporterId,
|
||
reporterHost: param.reporterHost,
|
||
comment: param.comment,
|
||
};
|
||
});
|
||
|
||
const reports = Array.of<MiAbuseUserReport>();
|
||
for (const entity of entities) {
|
||
const report = await this.abuseUserReportsRepository.insertOne(entity);
|
||
reports.push(report);
|
||
}
|
||
|
||
return Promise.all([
|
||
this.abuseReportNotificationService.notifyAdminStream(reports),
|
||
this.abuseReportNotificationService.notifySystemWebhook(reports, 'abuseReport'),
|
||
this.abuseReportNotificationService.notifyMail(reports),
|
||
]);
|
||
}
|
||
|
||
/**
|
||
* 通報を解決し、その内容を下記の手段で管理者各位に通知する.
|
||
* - SystemWebhook
|
||
*
|
||
* @param params 通報内容. もし複数件の通報に対応した時のために、あらかじめ複数件を処理できる前提で考える
|
||
* @param operator 通報を処理したユーザ
|
||
* @see AbuseReportNotificationService.notify
|
||
*/
|
||
@bindThis
|
||
public async resolve(
|
||
params: {
|
||
reportId: string;
|
||
forward: boolean;
|
||
}[],
|
||
operator: MiUser,
|
||
) {
|
||
const paramsMap = new Map(params.map(it => [it.reportId, it]));
|
||
const reports = await this.abuseUserReportsRepository.findBy({
|
||
id: In(params.map(it => it.reportId)),
|
||
});
|
||
|
||
for (const report of reports) {
|
||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
||
const ps = paramsMap.get(report.id)!;
|
||
|
||
await this.abuseUserReportsRepository.update(report.id, {
|
||
resolved: true,
|
||
assigneeId: operator.id,
|
||
forwarded: ps.forward && report.targetUserHost !== null,
|
||
});
|
||
|
||
if (ps.forward && report.targetUserHost != null) {
|
||
const actor = await this.instanceActorService.getInstanceActor();
|
||
const targetUser = await this.usersRepository.findOneByOrFail({ id: report.targetUserId });
|
||
|
||
// eslint-disable-next-line
|
||
const flag = this.apRendererService.renderFlag(actor, targetUser.uri!, report.comment);
|
||
const contextAssignedFlag = this.apRendererService.addContext(flag);
|
||
this.queueService.deliver(actor, contextAssignedFlag, targetUser.inbox, false);
|
||
}
|
||
|
||
this.moderationLogService
|
||
.log(operator, 'resolveAbuseReport', {
|
||
reportId: report.id,
|
||
report: report,
|
||
forwarded: ps.forward && report.targetUserHost !== null,
|
||
})
|
||
.then();
|
||
}
|
||
|
||
return this.abuseUserReportsRepository.findBy({ id: In(reports.map(it => it.id)) })
|
||
.then(reports => this.abuseReportNotificationService.notifySystemWebhook(reports, 'abuseReportResolved'));
|
||
}
|
||
}
|