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 { DI } from '@/di-symbols.js';
|
2023-09-15 07:28:29 +02:00
|
|
|
import type { ModerationLogsRepository } from '@/models/_.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { awaitAll } from '@/misc/prelude/await-all.js';
|
2023-09-20 04:33:36 +02:00
|
|
|
import type { } from '@/models/Blocking.js';
|
|
|
|
import type { MiModerationLog } from '@/models/ModerationLog.js';
|
2022-12-04 07:03:09 +01:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-10-16 03:45:22 +02:00
|
|
|
import { IdService } from '@/core/IdService.js';
|
2023-07-19 04:27:50 +02:00
|
|
|
import { UserEntityService } from './UserEntityService.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ModerationLogEntityService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.moderationLogsRepository)
|
|
|
|
private moderationLogsRepository: ModerationLogsRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
2023-10-16 03:45:22 +02:00
|
|
|
private idService: IdService,
|
2022-09-17 20:27:08 +02:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 07:03:09 +01:00
|
|
|
@bindThis
|
2022-09-17 20:27:08 +02:00
|
|
|
public async pack(
|
2023-08-16 10:51:28 +02:00
|
|
|
src: MiModerationLog['id'] | MiModerationLog,
|
2022-09-17 20:27:08 +02:00
|
|
|
) {
|
|
|
|
const log = typeof src === 'object' ? src : await this.moderationLogsRepository.findOneByOrFail({ id: src });
|
|
|
|
|
|
|
|
return await awaitAll({
|
|
|
|
id: log.id,
|
2023-10-16 03:45:22 +02:00
|
|
|
createdAt: this.idService.parse(log.id).date.toISOString(),
|
2022-09-17 20:27:08 +02:00
|
|
|
type: log.type,
|
|
|
|
info: log.info,
|
|
|
|
userId: log.userId,
|
|
|
|
user: this.userEntityService.pack(log.user ?? log.userId, null, {
|
2024-01-31 07:45:35 +01:00
|
|
|
schema: 'UserDetailedNotMe',
|
2022-09-17 20:27:08 +02:00
|
|
|
}),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-12-04 07:03:09 +01:00
|
|
|
@bindThis
|
2022-09-17 20:27:08 +02:00
|
|
|
public packMany(
|
|
|
|
reports: any[],
|
|
|
|
) {
|
|
|
|
return Promise.all(reports.map(x => this.pack(x)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|