handle errors and exceptions in controllers
All checks were successful
soko-web/pipeline/pr-master This commit looks good
All checks were successful
soko-web/pipeline/pr-master This commit looks good
This commit is contained in:
parent
51801d4228
commit
ad7b8c3eda
@ -1,5 +1,7 @@
|
||||
<?php namespace SokoWeb\Response;
|
||||
|
||||
use ErrorException;
|
||||
use Exception;
|
||||
use SokoWeb\Interfaces\Response\IRedirect;
|
||||
use SokoWeb\Interfaces\Response\IContent;
|
||||
use SokoWeb\Interfaces\Authentication\IAuthenticationRequired;
|
||||
@ -35,6 +37,8 @@ class HttpResponse
|
||||
string $requestMethod,
|
||||
string $requestUrl
|
||||
) {
|
||||
set_error_handler([$this, 'exceptionsErrorHandler']);
|
||||
|
||||
$this->request = $request;
|
||||
$this->dbConnection = $dbConnection;
|
||||
$this->routeCollection = $routeCollection;
|
||||
@ -44,6 +48,11 @@ class HttpResponse
|
||||
$this->rawUrl = $requestUrl;
|
||||
}
|
||||
|
||||
public function exceptionsErrorHandler($severity, $message, $filename, $lineno)
|
||||
{
|
||||
throw new ErrorException($message, 0, $severity, $filename, $lineno);
|
||||
}
|
||||
|
||||
public function render(): void
|
||||
{
|
||||
$match = $this->routeCollection->match($this->method, $this->parsedUrl['path']);
|
||||
@ -81,7 +90,13 @@ class HttpResponse
|
||||
}
|
||||
|
||||
$this->dbConnection->startTransaction();
|
||||
try {
|
||||
$response = call_user_func([$controller, $handler[1]]);
|
||||
} catch (Exception $exception) {
|
||||
$this->dbConnection->rollback();
|
||||
$this->render500($exception);
|
||||
return;
|
||||
}
|
||||
$this->dbConnection->commit();
|
||||
|
||||
if ($response instanceof IContent) {
|
||||
@ -114,4 +129,17 @@ class HttpResponse
|
||||
header('Content-Type: text/html; charset=UTF-8', true, 404);
|
||||
$content->render();
|
||||
}
|
||||
|
||||
private function render500(Exception $exception): void
|
||||
{
|
||||
if (empty($_ENV['DEV'])) {
|
||||
$exceptionToPrint = null;
|
||||
} else {
|
||||
$exceptionToPrint = (string)$exception;
|
||||
}
|
||||
|
||||
$content = new HtmlContent($this->appConfig['error500View'], ['exceptionToPrint' => $exceptionToPrint]);
|
||||
header('Content-Type: text/html; charset=UTF-8', true, 500);
|
||||
$content->render();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user