2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-09-15 05:28:29 +00:00
|
|
|
import type { MutingsRepository } from '@/models/_.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { awaitAll } from '@/misc/prelude/await-all.js';
|
2023-03-10 05:22:37 +00:00
|
|
|
import type { Packed } from '@/misc/json-schema.js';
|
2023-09-20 02:33:36 +00:00
|
|
|
import type { } from '@/models/Blocking.js';
|
|
|
|
import type { MiUser } from '@/models/User.js';
|
|
|
|
import type { MiMuting } from '@/models/Muting.js';
|
2022-12-04 06:03:09 +00:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-03-10 05:22:37 +00:00
|
|
|
import { UserEntityService } from './UserEntityService.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class MutingEntityService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.mutingsRepository)
|
|
|
|
private mutingsRepository: MutingsRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async pack(
|
2023-08-16 08:51:28 +00:00
|
|
|
src: MiMuting['id'] | MiMuting,
|
|
|
|
me?: { id: MiUser['id'] } | null | undefined,
|
2022-09-17 18:27:08 +00:00
|
|
|
): Promise<Packed<'Muting'>> {
|
|
|
|
const muting = typeof src === 'object' ? src : await this.mutingsRepository.findOneByOrFail({ id: src });
|
|
|
|
|
|
|
|
return await awaitAll({
|
|
|
|
id: muting.id,
|
|
|
|
createdAt: muting.createdAt.toISOString(),
|
|
|
|
expiresAt: muting.expiresAt ? muting.expiresAt.toISOString() : null,
|
|
|
|
muteeId: muting.muteeId,
|
|
|
|
mutee: this.userEntityService.pack(muting.muteeId, me, {
|
|
|
|
detail: true,
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public packMany(
|
|
|
|
mutings: any[],
|
2023-08-16 08:51:28 +00:00
|
|
|
me: { id: MiUser['id'] },
|
2022-09-17 18:27:08 +00:00
|
|
|
) {
|
|
|
|
return Promise.all(mutings.map(x => this.pack(x, me)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|