Files
nexusphp/app/Exceptions/Handler.php

107 lines
2.9 KiB
PHP
Raw Normal View History

2021-04-02 19:48:41 +08:00
<?php
namespace App\Exceptions;
use Illuminate\Auth\AuthenticationException;
2021-04-28 01:22:25 +08:00
use Illuminate\Database\Eloquent\ModelNotFoundException;
2021-04-02 19:48:41 +08:00
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Illuminate\Http\JsonResponse;
use Illuminate\Support\Arr;
2021-04-28 01:22:25 +08:00
use Illuminate\Validation\UnauthorizedException;
2021-04-02 19:48:41 +08:00
use Illuminate\Validation\ValidationException;
2021-04-23 01:28:41 +08:00
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
2021-04-02 19:48:41 +08:00
use Throwable;
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 = [
'current_password',
'password',
'password_confirmation',
];
/**
* Register the exception handling callbacks for the application.
*
* @return void
*/
public function register()
{
$this->reportable(function (Throwable $e) {
//
});
$this->renderable(function (AuthenticationException $e) {
return response()->json(fail($e->getMessage(), $e->guards()), 401);
});
2021-04-28 01:22:25 +08:00
$this->renderable(function (UnauthorizedException $e) {
return response()->json(fail($e->getMessage(), request()->all()), 403);
});
2021-04-02 19:48:41 +08:00
$this->renderable(function (ValidationException $exception) {
$errors = $exception->errors();
$msg = Arr::first(Arr::first($errors));
return response()->json(fail($msg, $errors));
});
2021-04-23 01:28:41 +08:00
$this->renderable(function (NotFoundHttpException $e) {
2021-04-28 01:22:25 +08:00
if ($e->getPrevious() && $e->getPrevious() instanceof ModelNotFoundException) {
return response()->json(fail('No query result.', request()->all()), 404);
}
2021-04-23 01:28:41 +08:00
});
2021-04-02 19:48:41 +08:00
}
/**
* Prepare a JSON response for the given exception.
*
* @param \Illuminate\Http\Request $request
* @param \Throwable $e
* @return \Illuminate\Http\JsonResponse
*/
protected function prepareJsonResponse($request, Throwable $e)
{
2021-04-23 01:28:41 +08:00
$data = $request->all();
if (config('app.debug')) {
$msg = $e->getMessage() ?: get_class($e);
$data['trace'] = $e->getTraceAsString();
} else {
$msg = 'Server Error';
}
2021-04-02 19:48:41 +08:00
return new JsonResponse(
2021-04-23 01:28:41 +08:00
fail($msg, $data),
2021-04-28 01:22:25 +08:00
$this->getHttpStatusCode($e),
2021-04-02 19:48:41 +08:00
$this->isHttpException($e) ? $e->getHeaders() : [],
JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES
);
}
2021-04-28 01:22:25 +08:00
protected function getHttpStatusCode(Throwable $e)
{
if ($e instanceof \InvalidArgumentException || $e instanceof NexusException) {
return 200;
}
if ($this->isHttpException($e)) {
return $e->getStatusCode();
}
return 500;
}
2021-04-02 19:48:41 +08:00
}