Base.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. /**
  24. * 会员管理基类
  25. * Class Member
  26. * @package app\store\controller\api
  27. */
  28. class Base extends Controller
  29. {
  30. protected $uid = 958;
  31. protected $is_test = false;
  32. protected $page; // 页数
  33. protected $page_num;
  34. protected $off_set;
  35. public function initialize(){
  36. $this->page = input('page',1);
  37. $this->page_num = input('page_num',20);
  38. $this->off_set = $this->page * $this->page_num - $this->page_num;
  39. $this->is_test = input('test',0);
  40. }
  41. //校验jwt权限API
  42. protected function check_login()
  43. {
  44. $authorization = app()->request->header('Authorization');
  45. if(empty($authorization) || $authorization == null){
  46. if($this->is_test == 1) {
  47. $this->uid = input('user_id') ? input('user_id') : 958;
  48. return true;
  49. }
  50. $this->error('Token不存在,拒绝访问',null,-1);
  51. }
  52. $key = md5(config('app.jwt'));
  53. try {
  54. $jwtAuth = json_encode(JWT::decode($authorization, $key, array('HS256')));
  55. $authInfo = json_decode($jwtAuth, true);
  56. if (!empty($authInfo['uid'])) {
  57. $member = Db::name('store_member')->field('status')->where('id',$authInfo['uid'])->find();
  58. if(isset($member['lock_end']) && $member['lock_end'] > time()) $this->error('会员已锁定,'.date('Y-m-d H:i:s',$member['lock_end']).'解锁',null,-1);
  59. if($member['status']){
  60. $this->uid = $authInfo['uid'];
  61. return $this->uid;
  62. }else{
  63. $this->error('该会员已被禁用',null,-1);
  64. }
  65. } else {
  66. $this->error('Token验证不通过,用户不存在',null,-1);
  67. }
  68. } catch (\Firebase\JWT\SignatureInvalidException $e) {
  69. $this->error('Token无效',null,-1);
  70. } catch (\Firebase\JWT\ExpiredException $e) {
  71. $this->error('Token过期',null,-1);
  72. } catch (Exception $e) {
  73. return $e;
  74. }
  75. }
  76. protected function set_uid(){
  77. $authorization = app()->request->header('Authorization');
  78. $key = md5(config('app.jwt'));
  79. if(empty($authorization) || $authorization == null){
  80. return false;
  81. }
  82. $jwtAuth = json_encode(JWT::decode($authorization, $key, array('HS256')));
  83. $authInfo = json_decode($jwtAuth, true);
  84. if (!empty($authInfo['uid'])) {
  85. $member = Db::name('store_member')->field('status')->where('id',$authInfo['uid'])->find();
  86. if($member['status']){
  87. $this->uid = $authInfo['uid'];
  88. return $this->uid;
  89. }
  90. }
  91. }
  92. /**
  93. * 操作成功返回的数据
  94. * @param string $msg 提示信息
  95. * @param mixed $data 要返回的数据
  96. * @param int $code 错误码,默认为1
  97. * @param string $type 输出类型
  98. * @param array $header 发送的 Header 信息
  99. */
  100. protected function success($msg = '', $data = null , $is_login = 1, $code = 1, $type = null, array $header = [])
  101. {
  102. $this->results($msg, $data, $is_login, $code, $type, $header);
  103. }
  104. /**
  105. * 操作失败返回的数据
  106. * @param string $msg 提示信息
  107. * @param mixed $data 要返回的数据
  108. * @param int $code 错误码,默认为0
  109. * @param string $type 输出类型
  110. * @param array $header 发送的 Header 信息
  111. */
  112. protected function error($msg = '', $data = null, $is_login = 1, $code = 0, $type = null, array $header = [])
  113. {
  114. if(empty($this->uid)){
  115. $is_login = 0;
  116. }
  117. $this->results($msg, $data, $is_login, $code, $type, $header);
  118. }
  119. /**
  120. * 返回封装后的 API 数据到客户端
  121. * @access protected
  122. * @param mixed $msg 提示信息
  123. * @param mixed $data 要返回的数据
  124. * @param int $code 错误码,默认为0
  125. * @param string $type 输出类型,支持json/xml/jsonp
  126. * @param array $header 发送的 Header 信息
  127. * @return void
  128. * @throws HttpResponseException
  129. */
  130. protected function results($msg, $data = null, $is_login, $code = 0, $type = null, array $header = [])
  131. {
  132. $result = [
  133. 'code' => $code,
  134. 'is_login' => $is_login,
  135. 'msg' => $msg,
  136. 'time' => \think\facade\Request::instance()->server('REQUEST_TIME'),
  137. 'data' => $data,
  138. ];
  139. // 如果未设置类型则自动判断
  140. $type = $type ? $type : 'json';
  141. if (isset($header['statuscode']))
  142. {
  143. $code = $header['statuscode'];
  144. unset($header['statuscode']);
  145. }
  146. else
  147. {
  148. //未设置状态码,根据code值判断
  149. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  150. }
  151. $response = Response::create($result, $type, $code)->header($header);
  152. throw new HttpResponseException($response);
  153. }
  154. protected function get_uid(){
  155. $uid = 0;
  156. $authorization = app()->request->header('Authorization');
  157. if(!empty($authorization)){
  158. $key = md5(config('app.jwt'));
  159. $jwtAuth = json_encode(JWT::decode($authorization, $key, array('HS256')));
  160. $authInfo = json_decode($jwtAuth, true);
  161. if (!empty($authInfo['uid'])) {
  162. $uid = $authInfo['uid'];
  163. }
  164. }
  165. return $uid;
  166. }
  167. }