Base.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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 = 5;
  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. /**
  72. * 操作成功返回的数据
  73. * @param string $msg 提示信息
  74. * @param mixed $data 要返回的数据
  75. * @param int $code 错误码,默认为1
  76. * @param string $type 输出类型
  77. * @param array $header 发送的 Header 信息
  78. */
  79. protected function success($msg = '', $data = null , $is_login = 1, $code = 1, $type = null, array $header = [])
  80. {
  81. $this->results($msg, $data, $is_login, $code, $type, $header);
  82. }
  83. /**
  84. * 操作失败返回的数据
  85. * @param string $msg 提示信息
  86. * @param mixed $data 要返回的数据
  87. * @param int $code 错误码,默认为0
  88. * @param string $type 输出类型
  89. * @param array $header 发送的 Header 信息
  90. */
  91. protected function error($msg = '', $data = null, $is_login = 1, $code = 0, $type = null, array $header = [])
  92. {
  93. if(empty($this->uid)){
  94. $is_login = 0;
  95. }
  96. $this->results($msg, $data, $is_login, $code, $type, $header);
  97. }
  98. /**
  99. * 返回封装后的 API 数据到客户端
  100. * @access protected
  101. * @param mixed $msg 提示信息
  102. * @param mixed $data 要返回的数据
  103. * @param int $code 错误码,默认为0
  104. * @param string $type 输出类型,支持json/xml/jsonp
  105. * @param array $header 发送的 Header 信息
  106. * @return void
  107. * @throws HttpResponseException
  108. */
  109. protected function results($msg, $data = null, $is_login, $code = 0, $type = null, array $header = [])
  110. {
  111. $result = [
  112. 'code' => $code,
  113. 'is_login' => $is_login,
  114. 'msg' => $msg,
  115. 'time' => \think\facade\Request::instance()->server('REQUEST_TIME'),
  116. 'data' => $data,
  117. ];
  118. // 如果未设置类型则自动判断
  119. $type = $type ? $type : 'json';
  120. if (isset($header['statuscode']))
  121. {
  122. $code = $header['statuscode'];
  123. unset($header['statuscode']);
  124. }
  125. else
  126. {
  127. //未设置状态码,根据code值判断
  128. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  129. }
  130. $response = Response::create($result, $type, $code)->header($header);
  131. throw new HttpResponseException($response);
  132. }
  133. protected function get_uid(){
  134. $uid = 0;
  135. $authorization = app()->request->header('Authorization');
  136. if(!empty($authorization)){
  137. $key = md5(config('app.jwt'));
  138. $jwtAuth = json_encode(JWT::decode($authorization, $key, array('HS256')));
  139. $authInfo = json_decode($jwtAuth, true);
  140. if (!empty($authInfo['uid'])) {
  141. $uid = $authInfo['uid'];
  142. }
  143. }
  144. return $uid;
  145. }
  146. }