2023-07-27 08:31:52 +03:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { IsNull } from 'typeorm';
|
2023-09-20 05:33:36 +03:00
|
|
|
import type { MiLocalUser } from '@/models/User.js';
|
2023-09-15 08:28:29 +03:00
|
|
|
import type { UsersRepository } from '@/models/_.js';
|
2023-04-06 05:14:43 +03:00
|
|
|
import { MemorySingleCache } from '@/misc/cache.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-12-04 03:16:03 +02:00
|
|
|
import { CreateSystemUserService } from '@/core/CreateSystemUserService.js';
|
2022-12-04 10:05:32 +02:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
const ACTOR_USERNAME = 'instance.actor' as const;
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class InstanceActorService {
|
2023-08-16 11:51:28 +03:00
|
|
|
private cache: MemorySingleCache<MiLocalUser>;
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
private createSystemUserService: CreateSystemUserService,
|
|
|
|
) {
|
2023-08-16 11:51:28 +03:00
|
|
|
this.cache = new MemorySingleCache<MiLocalUser>(Infinity);
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2023-08-16 11:51:28 +03:00
|
|
|
public async getInstanceActor(): Promise<MiLocalUser> {
|
2023-04-04 11:32:09 +03:00
|
|
|
const cached = this.cache.get();
|
2022-09-17 21:27:08 +03:00
|
|
|
if (cached) return cached;
|
2023-07-08 01:08:16 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
const user = await this.usersRepository.findOneBy({
|
|
|
|
host: IsNull(),
|
|
|
|
username: ACTOR_USERNAME,
|
2023-08-16 11:51:28 +03:00
|
|
|
}) as MiLocalUser | undefined;
|
2023-07-08 01:08:16 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (user) {
|
2023-04-04 11:32:09 +03:00
|
|
|
this.cache.set(user);
|
2022-09-17 21:27:08 +03:00
|
|
|
return user;
|
|
|
|
} else {
|
2023-08-16 11:51:28 +03:00
|
|
|
const created = await this.createSystemUserService.createSystemUser(ACTOR_USERNAME) as MiLocalUser;
|
2023-04-04 11:32:09 +03:00
|
|
|
this.cache.set(created);
|
2022-09-17 21:27:08 +03:00
|
|
|
return created;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|