2db5b61616
* refactor(backend): User関連のスキーマ/型の指定を強くする * refactor(backend): `pack()`の引数にスキーマを指定するように * chore: fix ci * fix: 変更漏れ * fix ci --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
55 lines
1.6 KiB
TypeScript
55 lines
1.6 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 { MutingsRepository } from '@/models/_.js';
|
|
import { awaitAll } from '@/misc/prelude/await-all.js';
|
|
import type { Packed } from '@/misc/json-schema.js';
|
|
import type { } from '@/models/Blocking.js';
|
|
import type { MiUser } from '@/models/User.js';
|
|
import type { MiMuting } from '@/models/Muting.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import { IdService } from '@/core/IdService.js';
|
|
import { UserEntityService } from './UserEntityService.js';
|
|
|
|
@Injectable()
|
|
export class MutingEntityService {
|
|
constructor(
|
|
@Inject(DI.mutingsRepository)
|
|
private mutingsRepository: MutingsRepository,
|
|
|
|
private userEntityService: UserEntityService,
|
|
private idService: IdService,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public async pack(
|
|
src: MiMuting['id'] | MiMuting,
|
|
me?: { id: MiUser['id'] } | null | undefined,
|
|
): Promise<Packed<'Muting'>> {
|
|
const muting = typeof src === 'object' ? src : await this.mutingsRepository.findOneByOrFail({ id: src });
|
|
|
|
return await awaitAll({
|
|
id: muting.id,
|
|
createdAt: this.idService.parse(muting.id).date.toISOString(),
|
|
expiresAt: muting.expiresAt ? muting.expiresAt.toISOString() : null,
|
|
muteeId: muting.muteeId,
|
|
mutee: this.userEntityService.pack(muting.muteeId, me, {
|
|
schema: 'UserDetailedNotMe',
|
|
}),
|
|
});
|
|
}
|
|
|
|
@bindThis
|
|
public packMany(
|
|
mutings: any[],
|
|
me: { id: MiUser['id'] },
|
|
) {
|
|
return Promise.all(mutings.map(x => this.pack(x, me)));
|
|
}
|
|
}
|
|
|