Api.php 5.4 KB

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