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';
|
2023-03-24 09:43:42 +02:00
|
|
|
import { KVCache } from '@/misc/cache.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import type { UserKeypair } from '@/models/entities/UserKeypair.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-12-04 08:03:09 +02:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class UserKeypairStoreService {
|
2023-03-24 09:43:42 +02:00
|
|
|
private cache: KVCache<UserKeypair>;
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.userKeypairsRepository)
|
|
|
|
private userKeypairsRepository: UserKeypairsRepository,
|
|
|
|
) {
|
2023-03-24 09:43:42 +02:00
|
|
|
this.cache = new KVCache<UserKeypair>(Infinity);
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
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
|
|
|
}
|
|
|
|
}
|