2023-07-26 22:31:52 -07:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 13:33:11 -07:00
|
|
|
import type { UsersRepository } from '@/models/index.js';
|
2023-02-16 06:09:41 -08:00
|
|
|
import type { LocalUser } from '@/models/entities/User.js';
|
2022-09-17 11:27:08 -07:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-12-03 17:16:03 -08:00
|
|
|
import { MetaService } from '@/core/MetaService.js';
|
2022-12-03 22:03:09 -08:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-09-17 11:27:08 -07:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ProxyAccountService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
private metaService: MetaService,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-03 22:03:09 -08:00
|
|
|
@bindThis
|
2023-02-12 22:50:22 -08:00
|
|
|
public async fetch(): Promise<LocalUser | null> {
|
2022-09-17 11:27:08 -07:00
|
|
|
const meta = await this.metaService.fetch();
|
|
|
|
if (meta.proxyAccountId == null) return null;
|
2023-02-12 22:50:22 -08:00
|
|
|
return await this.usersRepository.findOneByOrFail({ id: meta.proxyAccountId }) as LocalUser;
|
2022-09-17 11:27:08 -07:00
|
|
|
}
|
|
|
|
}
|