Redis service

This commit is contained in:
2023-10-19 20:46:52 -03:00
parent 742c0327c2
commit dc217d876a
10 changed files with 228 additions and 97 deletions

View File

@ -1,6 +1,8 @@
<?php
namespace Incoviba\Controller\API;
use DateTimeImmutable;
use Incoviba\Common\Implement\Exception\EmptyRedis;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Incoviba\Common\Implement\Exception\EmptyResult;
@ -10,7 +12,7 @@ use Incoviba\Service;
class Ventas
{
use withJson;
use withJson, withRedis;
public function proyecto(ServerRequestInterface $request, ResponseInterface $response, Repository\Venta $service): ResponseInterface
{
@ -46,29 +48,40 @@ class Ventas
}
return $this->withJson($response, $output);
}
public function porFirmar(ServerRequestInterface $request, ResponseInterface $response, Service\Venta $ventaService): ResponseInterface
public function porFirmar(ServerRequestInterface $request, ResponseInterface $response, Service\Venta $ventaService, Service\Redis $redisService): ResponseInterface
{
$body = $request->getBody();
$json = json_decode($body->getContents());
$proyecto_id = $json->proyecto_id;
$today = new DateTimeImmutable();
$redisKey = "promesas_por_firmar-{$proyecto_id}-{$today->format('Y-m-d')}";
$output = [
'proyecto_id' => $proyecto_id,
'promesas' => 0
];
try {
$ventas = $ventaService->getByProyecto($proyecto_id);
$promesas = array_filter($ventas, function(Model\Venta $venta) {
return $venta->currentEstado()->tipoEstadoVenta->descripcion === 'vigente';
});
$output['promesas'] = count($promesas);
} catch (EmptyResult) {}
$output = $this->fetchRedis($redisService, $redisKey);
} catch (EmptyRedis) {
try {
$ventas = $ventaService->getByProyecto($proyecto_id);
$promesas = array_filter($ventas, function(Model\Venta $venta) {
return $venta->currentEstado()->tipoEstadoVenta->descripcion === 'vigente';
});
$output['promesas'] = count($promesas);
$this->saveRedis($redisService, $redisKey, $output);
} catch (EmptyResult) {}
}
return $this->withJson($response, $output);
}
public function escrituras(ServerRequestInterface $request, ResponseInterface $response, Service\Venta $ventaService, Service\Venta\Pago $pagoService): ResponseInterface
public function escrituras(ServerRequestInterface $request, ResponseInterface $response, Service\Venta $ventaService, Service\Venta\Pago $pagoService, Service\Redis $redisService): ResponseInterface
{
$body = $request->getBody();
$json = json_decode($body->getContents());
$proyecto_id = $json->proyecto_id;
$today = new DateTimeImmutable();
$redisKey = "escrituras-{$proyecto_id}-{$today->format('Y-m-d')}";
$output = [
'proyecto_id' => $proyecto_id,
'escrituras' => [
@ -78,35 +91,40 @@ class Ventas
]
];
try {
$ventas = $ventaService->getEscriturasByProyecto($proyecto_id);
$porFirmar = array_filter($ventas, function(Model\Venta $venta) {
return $venta->currentEstado()->tipoEstadoVenta->descripcion === 'escriturando';
});
$output['escrituras']['firmar'] = count($porFirmar);
unset($porFirmar);
$escrituras = array_filter($ventas, function(Model\Venta $venta) {
return $venta->currentEstado()->tipoEstadoVenta->descripcion === 'firmado por inmobiliaria';
});
unset($ventas);
$porPagar = array_filter($escrituras, function(Model\Venta $venta) use ($pagoService) {
$pagos = $pagoService->getByVenta($venta->id);
$porPagar = array_filter($pagos, function(Model\Venta\Pago $pago) {
return $pago->currentEstado->tipoEstadoPago->descripcion === 'no pagado';
$output = $this->fetchRedis($redisService, $redisKey);
} catch (EmptyRedis) {
try {
$ventas = $ventaService->getEscriturasByProyecto($proyecto_id);
$porFirmar = array_filter($ventas, function(Model\Venta $venta) {
return $venta->currentEstado()->tipoEstadoVenta->descripcion === 'escriturando';
});
return count($porPagar) > 0;
});
$output['escrituras']['pagar'] = count($porPagar);
unset($porPagar);
$porAbonar = array_filter($escrituras, function(Model\Venta $venta) use ($pagoService) {
$pagos = $pagoService->getByVenta($venta->id);
$porPagar = array_filter($pagos, function(Model\Venta\Pago $pago) {
return $pago->currentEstado->tipoEstadoPago->descripcion === 'depositado';
$output['escrituras']['firmar'] = count($porFirmar);
unset($porFirmar);
$escrituras = array_filter($ventas, function(Model\Venta $venta) {
return $venta->currentEstado()->tipoEstadoVenta->descripcion === 'firmado por inmobiliaria';
});
return count($porPagar) > 0;
});
$output['escrituras']['abonar'] = count($porAbonar);
unset($porAbonar);
} catch (EmptyResult) {}
unset($ventas);
$porPagar = array_filter($escrituras, function(Model\Venta $venta) use ($pagoService) {
$pagos = $pagoService->getByVenta($venta->id);
$porPagar = array_filter($pagos, function(Model\Venta\Pago $pago) {
return $pago->currentEstado->tipoEstadoPago->descripcion === 'no pagado';
});
return count($porPagar) > 0;
});
$output['escrituras']['pagar'] = count($porPagar);
unset($porPagar);
$porAbonar = array_filter($escrituras, function(Model\Venta $venta) use ($pagoService) {
$pagos = $pagoService->getByVenta($venta->id);
$porPagar = array_filter($pagos, function(Model\Venta\Pago $pago) {
return $pago->currentEstado->tipoEstadoPago->descripcion === 'depositado';
});
return count($porPagar) > 0;
});
$output['escrituras']['abonar'] = count($porAbonar);
unset($porAbonar);
$this->saveRedis($redisService, $redisKey, $output);
} catch (EmptyResult) {}
}
return $this->withJson($response, $output);
}
public function comentarios(ServerRequestInterface $request, ResponseInterface $response, Service\Venta $service, Repository\Venta\Comentario $comentarioRepository, int $venta_id): ResponseInterface