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