Base.php 6.0 KB

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