|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Exceptions;
|
|
|
|
|
|
|
|
|
|
use GuzzleHttp\Exception\ConnectException;
|
|
|
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
|
|
|
|
use Illuminate\Http\Client\ConnectionException;
|
|
|
|
|
use Illuminate\Http\Exceptions\HttpResponseException;
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
use Illuminate\Http\Response;
|
|
|
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
|
use League\OAuth2\Server\Exception\OAuthServerException;
|
|
|
|
|
use Throwable;
|
|
|
|
|
|
|
|
|
|
class Handler extends ExceptionHandler
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* A list of the exception types that are not reported.
|
|
|
|
|
*
|
|
|
|
|
* @var array
|
|
|
|
|
*/
|
|
|
|
|
protected $dontReport = [
|
|
|
|
|
OAuthServerException::class,
|
|
|
|
|
ConnectException::class,
|
|
|
|
|
ConnectionException::class,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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(Throwable $exception)
|
|
|
|
|
{
|
|
|
|
|
parent::report($exception);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Register the exception handling callbacks for the application.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function register()
|
|
|
|
|
{
|
|
|
|
|
$this->reportable(function (\BadMethodCallException $e) {
|
|
|
|
|
return app()->environment() !== 'production';
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$this->reportable(function (ConnectionException $e) {
|
|
|
|
|
return app()->environment() !== 'production';
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Render an exception into an HTTP response.
|
|
|
|
|
*
|
|
|
|
|
* @param Request $request
|
|
|
|
|
* @param \Exception $exception
|
|
|
|
|
* @return Response
|
|
|
|
|
*/
|
|
|
|
|
public function render($request, Throwable $exception)
|
|
|
|
|
{
|
|
|
|
|
if ($request->wantsJson()) {
|
|
|
|
|
if ($exception instanceof HttpResponseException) {
|
|
|
|
|
return $exception->getResponse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($exception instanceof ValidationException) {
|
|
|
|
|
return response()->json([
|
|
|
|
|
'message' => $exception->getMessage(),
|
|
|
|
|
'errors' => $exception->validator->getMessageBag(),
|
|
|
|
|
], $exception->status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$isHttp = $this->isHttpException($exception);
|
|
|
|
|
|
|
|
|
|
return response()->json(
|
|
|
|
|
['error' => $exception->getMessage()],
|
|
|
|
|
$isHttp ? $exception->getStatusCode() : 500,
|
|
|
|
|
$isHttp ? $exception->getHeaders() : [],
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return parent::render($request, $exception);
|
|
|
|
|
}
|
|
|
|
|
}
|