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
|
|
|
|
*/
|
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2023-09-15 00:28:29 -05:00
|
|
|
import type { UsersRepository } from '@/models/_.js';
|
2023-09-19 21:33:36 -05:00
|
|
|
import type { MiLocalUser } from '@/models/User.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-12-03 19:16:03 -06:00
|
|
|
import { MetaService } from '@/core/MetaService.js';
|
2022-12-04 00:03:09 -06:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ProxyAccountService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
private metaService: MetaService,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 00:03:09 -06:00
|
|
|
@bindThis
|
2023-08-16 03:51:28 -05:00
|
|
|
public async fetch(): Promise<MiLocalUser | null> {
|
2022-09-17 13:27:08 -05:00
|
|
|
const meta = await this.metaService.fetch();
|
|
|
|
if (meta.proxyAccountId == null) return null;
|
2023-08-16 03:51:28 -05:00
|
|
|
return await this.usersRepository.findOneByOrFail({ id: meta.proxyAccountId }) as MiLocalUser;
|
2022-09-17 13:27:08 -05:00
|
|
|
}
|
|
|
|
}
|