ExceptionHandle.php 1.7 KB

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