misskey-awawa/packages/backend/src/core/ProxyAccountService.ts

23 lines
701 B
TypeScript
Raw Normal View History

2022-09-17 18:27:08 +00:00
import { Inject, Injectable } from '@nestjs/common';
2022-09-20 20:33:11 +00:00
import type { UsersRepository } from '@/models/index.js';
2022-09-17 18:27:08 +00:00
import type { ILocalUser, User } from '@/models/entities/User.js';
import { DI } from '@/di-symbols.js';
2022-12-04 01:16:03 +00:00
import { MetaService } from '@/core/MetaService.js';
2022-09-17 18:27:08 +00:00
@Injectable()
export class ProxyAccountService {
constructor(
@Inject(DI.usersRepository)
private usersRepository: UsersRepository,
private metaService: MetaService,
) {
}
public async fetch(): Promise<ILocalUser | null> {
const meta = await this.metaService.fetch();
if (meta.proxyAccountId == null) return null;
return await this.usersRepository.findOneByOrFail({ id: meta.proxyAccountId }) as ILocalUser;
}
}