import { createSystemUser } from './create-system-user.js'; import { ILocalUser } from '@/models/entities/user.js'; import { Users } from '@/models/index.js'; import { Cache } from '@/misc/cache.js'; import { IsNull } from 'typeorm'; const ACTOR_USERNAME = 'instance.actor' as const; const cache = new Cache(Infinity); export async function getInstanceActor(): Promise { const cached = cache.get(null); if (cached) return cached; const user = await Users.findOneBy({ host: IsNull(), username: ACTOR_USERNAME, }) as ILocalUser | undefined; if (user) { cache.set(null, user); return user; } else { const created = await createSystemUser(ACTOR_USERNAME) as ILocalUser; cache.set(null, created); return created; } }