FleetCart/app/Exceptions/Handler.php
2023-12-03 14:07:47 +00:00

177 lines
4.6 KiB
PHP

<?php
namespace FleetCart\Exceptions;
use Throwable;
use Illuminate\Http\Request;
use Swift_TransportException;
use Illuminate\Http\Response;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\RedirectResponse;
use Modules\Sms\Exceptions\SmsException;
use Illuminate\Validation\ValidationException;
use Modules\Checkout\Http\Exceptions\CheckoutException;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that should not be reported.
*
* @var array
*/
protected $dontReport = [
//
];
/**
* A list of the inputs that are never flashed for validation exceptions.
*
* @var array
*/
protected $dontFlash = [
'password',
'password_confirmation',
];
/**
* Report or log an exception.
*
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
*
* @param Throwable $e
*
* @return void
* @throws Throwable
*/
public function report(Throwable $e): void
{
parent::report($e);
}
/**
* Render an exception into an HTTP response.
*
* @param Request $request
* @param Throwable $e
*
* @return Response|JsonResponse|RedirectResponse
* @throws Throwable
*/
public function render($request, Throwable $e)
{
return match (true) {
$e instanceof Swift_TransportException => $this->handleSwiftException($request, $e),
$e instanceof SmsException => $this->handleSmsException($request, $e),
$e instanceof ValidationException && $request->ajax() => response()->json([
'message' => trans('core::messages.the_given_data_was_invalid'),
'errors' => $e->validator->getMessageBag(),
], 422),
$e instanceof CheckoutException => response()->json([
'message' => $e->getMessage(),
], Response::HTTP_FORBIDDEN),
$this->shouldRedirectToAdminDashboard($e) => redirect()->route('admin.dashboard.index'),
$this->shouldShowNotFoundPage($e) => response()->view('errors.404'),
default => parent::render($request, $e),
};
}
/**
* Handle swift transport exception.
*
* @param Request $request
* @param Swift_TransportException $e
*
* @return mixed
*
* @throws Swift_TransportException
*/
private function handleSwiftException(Request $request, Swift_TransportException $e)
{
if (config('app.debug')) {
throw $e;
}
if ($request->ajax()) {
abort(400, trans('core::messages.mail_is_not_configured'));
}
return back()->withInput()
->with('error', trans('core::messages.mail_is_not_configured'));
}
/**
* Handle sms exception.
*
* @param Request $request
* @param SmsException $e
*
* @return RedirectResponse
*
* @throws SmsException
*/
private function handleSmsException(Request $request, SmsException $e)
{
if (config('app.debug')) {
throw $e;
}
if ($request->ajax()) {
abort(400, $e->getMessage());
}
return back()->withInput()->with('error', $e->getMessage());
}
/**
* Determine whether response should redirect to the admin dashboard.
*
* @param Throwable $e
*
* @return bool
*/
private function shouldRedirectToAdminDashboard(Throwable $e): bool
{
if (config('app.debug') || !$this->inAdminPanel()) {
return false;
}
return $e instanceof NotFoundHttpException || $e instanceof ModelNotFoundException;
}
/**
* Determine if the request is from admin panel.
*
* @return bool
*/
private function inAdminPanel(): bool
{
return $this->container->has('inAdminPanel') && $this->container['inAdminPanel'];
}
/**
* Determine if the response should show not found page.
*
* @param Throwable $e
*
* @return bool
*/
private function shouldShowNotFoundPage(Throwable $e): bool
{
if ($this->inAdminPanel()) {
return false;
}
return $e instanceof NotFoundHttpException || $e instanceof ModelNotFoundException;
}
}