Handler.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php
  2. namespace App\Exceptions;
  3. use ErrorException;
  4. use Exception;
  5. use Illuminate\Auth\AuthenticationException;
  6. use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
  7. use Illuminate\Http\Request;
  8. use Illuminate\Session\TokenMismatchException;
  9. use Log;
  10. use ReflectionException;
  11. use Response;
  12. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  13. class Handler extends ExceptionHandler {
  14. /**
  15. * A list of the exception types that are not reported.
  16. *
  17. * @var array
  18. */
  19. protected $dontReport = [];
  20. /**
  21. * A list of the inputs that are never flashed for validation exceptions.
  22. *
  23. * @var array
  24. */
  25. protected $dontFlash = [
  26. 'password',
  27. 'password_confirmation',
  28. ];
  29. /**
  30. * Report or log an exception.
  31. *
  32. * @param Exception $exception
  33. *
  34. * @return mixed|void
  35. * @throws Exception
  36. */
  37. public function report(Exception $exception) {
  38. // 记录异常来源
  39. Log::info('异常来源:'.get_class($exception));
  40. // 调试模式下记录错误详情
  41. if(config('app.debug')){
  42. Log::info($exception);
  43. }
  44. parent::report($exception);
  45. }
  46. /**
  47. * Render an exception into an HTTP response.
  48. *
  49. * @param Request $request
  50. * @param Exception $exception
  51. *
  52. * @return \Illuminate\Http\JsonResponse|\Illuminate\Http\Response|\Symfony\Component\HttpFoundation\Response
  53. */
  54. public function render($request, Exception $exception) {
  55. // 调试模式下直接返回错误信息
  56. if(config('app.debug')){
  57. return parent::render($request, $exception);
  58. }
  59. // 捕获访问异常
  60. if($exception instanceof NotFoundHttpException){
  61. Log::info("异常请求:".$request->fullUrl().",IP:".getClientIp());
  62. if($request->ajax()){
  63. return Response::json(['status' => 'fail', 'message' => trans('error.MissingPage')]);
  64. }
  65. return Response::view('auth.error', ['message' => trans('error.MissingPage')]);
  66. }
  67. // 捕获身份校验异常
  68. if($exception instanceof AuthenticationException){
  69. if($request->ajax()){
  70. return Response::json(['status' => 'fail', 'message' => trans('error.Unauthorized')]);
  71. }
  72. return Response::view('auth.error', ['message' => trans('error.Unauthorized')]);
  73. }
  74. // 捕获CSRF异常
  75. if($exception instanceof TokenMismatchException){
  76. if($request->ajax()){
  77. return Response::json([
  78. 'status' => 'fail',
  79. 'message' => trans('error.RefreshPage').'<a href="/login" target="_blank">'.trans('error.Refresh').'</a>'
  80. ]);
  81. }
  82. return Response::view('auth.error', [
  83. 'message' => trans('error.RefreshPage').'<a href="/login" target="_blank">'.trans('error.Refresh').'</a>'
  84. ]);
  85. }
  86. // 捕获反射异常
  87. if($exception instanceof ReflectionException){
  88. if($request->ajax()){
  89. return Response::json(['status' => 'fail', 'message' => trans('error.SystemError')]);
  90. }
  91. return Response::view('auth.error', ['message' => trans('error.SystemError')]);
  92. }
  93. // 捕获系统错误异常
  94. if($exception instanceof ErrorException){
  95. if($request->ajax()){
  96. return Response::json([
  97. 'status' => 'fail',
  98. 'message' => trans('error.SystemError').', '.trans('error.Visit').'<a href="/logs" target="_blank">'.trans('error.log').'</a>'
  99. ]);
  100. }
  101. return Response::view('auth.error', [
  102. 'message' => trans('error.SystemError').', '.trans('error.Visit').'<a href="/logs" target="_blank">'.trans('error.log').'</a>'
  103. ]);
  104. }
  105. return parent::render($request, $exception);
  106. }
  107. }