123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- namespace App\Exceptions;
- use End01here\EasySms\Exceptions\Exception as EndException;
- use Exception;
- use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
- class Handler extends ExceptionHandler
- {
- /**
- * A list of the exception types that are not reported.
- *
- * @var array
- */
- protected $dontReport = [
- FrequencyException::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(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)
- {
- if (!env('APP_DEBUG')) {
- if ($exception instanceof FrequencyException) {
- $result = [
- "msg" => __($exception->getMessage()),
- "data" => [],
- "code" => $exception->getCode()
- ];
- return response()->json($result);
- }elseif ($exception instanceof EndException){
- $result = [
- "msg" => __($exception->getMessage()),
- "data" => [],
- "code" => $exception->getCode()
- ];
- return response()->json($result);
- }elseif ($exception instanceof MemberAuthException){
- $result = [
- "msg" => __('auth.no_login'),
- "data" => [],
- "code" => 401
- ];
- return response()->json($result);
- }elseif ($exception instanceof ShopAuthException){
- $result = [
- "msg" =>__('auth.no_login'),
- "data" => [],
- "code" => 401
- ];
- return response()->json($result);
- } else {
- $result = [
- "msg" => __('sys.error'),
- "data" => [],
- "code" => 0
- ];
- return response()->json($result);
- }
- }
- return parent::render($request, $exception);
- }
- }
|