Guardar UF en DB

This commit is contained in:
Juan Pablo Vial
2025-05-05 15:40:55 -04:00
parent db6445bcf3
commit ebe31a3d3d
3 changed files with 132 additions and 10 deletions

View File

@ -3,14 +3,17 @@ namespace Incoviba\Service;
use DateTimeInterface;
use DateTimeImmutable;
use Incoviba\Common\Implement\Exception\EmptyRedis;
use PDOException;
use Psr\Log\LoggerInterface;
use Incoviba\Common\Implement\Exception\{EmptyRedis, EmptyResult};
use Incoviba\Repository;
class UF
{
protected string $redisKey = 'uf';
public function __construct(protected Redis $redisService, protected Money $moneyService,
protected Repository\UF $ufRepository,
protected LoggerInterface $logger) {}
public function get(?DateTimeInterface $date = null): float
@ -18,21 +21,30 @@ class UF
if ($date === null) {
$date = new DateTimeImmutable();
}
$ufs = [];
/**
* 1 - Redis
* 2 - DB
* 3 - Fetch from web
*/
try {
$ufs = json_decode($this->redisService->get($this->redisKey), JSON_OBJECT_AS_ARRAY);
$ufs = $this->getRedisUFs();
if (!isset($ufs[$date->format('Y-m-d')])) {
throw new EmptyRedis($this->redisKey);
}
$uf = $ufs[$date->format('Y-m-d')];
return $ufs[$date->format('Y-m-d')];
} catch (EmptyRedis) {
$uf = $this->moneyService->getUF($date);
if ($uf === 0.0) {
return 0.0;
try {
$model = $this->ufRepository->fetchByFecha($date);
return $model->valor;
} catch (EmptyResult) {
$uf = $this->moneyService->getUF($date);
if ($uf === 0.0) {
return 0.0;
}
$this->saveUF($date, $uf);
}
$ufs[$date->format('Y-m-d')] = $uf;
ksort($ufs);
$this->redisService->set($this->redisKey, json_encode($ufs), 60 * 60 * 24 * 30);
}
return $uf;
}
@ -49,6 +61,7 @@ class UF
if ($uf === 0.0) {
continue;
}
$this->saveUF($date, $uf);
$updated[$date->format('Y-m-d')] = $uf;
$ufs[$date->format('Y-m-d')] = $this->moneyService->getUF($date);
}
@ -63,4 +76,45 @@ class UF
$uf = $this->get($date);
return $input * (($from === 'uf') ? $uf : 1/$uf);
}
protected array $redisUFs;
public function getRedisUFs(): array
{
if (!isset($this->redisUFs)) {
try {
$this->redisUFs = json_decode($this->redisService->get($this->redisKey), JSON_OBJECT_AS_ARRAY);
} catch (EmptyRedis) {
$this->redisUFs = [];
}
}
return $this->redisUFs;
}
protected function saveUF(DateTimeInterface $date, float $value): void
{
$this->saveUFinRedis($date, $value);
$this->saveUFinDB($date, $value);
}
protected function saveUFinRedis(DateTimeInterface $date, float $value): void
{
$ufs = $this->redisUFs;
$ufs[$date->format('Y-m-d')] = $value;
if (count($ufs) > 1) {
ksort($ufs);
}
$this->redisUFs = $ufs;
$this->redisService->set($this->redisKey, json_encode($ufs), 60 * 60 * 24 * 30);
}
protected function saveUFinDB(DateTimeInterface $date, float $value): void
{
try {
$this->ufRepository->fetchByFecha($date);
} catch (EmptyResult) {
try {
$model = $this->ufRepository->create(['fecha' => $date->format('Y-m-d'), 'valor' => $value]);
$this->ufRepository->save($model);
} catch (PDOException) {}
}
}
}