2FAuth/app/Exceptions/Handler.php

148 lines
3.9 KiB
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
namespace App\Exceptions;
use Exception;
2020-01-26 16:04:26 +01:00
use Illuminate\Http\Response;
2019-05-20 07:37:41 +02:00
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Illuminate\Database\Eloquent\ModelNotFoundException as ModelNotFoundException;
2019-05-26 16:44:46 +02:00
use Illuminate\Validation\ValidationException as ValidationException;
use Symfony\Component\HttpKernel\Exception\HttpException;
2019-05-20 07:37:41 +02:00
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that are not 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.
*
* @param \Exception $exception
* @return void
*/
public function report(Exception $exception)
{
parent::report($exception);
}
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
* @return \Illuminate\Http\Response
*/
public function render($request, Exception $exception)
2020-01-27 21:13:21 +01:00
{
2020-01-27 16:53:26 +01:00
if ( $request->wantsJson() ) {
return $this->handleApiException($request, $exception);
} else {
2019-05-26 16:44:46 +02:00
2020-01-27 16:53:26 +01:00
return parent::render($request, $exception);
}
2019-05-20 07:37:41 +02:00
}
2019-05-26 16:44:46 +02:00
2020-01-27 16:53:26 +01:00
2019-05-26 16:44:46 +02:00
/**
2020-01-27 16:53:26 +01:00
* Render an exception into an HTTP response.
2019-05-26 16:44:46 +02:00
*
2020-01-27 16:53:26 +01:00
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
* @return \Illuminate\Http\JsonResponse
2019-05-26 16:44:46 +02:00
*/
2020-01-27 16:53:26 +01:00
private function handleApiException($request, Exception $exception)
2019-05-26 16:44:46 +02:00
{
2020-01-27 21:13:21 +01:00
$debug = [
'exception' => get_class($exception),
'trace' => $exception->getTrace(),
];
2020-01-27 16:53:26 +01:00
$exception = $this->prepareException($exception);
if ($exception instanceof \Illuminate\Http\Exception\HttpResponseException) {
$exception = $exception->getResponse();
}
if ($exception instanceof \Illuminate\Auth\AuthenticationException) {
$exception = $this->unauthenticated($request, $exception);
}
if ($exception instanceof \Illuminate\Validation\ValidationException) {
$exception = $this->convertValidationExceptionToResponse($exception, $request);
}
2020-01-27 21:13:21 +01:00
return $this->customApiResponse($exception, $debug);
2020-01-27 16:53:26 +01:00
}
/**
* Set a specific response payload for commons http error codes
*
* @param \Exception $exception
* @return \Illuminate\Http\JsonResponse
*/
2020-01-27 21:13:21 +01:00
private function customApiResponse($exception, $debug)
2020-01-27 16:53:26 +01:00
{
if (method_exists($exception, 'getStatusCode')) {
$statusCode = $exception->getStatusCode();
} else {
$statusCode = 500;
}
$response = [];
$response['status_code'] = $statusCode;
switch ($statusCode) {
case 401:
$response['message'] = 'Unauthorized';
break;
case 403:
$response['message'] = 'Forbidden';
break;
case 404:
$response['message'] = 'Not Found';
break;
case 405:
$response['message'] = 'Method Not Allowed';
break;
case 422:
$response['message'] = $exception->original['message'];
$response['errors'] = $exception->original['errors'];
break;
default:
$response['message'] = ($statusCode >= 500) ? 'Whoops, looks like something went wrong' : $exception->getMessage();
if (env('APP_DEBUG')) {
$response['debug'] = $debug;
}
2020-01-27 16:53:26 +01:00
break;
2020-01-27 16:53:26 +01:00
}
return response()->json($response, $statusCode);
2019-05-26 16:44:46 +02:00
}
2019-05-20 07:37:41 +02:00
}