ExceptionHandle.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. namespace app\api\library;
  3. use app\service\company_wechat\Webhook;
  4. use app\UserException;
  5. use Exception;
  6. use think\db\exception\DataNotFoundException;
  7. use think\db\exception\ModelNotFoundException;
  8. use think\exception\Handle;
  9. /**
  10. * 自定义API模块的错误显示
  11. */
  12. class ExceptionHandle extends Handle
  13. {
  14. protected $ignoreReport = [
  15. '\\think\\exception\\HttpException',
  16. UserException::class,
  17. \think\exception\ValidateException::class,
  18. ];
  19. public function render(Exception $e)
  20. {
  21. $statuscode = $code = 0;
  22. $msg = '服务器错误';
  23. // 验证异常
  24. if ($e instanceof \think\exception\ValidateException) {
  25. $code = 0;
  26. $statuscode = 200;
  27. $msg = $e->getError();
  28. }
  29. // Http异常
  30. elseif ($e instanceof \think\exception\HttpException) {
  31. $statuscode = $code = $e->getStatusCode();
  32. }
  33. elseif ($e instanceof UserException) {
  34. $code = 0;
  35. $msg = $e->getMessage();
  36. $statuscode = 200;
  37. }
  38. elseif ($e instanceof ModelNotFoundException) {
  39. $msg = '查找的数据不存在';
  40. }else{
  41. //Webhook::push($e);
  42. }
  43. if(config('app_debug')){
  44. $msg=$e->getMessage();
  45. }
  46. $data=null;
  47. if($e instanceof UserException){
  48. $data=$e->data;
  49. }
  50. // 在生产环境下返回code信息
  51. //if (!\think\Config::get('app_debug')) {
  52. if(request()->isAjax() || strpos(request()->header('Accept'),'/json')!==false) {
  53. //$msg = 'An error occurred';
  54. return json(['code' => $code, 'msg' => $msg, 'time' => time(), 'data' => $data], $statuscode);
  55. }
  56. //}
  57. //其它此交由系统处理
  58. return parent::render($e);
  59. }
  60. }