Handler.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. * 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 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', 'data' => '', 'message' => trans('error.MissingPage')]);
  64. }else{
  65. return Response::view('auth.error', ['message' => trans('error.MissingPage')]);
  66. }
  67. }
  68. // 捕获身份校验异常
  69. if($exception instanceof AuthenticationException){
  70. if($request->ajax()){
  71. return Respone::json(['status' => 'fail', 'data' => '', 'message' => trans('error.Unauthorized')]);
  72. }else{
  73. return Respone::view('auth.error', ['message' => trans('error.Unauthorized')]);
  74. }
  75. }
  76. // 捕获CSRF异常
  77. if($exception instanceof TokenMismatchException){
  78. if($request->ajax()){
  79. return Respone::json([
  80. 'status' => 'fail',
  81. 'data' => '',
  82. 'message' => trans('error.RefreshPage').'<a href="/login" target="_blank">'.trans('error.Refresh').'</a>'
  83. ]);
  84. }else{
  85. return Respone::view('auth.error', [
  86. 'message' => trans('error.RefreshPage').'<a href="/login" target="_blank">'.trans('error.Refresh').'</a>'
  87. ]);
  88. }
  89. }
  90. // 捕获反射异常
  91. if($exception instanceof ReflectionException){
  92. if($request->ajax()){
  93. return Respone::json(['status' => 'fail', 'data' => '', 'message' => trans('error.SystemError')]);
  94. }else{
  95. return Respone::view('auth.error', ['message' => trans('error.SystemError')]);
  96. }
  97. }
  98. // 捕获系统错误异常
  99. if($exception instanceof ErrorException){
  100. if($request->ajax()){
  101. return Respone::json([
  102. 'status' => 'fail',
  103. 'data' => '',
  104. 'message' => trans('error.SystemError').', '.trans('error.Visit').'<a href="/logs" target="_blank">'.trans('error.log').'</a>'
  105. ]);
  106. }else{
  107. return Respone::view('auth.error', [
  108. 'message' => trans('error.SystemError').', '.trans('error.Visit').'<a href="/logs" target="_blank">'.trans('error.log').'</a>'
  109. ]);
  110. }
  111. }
  112. return parent::render($request, $exception);
  113. }
  114. }