2023-07-27 00:31:52 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-09-15 00:28:29 -05:00
|
|
|
import type { ModerationLogsRepository } from '@/models/_.js';
|
2023-09-19 21:33:36 -05:00
|
|
|
import type { MiUser } from '@/models/User.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { IdService } from '@/core/IdService.js';
|
2022-12-04 00:03:09 -06:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-09-23 04:28:16 -05:00
|
|
|
import { ModerationLogPayloads, moderationLogTypes } from '@/types.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ModerationLogService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.moderationLogsRepository)
|
|
|
|
private moderationLogsRepository: ModerationLogsRepository,
|
|
|
|
|
|
|
|
private idService: IdService,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 00:03:09 -06:00
|
|
|
@bindThis
|
2023-09-23 04:28:16 -05:00
|
|
|
public async log<T extends typeof moderationLogTypes[number]>(moderator: { id: MiUser['id'] }, type: T, info?: ModerationLogPayloads[T]) {
|
2022-09-17 13:27:08 -05:00
|
|
|
await this.moderationLogsRepository.insert({
|
2023-10-15 20:45:22 -05:00
|
|
|
id: this.idService.gen(),
|
2022-09-17 13:27:08 -05:00
|
|
|
userId: moderator.id,
|
|
|
|
type: type,
|
2023-09-23 04:28:16 -05:00
|
|
|
info: (info as any) ?? {},
|
2022-09-17 13:27:08 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|