ExceptionHandle.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace app\api\library;
  3. use Exception;
  4. use think\exception\Handle;
  5. /**
  6. * 自定义API模块的错误显示
  7. */
  8. class ExceptionHandle extends Handle
  9. {
  10. public function render(Exception $e)
  11. {
  12. // 在生产环境下返回code信息
  13. if (!\think\Config::get('api_exception')) {
  14. $statuscode = $code = 500;
  15. $msg = $e->getMessage();
  16. // 验证异常
  17. if ($e instanceof \think\exception\ValidateException) {
  18. $code = 0;
  19. $statuscode = 200;
  20. $msg = $e->getError();
  21. }
  22. // Http异常
  23. if ($e instanceof \think\exception\HttpException) {
  24. $statuscode = $code = $e->getStatusCode();
  25. $msg = $e->getMessage();
  26. }
  27. $result = ['code' => $code, 'msg' => $msg, 'time' => time(), 'data' => null];
  28. if (defined('API_REQUEST_LOG_TYPE') && defined('API_REQUEST_LOG_TYPE') == 1){
  29. LogUtil::error('result','Api-Middleware-Log','request_log',$result);
  30. LogUtil::error('ExceptionMsg','Api-Middleware-Log','request_log',$e->getMessage());
  31. LogUtil::error('Exception','Api-Middleware-Log','request_log',$e);
  32. }else{
  33. //记录app异常返回结果
  34. if(defined('API_REQUEST_ID')) { //记录app正常返回结果
  35. db('api_request_log')->where('id',API_REQUEST_ID)->update(['result'=>json_encode($result)]);
  36. }
  37. }
  38. // $result['msg'] = '网络开小差了';
  39. return json($result, $statuscode);
  40. }
  41. //其它此交由系统处理
  42. return parent::render($e);
  43. }
  44. }