CatchExceptionHandle.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher;
  4. use app\ExceptionHandle;
  5. use catcher\exceptions\CatchException;
  6. use catcher\exceptions\FailedException;
  7. use think\db\exception\DataNotFoundException;
  8. use think\db\exception\ModelNotFoundException;
  9. use think\exception\Handle;
  10. use think\exception\HttpException;
  11. use think\exception\HttpResponseException;
  12. use think\exception\ValidateException;
  13. use think\Response;
  14. use Throwable;
  15. class CatchExceptionHandle extends Handle
  16. {
  17. /**
  18. * 不需要记录信息(日志)的异常类列表
  19. * @var array
  20. */
  21. protected $ignoreReport = [
  22. HttpException::class,
  23. HttpResponseException::class,
  24. ModelNotFoundException::class,
  25. DataNotFoundException::class,
  26. ValidateException::class,
  27. ];
  28. /**
  29. * 记录异常信息(包括日志或者其它方式记录)
  30. *
  31. * @access public
  32. * @param Throwable $exception
  33. * @return void
  34. */
  35. public function report(Throwable $exception): void
  36. {
  37. // 使用内置的方式记录异常日志
  38. parent::report($exception);
  39. }
  40. /**
  41. * Render an exception into an HTTP response.
  42. *
  43. * @access public
  44. * @param \think\Request $request
  45. * @param Throwable $e
  46. * @return Response
  47. * @throws \Exception
  48. */
  49. public function render($request, Throwable $e): Response
  50. {
  51. // 其他错误交给系统处理
  52. if ($e instanceof \Exception && !$e instanceof CatchException) {
  53. $e = new FailedException($e->getMessage(), 10005, $e);
  54. }
  55. return parent::render($request, $e);
  56. }
  57. /**
  58. * 重写异常渲染页面
  59. *
  60. * @time 2020年05月22日
  61. * @param Throwable $exception
  62. * @return string
  63. */
  64. protected function renderExceptionContent(Throwable $exception): string
  65. {
  66. ob_start();
  67. $data = $this->convertExceptionToArray($exception->getPrevious() ? $exception->getPrevious() : $exception);
  68. extract($data);
  69. include $this->app->config->get('app.exception_tmpl') ?: __DIR__ . '/../../tpl/think_exception.tpl';
  70. return ob_get_clean();
  71. }
  72. }