Handler.php 3.4 KB

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