Api.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <?php
  2. namespace app\common\controller;
  3. use app\common\library\Common;
  4. use app\common\model\Config;
  5. use app\common\model\User;
  6. use think\exception\HttpResponseException;
  7. use think\facade\Request;
  8. use think\Response;
  9. /**
  10. * API控制器基类
  11. */
  12. class Api
  13. {
  14. /**
  15. * @var Request Request 实例
  16. */
  17. protected $request;
  18. /**
  19. * @var bool 验证失败是否抛出异常
  20. */
  21. protected $failException = true;
  22. /**
  23. * 默认响应输出类型,支持json/xml
  24. * @var string
  25. */
  26. protected $responseType = 'json';
  27. /**
  28. * 操作成功返回的数据
  29. * @param string $msg 提示信息
  30. * @param mixed $data 要返回的数据
  31. * @param int $code 错误码,默认为1
  32. * @param string $type 输出类型
  33. * @param array $header 发送的 Header 信息
  34. */
  35. protected function success($msg = '', $data = null , $is_login = 1,$is_disable = 0, $code = 1, $type = null, array $header = [])
  36. {
  37. $this->result($msg, $data, $is_login,$is_disable, $code, $type, $header);
  38. }
  39. /**
  40. * 操作失败返回的数据
  41. * @param string $msg 提示信息
  42. * @param mixed $data 要返回的数据
  43. * @param int $code 错误码,默认为0
  44. * @param string $type 输出类型
  45. * @param array $header 发送的 Header 信息
  46. */
  47. protected function error($msg = '', $data = null, $is_login = 1, $is_disable = 0, $code = 0, $type = null, array $header = [])
  48. {
  49. $this->result($msg, $data, $is_login, $is_disable, $code, $type, $header);
  50. }
  51. /**
  52. * 返回封装后的 API 数据到客户端
  53. * @access protected
  54. * @param mixed $msg 提示信息
  55. * @param mixed $data 要返回的数据
  56. * @param int $code 错误码,默认为0
  57. * @param string $type 输出类型,支持json/xml/jsonp
  58. * @param array $header 发送的 Header 信息
  59. * @return void
  60. * @throws HttpResponseException
  61. */
  62. protected function result($msg, $data = null, $is_login,$is_disable, $code = 0, $type = null, array $header = [])
  63. {
  64. $result = [
  65. 'code' => $code,
  66. 'is_login' => $is_login,
  67. 'is_disable' => $is_disable,
  68. 'msg' => $msg,
  69. 'time' => Request::instance()->server('REQUEST_TIME'),
  70. 'data' => $data,
  71. ];
  72. // 如果未设置类型则自动判断
  73. $type = $type ? $type : 'json';
  74. if (isset($header['statuscode']))
  75. {
  76. $code = $header['statuscode'];
  77. unset($header['statuscode']);
  78. }
  79. else
  80. {
  81. //未设置状态码,根据code值判断
  82. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  83. }
  84. $response = Response::create($result, $type, $code)->header($header);
  85. throw new HttpResponseException($response);
  86. }
  87. /**
  88. * 判断登录
  89. * @return bool
  90. */
  91. protected function check_login(){
  92. $user = app()->session->get('us');
  93. if (!$user){
  94. $this->error('请先登录','',0);
  95. }
  96. $userinfo = User::where('id',$user['id'])->find();
  97. if ($userinfo['is_del']!=1){
  98. $this->error('请先登录','',0);
  99. }
  100. if ($userinfo['status']!=1){
  101. // app()->session->clear();
  102. // app()->session->destroy();
  103. $data['disable_reason'] = $userinfo['disable_reason'];
  104. $data['disable_time'] = $userinfo['disable_time'];
  105. $this->error('账号被禁用',$data,0,1);
  106. }
  107. return true;
  108. }
  109. /**
  110. * 微信文字和图片违规检测
  111. */
  112. public static function wx_check($param,$type){
  113. $appid = Config::get_values('wechat_appid');
  114. $secret = Config::get_values('wechat_appsecret');
  115. $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$appid}&secret={$secret}";
  116. $result = Common::curlRequest($url);
  117. if ($type==1){
  118. $url2 = "https://api.weixin.qq.com/wxa/img_sec_check?access_token={$result['access_token']}";
  119. $data = ['media'=>$param];
  120. }elseif ($type==2){
  121. $url2 = "https://api.weixin.qq.com/wxa/msg_sec_check?access_token={$result['access_token']}";
  122. $data = ['content'=>$param];
  123. }
  124. $headers = ['Content-Type:application/json'];
  125. $ch = curl_init();
  126. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); // 关键点
  127. curl_setopt($ch, CURLOPT_URL, $url2);
  128. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  129. curl_setopt($ch, CURLOPT_POST, 1);
  130. curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data, JSON_UNESCAPED_UNICODE)); // 【* 关键点】
  131. $res = curl_exec($ch);
  132. curl_close($ch);
  133. $res = json_decode($res,true);
  134. return $res;
  135. }
  136. }