Files
oficial/app/src/Middleware/NotFound.php

33 lines
1.3 KiB
PHP
Raw Normal View History

2023-07-28 16:22:20 -04:00
<?php
namespace Incoviba\Middleware;
use Psr\Http\Message\ResponseFactoryInterface;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\RequestHandlerInterface;
use Psr\Log\LoggerInterface;
use Slim\Exception\HttpNotFoundException;
use Incoviba\Common\Alias\View;
use Incoviba\Common\Implement\Exception\{EmptyRedis,EmptyResult};
use Incoviba\Exception\ServiceAction\{Create, Delete, Read, Update};
2023-07-28 16:22:20 -04:00
class NotFound
{
public function __construct(protected LoggerInterface $logger, protected ResponseFactoryInterface $responseFactory,
protected View $view) {}
2023-07-28 16:22:20 -04:00
public function __invoke(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
try {
return $handler->handle($request);
} catch (HttpNotFoundException |
EmptyRedis | EmptyResult | Read | Create | Update | Delete $exception) {
2025-06-03 11:52:31 -04:00
$this->logger->notice($exception);
$response = $this->responseFactory->createResponse(404, 'Not Found');
2023-10-13 10:45:21 -03:00
if (str_contains($request->getUri()->getPath(), '/api')) {
return $response;
}
2023-07-28 16:22:20 -04:00
return $this->view->render($response, 'not_found');
}
}
}