egirlskey/packages/backend/src/core/InstanceActorService.ts

43 lines
1.2 KiB
TypeScript
Raw Normal View History

2022-09-17 18:27:08 +00:00
import { Inject, Injectable } from '@nestjs/common';
import { IsNull } from 'typeorm';
import type { ILocalUser } from '@/models/entities/User.js';
import { UsersRepository } from '@/models/index.js';
import { Cache } from '@/misc/cache.js';
import { DI } from '@/di-symbols.js';
import { CreateSystemUserService } from './CreateSystemUserService.js';
const ACTOR_USERNAME = 'instance.actor' as const;
@Injectable()
export class InstanceActorService {
2022-09-18 18:11:50 +00:00
private cache: Cache<ILocalUser>;
2022-09-17 18:27:08 +00:00
constructor(
@Inject(DI.usersRepository)
private usersRepository: UsersRepository,
private createSystemUserService: CreateSystemUserService,
) {
2022-09-18 18:11:50 +00:00
this.cache = new Cache<ILocalUser>(Infinity);
2022-09-17 18:27:08 +00:00
}
public async getInstanceActor(): Promise<ILocalUser> {
2022-09-18 18:11:50 +00:00
const cached = this.cache.get(null);
2022-09-17 18:27:08 +00:00
if (cached) return cached;
const user = await this.usersRepository.findOneBy({
host: IsNull(),
username: ACTOR_USERNAME,
}) as ILocalUser | undefined;
if (user) {
2022-09-18 18:11:50 +00:00
this.cache.set(null, user);
2022-09-17 18:27:08 +00:00
return user;
} else {
const created = await this.createSystemUserService.createSystemUser(ACTOR_USERNAME) as ILocalUser;
2022-09-18 18:11:50 +00:00
this.cache.set(null, created);
2022-09-17 18:27:08 +00:00
return created;
}
}
}