Debug Check Added

This commit is contained in:
devansh bawari 2021-06-29 14:02:46 +05:30
parent 63b5c53cba
commit af78f2bf71
1 changed files with 31 additions and 13 deletions

View File

@ -2,12 +2,12 @@
namespace Webkul\Core\Exceptions; namespace Webkul\Core\Exceptions;
use Throwable;
use PDOException;
use Illuminate\Auth\AuthenticationException;
use App\Exceptions\Handler as AppExceptionHandler; use App\Exceptions\Handler as AppExceptionHandler;
use Illuminate\Auth\AuthenticationException;
use Illuminate\Database\Eloquent\ModelNotFoundException; use Illuminate\Database\Eloquent\ModelNotFoundException;
use PDOException;
use Symfony\Component\HttpKernel\Exception\HttpException; use Symfony\Component\HttpKernel\Exception\HttpException;
use Throwable;
class Handler extends AppExceptionHandler class Handler extends AppExceptionHandler
{ {
@ -32,16 +32,8 @@ class Handler extends AppExceptionHandler
*/ */
public function render($request, Throwable $exception) public function render($request, Throwable $exception)
{ {
$path = $this->isAdminUri() ? 'admin' : 'shop'; if (! config('app.debug')) {
return $this->renderCustomResponse($request, $exception);
if ($exception instanceof HttpException) {
$statusCode = in_array($exception->getStatusCode(), [401, 403, 404, 503]) ? $exception->getStatusCode() : 500;
return $this->response($path, $statusCode);
} elseif ($exception instanceof ModelNotFoundException) {
return $this->response($path, 404);
} elseif ($exception instanceof PDOException) {
return $this->response($path, 500);
} }
return parent::render($request, $exception); return parent::render($request, $exception);
@ -73,6 +65,32 @@ class Handler extends AppExceptionHandler
return strpos(\Illuminate\Support\Facades\Request::path(), 'admin') !== false ? true : false; return strpos(\Illuminate\Support\Facades\Request::path(), 'admin') !== false ? true : false;
} }
/**
* Render custom HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Throwable $exception
* @return \Illuminate\Http\Response|null
*/
private function renderCustomResponse($request, Throwable $exception)
{
$path = $this->isAdminUri() ? 'admin' : 'shop';
if ($exception instanceof HttpException) {
$statusCode = in_array($exception->getStatusCode(), [401, 403, 404, 503])
? $exception->getStatusCode()
: 500;
return $this->response($path, $statusCode);
} elseif ($exception instanceof ModelNotFoundException) {
return $this->response($path, 404);
} elseif ($exception instanceof PDOException) {
return $this->response($path, 500);
} else {
return parent::render($request, $exception);
}
}
/** /**
* Response. * Response.
* *