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

25 lines
747 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';
import type { LocalUser } from '@/models/entities/User.js';
2022-09-17 18:27:08 +00:00
import { DI } from '@/di-symbols.js';
2022-12-04 01:16:03 +00:00
import { MetaService } from '@/core/MetaService.js';
import { bindThis } from '@/decorators.js';
2022-09-17 18:27:08 +00:00
@Injectable()
export class ProxyAccountService {
constructor(
@Inject(DI.usersRepository)
private usersRepository: UsersRepository,
private metaService: MetaService,
) {
}
@bindThis
2023-02-13 06:50:22 +00:00
public async fetch(): Promise<LocalUser | null> {
2022-09-17 18:27:08 +00:00
const meta = await this.metaService.fetch();
if (meta.proxyAccountId == null) return null;
2023-02-13 06:50:22 +00:00
return await this.usersRepository.findOneByOrFail({ id: meta.proxyAccountId }) as LocalUser;
2022-09-17 18:27:08 +00:00
}
}