Base.php 6.1 KB

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