Base.php 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\api\controller;
  15. use app\common\controller\Api;
  16. use Firebase\JWT\JWT;
  17. use think\Controller;
  18. use think\Db;
  19. use think\Exception;
  20. use think\exception\HttpResponseException;
  21. use think\Request;
  22. use think\Response;
  23. use think\cache\driver\Redis;
  24. /**
  25. * 会员管理基类
  26. * Class Member
  27. * @package app\store\controller\api
  28. */
  29. class Base extends Controller
  30. {
  31. protected $uid;
  32. protected $is_test = false;
  33. protected $page; // 页数
  34. protected $page_num;
  35. protected $off_set;
  36. public function initialize(){
  37. $this->page = input('page',1);
  38. $this->page_num = input('page_num',20);
  39. $this->off_set = $this->page * $this->page_num - $this->page_num;
  40. $this->is_test = input('test',0);
  41. $user_agent = app()->request->header('user-agent');
  42. if($user_agent){
  43. $agent_arr = explode(';',$user_agent);
  44. if(isset($agent_arr[1])){
  45. $check_version = explode('/',$agent_arr[1]);
  46. if(isset($check_version[0]) && $check_version[0] == 'app_version_code' && isset($check_version[1]) && $check_version[1] < 9) $this->error('请更新app',null,-1);
  47. }
  48. }
  49. }
  50. //校验jwt权限API
  51. protected function check_login()
  52. {
  53. //$this->error('系统繁忙,请稍后再试...');
  54. $authorization = app()->request->header('Authorization');
  55. if(empty($authorization) || $authorization == null){
  56. if($this->is_test == 1) {
  57. // $this->uid = input('user_id') ? input('user_id') : 965;
  58. //return true;
  59. }
  60. $this->error('Token不存在,拒绝访问',null,-1);
  61. }
  62. $key = md5(config('app.jwt'));
  63. try {
  64. $jwtAuth = json_encode(JWT::decode($authorization, $key, array('HS256')));
  65. $authInfo = json_decode($jwtAuth, true);
  66. if (!empty($authInfo['uid'])) {
  67. $member = Db::name('store_member')->field('status,lock_end')->where('id',$authInfo['uid'])->find();
  68. if(isset($member['lock_end']) && $member['lock_end'] > time()) $this->error('会员已锁定,'.date('Y-m-d H:i:s',$member['lock_end']).'解锁',null,-1);
  69. // 请求限制 st
  70. $redis = new Redis(['select'=>2]);
  71. $redis_key = 'request_limit_'.$authInfo['uid'];
  72. $limit_num = $redis->get($redis_key);
  73. if (!$limit_num){
  74. $redis->setex($redis_key, 10, 1);
  75. }else{
  76. if ($limit_num > 90){
  77. Db::name('store_member')->where('id',$authInfo['uid'])->update(['lock_st'=>time(),'lock_end'=>time()+7200]);
  78. $this->error('请求过快');
  79. }else{
  80. $ttl = $redis->ttl($redis_key);
  81. if($ttl < 0 && $ttl == '-1'){
  82. $redis->del($redis_key);
  83. } else if($ttl > 0){
  84. $redis->Incr($redis_key);
  85. }
  86. }
  87. }
  88. // 请求限制 end
  89. if($member['status']){
  90. $this->uid = $authInfo['uid'];
  91. return $this->uid;
  92. }else{
  93. $this->error('该会员已被禁用',null,-1);
  94. }
  95. } else {
  96. $this->error('Token验证不通过,用户不存在',null,-1);
  97. }
  98. } catch (\Firebase\JWT\SignatureInvalidException $e) {
  99. $this->error('Token无效',null,-1);
  100. } catch (\Firebase\JWT\ExpiredException $e) {
  101. $this->error('Token过期',null,-1);
  102. } catch (Exception $e) {
  103. return $e;
  104. }
  105. }
  106. protected function set_uid(){
  107. $authorization = app()->request->header('Authorization');
  108. $key = md5(config('app.jwt'));
  109. if(empty($authorization) || $authorization == null){
  110. return false;
  111. }
  112. $jwtAuth = json_encode(JWT::decode($authorization, $key, array('HS256')));
  113. $authInfo = json_decode($jwtAuth, true);
  114. if (!empty($authInfo['uid'])) {
  115. $member = Db::name('store_member')->field('status')->where('id',$authInfo['uid'])->find();
  116. if($member['status']){
  117. $this->uid = $authInfo['uid'];
  118. return $this->uid;
  119. }
  120. }
  121. }
  122. /**
  123. * 操作成功返回的数据
  124. * @param string $msg 提示信息
  125. * @param mixed $data 要返回的数据
  126. * @param int $code 错误码,默认为1
  127. * @param string $type 输出类型
  128. * @param array $header 发送的 Header 信息
  129. */
  130. protected function success($msg = '', $data = null , $is_login = 1, $code = 1, $type = null, array $header = [])
  131. {
  132. $this->results($msg, $data, $is_login, $code, $type, $header);
  133. }
  134. /**
  135. * 操作失败返回的数据
  136. * @param string $msg 提示信息
  137. * @param mixed $data 要返回的数据
  138. * @param int $code 错误码,默认为0
  139. * @param string $type 输出类型
  140. * @param array $header 发送的 Header 信息
  141. */
  142. protected function error($msg = '', $data = null, $is_login = 1, $code = 0, $type = null, array $header = [])
  143. {
  144. if(empty($this->uid) && $is_login != -1 ){
  145. $is_login = 0;
  146. }
  147. $this->results($msg, $data, $is_login, $code, $type, $header);
  148. }
  149. /**
  150. * 返回封装后的 API 数据到客户端
  151. * @access protected
  152. * @param mixed $msg 提示信息
  153. * @param mixed $data 要返回的数据
  154. * @param int $code 错误码,默认为0
  155. * @param string $type 输出类型,支持json/xml/jsonp
  156. * @param array $header 发送的 Header 信息
  157. * @return void
  158. * @throws HttpResponseException
  159. */
  160. protected function results($msg, $data = null, $is_login, $code = 0, $type = null, array $header = [])
  161. {
  162. $result = [
  163. 'code' => $code,
  164. 'is_login' => $is_login,
  165. 'msg' => $msg,
  166. 'time' => \think\facade\Request::instance()->server('REQUEST_TIME'),
  167. 'data' => $data,
  168. ];
  169. // 如果未设置类型则自动判断
  170. $type = $type ? $type : 'json';
  171. if (isset($header['statuscode']))
  172. {
  173. $code = $header['statuscode'];
  174. unset($header['statuscode']);
  175. }
  176. else
  177. {
  178. //未设置状态码,根据code值判断
  179. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  180. }
  181. $response = Response::create($result, $type, $code)->header($header);
  182. throw new HttpResponseException($response);
  183. }
  184. protected function get_uid(){
  185. $uid = 0;
  186. $authorization = app()->request->header('Authorization');
  187. if(!empty($authorization)){
  188. $key = md5(config('app.jwt'));
  189. $jwtAuth = json_encode(JWT::decode($authorization, $key, array('HS256')));
  190. $authInfo = json_decode($jwtAuth, true);
  191. if (!empty($authInfo['uid'])) {
  192. $uid = $authInfo['uid'];
  193. }
  194. }
  195. return $uid;
  196. }
  197. }