import type { Variables } from '@db/entities/Variables'; import { CacheService } from '@/services/cache.service'; import Container, { Service } from 'typedi'; import { VariablesRepository } from '@db/repositories/variables.repository'; import type { DeepPartial } from 'typeorm'; @Service() export class VariablesService { constructor( protected cacheService: CacheService, protected variablesRepository: VariablesRepository, ) {} async getAllCached(): Promise { const variables = await this.cacheService.get('variables', { async refreshFunction() { // TODO: log refresh cache metric return Container.get(VariablesService).findAll(); }, }); return (variables as Array>).map((v) => this.variablesRepository.create(v), ); } async getCount(): Promise { return (await this.getAllCached()).length; } async getCached(id: string): Promise { const variables = await this.getAllCached(); const foundVariable = variables.find((variable) => variable.id === id); if (!foundVariable) { return null; } return this.variablesRepository.create(foundVariable as DeepPartial); } async delete(id: string): Promise { await this.variablesRepository.delete(id); await this.updateCache(); } async updateCache(): Promise { // TODO: log update cache metric const variables = await this.findAll(); await this.cacheService.set('variables', variables); } async findAll(): Promise { return this.variablesRepository.find(); } }