Sharkey/packages/backend/src/core/UserKeypairStoreService.ts

23 lines
769 B
TypeScript
Raw Normal View History

2022-09-17 21:27:08 +03:00
import { Inject, Injectable } from '@nestjs/common';
import type { User } from '@/models/entities/User.js';
2022-09-20 23:33:11 +03:00
import type { UserKeypairsRepository } from '@/models/index.js';
2022-09-17 21:27:08 +03:00
import { Cache } from '@/misc/cache.js';
import type { UserKeypair } from '@/models/entities/UserKeypair.js';
import { DI } from '@/di-symbols.js';
@Injectable()
export class UserKeypairStoreService {
2022-09-18 21:11:50 +03:00
private cache: Cache<UserKeypair>;
2022-09-17 21:27:08 +03:00
constructor(
@Inject(DI.userKeypairsRepository)
private userKeypairsRepository: UserKeypairsRepository,
) {
2022-09-18 21:11:50 +03:00
this.cache = new Cache<UserKeypair>(Infinity);
2022-09-17 21:27:08 +03:00
}
public async getUserKeypair(userId: User['id']): Promise<UserKeypair> {
2022-09-18 21:11:50 +03:00
return await this.cache.fetch(userId, () => this.userKeypairsRepository.findOneByOrFail({ userId: userId }));
2022-09-17 21:27:08 +03:00
}
}