Base.php 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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. //$this->error('维护中......');
  42. }
  43. //校验jwt权限API
  44. protected function check_login()
  45. {
  46. //$this->error('系统繁忙,请稍后再试...');
  47. $authorization = app()->request->header('Authorization');
  48. if(empty($authorization) || $authorization == null){
  49. if($this->is_test == 1) {
  50. // $this->uid = input('user_id') ? input('user_id') : 965;
  51. // return true;
  52. }
  53. $this->error('Token不存在,拒绝访问',null,-1);
  54. }
  55. $key = md5(config('app.jwt'));
  56. try {
  57. $jwtAuth = json_encode(JWT::decode($authorization, $key, array('HS256')));
  58. $authInfo = json_decode($jwtAuth, true);
  59. if (!empty($authInfo['uid'])) {
  60. $member = Db::name('store_member')->field('status,lock_end')->where('id',$authInfo['uid'])->find();
  61. if(isset($member['lock_end']) && $member['lock_end'] > time()) $this->error('会员已锁定,'.date('Y-m-d H:i:s',$member['lock_end']).'解锁',null,-1);
  62. // 请求限制 st
  63. $redis = new Redis(['select'=>2]);
  64. $redis_key = 'request_limit_'.$authInfo['uid'];
  65. $limit_num = $redis->get($redis_key);
  66. if (!$limit_num){
  67. $redis->setex($redis_key, 10, 1);
  68. }else{
  69. if ($limit_num > 60){
  70. Db::name('store_member')->where('id',$authInfo['uid'])->update(['status'=>0]);
  71. $this->error('请求过快');
  72. }else{
  73. $ttl = $redis->ttl($redis_key);
  74. if($ttl < 0 && $ttl == '-1'){
  75. $redis->del($redis_key);
  76. } else if($ttl > 0){
  77. $redis->Incr($redis_key);
  78. }
  79. }
  80. }
  81. // 请求限制 end
  82. if($member['status']){
  83. $this->uid = $authInfo['uid'];
  84. return $this->uid;
  85. }else{
  86. $this->error('该会员已被禁用',null,-1);
  87. }
  88. } else {
  89. $this->error('Token验证不通过,用户不存在',null,-1);
  90. }
  91. } catch (\Firebase\JWT\SignatureInvalidException $e) {
  92. $this->error('Token无效',null,-1);
  93. } catch (\Firebase\JWT\ExpiredException $e) {
  94. $this->error('Token过期',null,-1);
  95. } catch (Exception $e) {
  96. return $e;
  97. }
  98. }
  99. protected function set_uid(){
  100. $authorization = app()->request->header('Authorization');
  101. $key = md5(config('app.jwt'));
  102. if(empty($authorization) || $authorization == null){
  103. return false;
  104. }
  105. $jwtAuth = json_encode(JWT::decode($authorization, $key, array('HS256')));
  106. $authInfo = json_decode($jwtAuth, true);
  107. if (!empty($authInfo['uid'])) {
  108. $member = Db::name('store_member')->field('status')->where('id',$authInfo['uid'])->find();
  109. if($member['status']){
  110. $this->uid = $authInfo['uid'];
  111. return $this->uid;
  112. }
  113. }
  114. }
  115. /**
  116. * 操作成功返回的数据
  117. * @param string $msg 提示信息
  118. * @param mixed $data 要返回的数据
  119. * @param int $code 错误码,默认为1
  120. * @param string $type 输出类型
  121. * @param array $header 发送的 Header 信息
  122. */
  123. protected function success($msg = '', $data = null , $is_login = 1, $code = 1, $type = null, array $header = [])
  124. {
  125. $this->results($msg, $data, $is_login, $code, $type, $header);
  126. }
  127. /**
  128. * 操作失败返回的数据
  129. * @param string $msg 提示信息
  130. * @param mixed $data 要返回的数据
  131. * @param int $code 错误码,默认为0
  132. * @param string $type 输出类型
  133. * @param array $header 发送的 Header 信息
  134. */
  135. protected function error($msg = '', $data = null, $is_login = 1, $code = 0, $type = null, array $header = [])
  136. {
  137. if(empty($this->uid) && $is_login != -1 ){
  138. $is_login = 0;
  139. }
  140. $this->results($msg, $data, $is_login, $code, $type, $header);
  141. }
  142. /**
  143. * 返回封装后的 API 数据到客户端
  144. * @access protected
  145. * @param mixed $msg 提示信息
  146. * @param mixed $data 要返回的数据
  147. * @param int $code 错误码,默认为0
  148. * @param string $type 输出类型,支持json/xml/jsonp
  149. * @param array $header 发送的 Header 信息
  150. * @return void
  151. * @throws HttpResponseException
  152. */
  153. protected function results($msg, $data = null, $is_login, $code = 0, $type = null, array $header = [])
  154. {
  155. $result = [
  156. 'code' => $code,
  157. 'is_login' => $is_login,
  158. 'msg' => $msg,
  159. 'time' => \think\facade\Request::instance()->server('REQUEST_TIME'),
  160. 'data' => $data,
  161. ];
  162. // 如果未设置类型则自动判断
  163. $type = $type ? $type : 'json';
  164. if (isset($header['statuscode']))
  165. {
  166. $code = $header['statuscode'];
  167. unset($header['statuscode']);
  168. }
  169. else
  170. {
  171. //未设置状态码,根据code值判断
  172. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  173. }
  174. $response = Response::create($result, $type, $code)->header($header);
  175. throw new HttpResponseException($response);
  176. }
  177. protected function get_uid(){
  178. $uid = 0;
  179. $authorization = app()->request->header('Authorization');
  180. if(!empty($authorization)){
  181. $key = md5(config('app.jwt'));
  182. $jwtAuth = json_encode(JWT::decode($authorization, $key, array('HS256')));
  183. $authInfo = json_decode($jwtAuth, true);
  184. if (!empty($authInfo['uid'])) {
  185. $uid = $authInfo['uid'];
  186. }
  187. }
  188. return $uid;
  189. }
  190. }