2023-07-27 00:31:52 -05:00
|
|
|
/*
|
2024-02-13 09:59:27 -06:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 00:31:52 -05:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-03-07 17:56:09 -06:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-09-15 00:28:29 -05:00
|
|
|
import type { RenoteMutingsRepository } from '@/models/_.js';
|
2023-03-07 17:56:09 -06:00
|
|
|
import { awaitAll } from '@/misc/prelude/await-all.js';
|
2023-03-09 23:22:37 -06:00
|
|
|
import type { Packed } from '@/misc/json-schema.js';
|
2023-09-19 21:33:36 -05:00
|
|
|
import type { } from '@/models/Blocking.js';
|
|
|
|
import type { MiUser } from '@/models/User.js';
|
|
|
|
import type { MiRenoteMuting } from '@/models/RenoteMuting.js';
|
2023-03-07 17:56:09 -06:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-10-15 20:45:22 -05:00
|
|
|
import { IdService } from '@/core/IdService.js';
|
2023-03-07 17:56:09 -06:00
|
|
|
import { UserEntityService } from './UserEntityService.js';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class RenoteMutingEntityService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.renoteMutingsRepository)
|
|
|
|
private renoteMutingsRepository: RenoteMutingsRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
2023-10-15 20:45:22 -05:00
|
|
|
private idService: IdService,
|
2023-03-07 17:56:09 -06:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@bindThis
|
|
|
|
public async pack(
|
2023-08-16 03:51:28 -05:00
|
|
|
src: MiRenoteMuting['id'] | MiRenoteMuting,
|
|
|
|
me?: { id: MiUser['id'] } | null | undefined,
|
2024-05-31 01:32:42 -05:00
|
|
|
hints?: {
|
|
|
|
packedMutee?: Packed<'UserDetailedNotMe'>
|
|
|
|
},
|
2023-03-07 17:56:09 -06:00
|
|
|
): Promise<Packed<'RenoteMuting'>> {
|
|
|
|
const muting = typeof src === 'object' ? src : await this.renoteMutingsRepository.findOneByOrFail({ id: src });
|
|
|
|
|
|
|
|
return await awaitAll({
|
|
|
|
id: muting.id,
|
2023-10-15 20:45:22 -05:00
|
|
|
createdAt: this.idService.parse(muting.id).date.toISOString(),
|
2023-03-07 17:56:09 -06:00
|
|
|
muteeId: muting.muteeId,
|
2024-05-31 01:32:42 -05:00
|
|
|
mutee: hints?.packedMutee ?? this.userEntityService.pack(muting.muteeId, me, {
|
2024-01-31 00:45:35 -06:00
|
|
|
schema: 'UserDetailedNotMe',
|
2023-03-07 17:56:09 -06:00
|
|
|
}),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@bindThis
|
2024-05-31 01:32:42 -05:00
|
|
|
public async packMany(
|
|
|
|
mutings: MiRenoteMuting[],
|
2023-08-16 03:51:28 -05:00
|
|
|
me: { id: MiUser['id'] },
|
2023-03-07 17:56:09 -06:00
|
|
|
) {
|
2024-05-31 01:32:42 -05:00
|
|
|
const _users = mutings.map(({ mutee, muteeId }) => mutee ?? muteeId);
|
|
|
|
const _userMap = await this.userEntityService.packMany(_users, me, { schema: 'UserDetailedNotMe' })
|
|
|
|
.then(users => new Map(users.map(u => [u.id, u])));
|
|
|
|
return Promise.all(mutings.map(muting => this.pack(muting, me, { packedMutee: _userMap.get(muting.muteeId) })));
|
2023-03-07 17:56:09 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|