9e4d3ebe5f
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update DriveService.ts
34 lines
1 KiB
TypeScript
34 lines
1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { ModerationLogsRepository } from '@/models/_.js';
|
|
import type { MiUser } from '@/models/User.js';
|
|
import { IdService } from '@/core/IdService.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import { ModerationLogPayloads, moderationLogTypes } from '@/types.js';
|
|
|
|
@Injectable()
|
|
export class ModerationLogService {
|
|
constructor(
|
|
@Inject(DI.moderationLogsRepository)
|
|
private moderationLogsRepository: ModerationLogsRepository,
|
|
|
|
private idService: IdService,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public async log<T extends typeof moderationLogTypes[number]>(moderator: { id: MiUser['id'] }, type: T, info?: ModerationLogPayloads[T]) {
|
|
await this.moderationLogsRepository.insert({
|
|
id: this.idService.genId(),
|
|
createdAt: new Date(),
|
|
userId: moderator.id,
|
|
type: type,
|
|
info: (info as any) ?? {},
|
|
});
|
|
}
|
|
}
|