Base.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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 Firebase\JWT\JWT;
  16. use think\Controller;
  17. use think\Db;
  18. use think\Exception;
  19. use think\exception\HttpResponseException;
  20. use think\Request;
  21. use think\Response;
  22. use function AlibabaCloud\Client\value;
  23. /**
  24. * 会员管理基类
  25. * Class Member
  26. * @package app\store\controller\api
  27. */
  28. class Base extends Controller
  29. {
  30. protected $user_id = 65;
  31. protected $page; // 页数
  32. protected $page_num;// 每页多少
  33. protected $off_set;
  34. protected $is_commit = true; // 事务是否提交
  35. protected $ret_msg = ''; // 返回提示信息
  36. protected $is_test = false;
  37. protected $need_login = [];
  38. public function initialize(){
  39. $this->page = input('page',1);
  40. $this->page_num = input('page_num',20);
  41. $this->off_set = $this->page * $this->page_num - $this->page_num;
  42. $this->is_test = input('test',0);// 测试用的
  43. $path = explode('/',$this->request->path());
  44. if(!empty($this->need_login) && in_array(end($path),$this->need_login)) $this->checkLogin();
  45. }
  46. //校验jwt权限API
  47. protected function checkLogin()
  48. {
  49. $authorization = app()->request->header('Authorization');
  50. if(empty($authorization) || $authorization == null){
  51. if($this->is_test == 1) {
  52. $this->user_id = 65 ;
  53. return true;
  54. }
  55. $this->error('Token不存在,拒绝访问--','',0,-1);
  56. }
  57. $key = md5(config('app.jwt'));
  58. try {
  59. $check_authorization = JWT::decode($authorization, $key, array('HS256'));
  60. if($check_authorization['code'] !=200) $this->exception($check_authorization['msg']);
  61. $authInfo = json_decode(json_encode($check_authorization['data']), true);
  62. if (!empty($authInfo['uid'])) {
  63. $member = Db::name('store_member')->field('status,is_deleted')->where('id',$authInfo['uid'])->find();
  64. if($member['is_deleted']) $this->error('会员不存在','',0);
  65. if($member['status']){
  66. $this->user_id = $authInfo['uid'];
  67. return $this->user_id;
  68. }else{
  69. $this->error('该会员已被禁用','',0,-1);
  70. }
  71. } else {
  72. $this->error('Token验证不通过,用户不存在','',0,-1);
  73. }
  74. } catch (\Exception $e) {
  75. $this->error($e->getMessage(),'',0,-1);
  76. }
  77. }
  78. protected function setUid(){
  79. $authorization = app()->request->header('Authorization');
  80. $key = md5(config('app.jwt'));
  81. if(empty($authorization) || $authorization == null) return false;
  82. try {
  83. $check_authorization = JWT::decode($authorization, $key, array('HS256'));
  84. if($check_authorization['code'] !=200) $this->exception($check_authorization['msg']);
  85. $authInfo = json_decode(json_encode($check_authorization['data']), true);
  86. if (!empty($authInfo['uid'])) {
  87. $member = Db::name('store_member')->field('status')->where('id',$authInfo['uid'])->find();
  88. if($member['status']){
  89. $this->user_id = $authInfo['uid'];
  90. $this->user_id;
  91. return true;
  92. }
  93. }
  94. } catch (\Exception $e) {
  95. return false;
  96. //$this->error($e->getMessage(),'',0,-1);
  97. }
  98. }
  99. // 获取用户信息
  100. function userInfo($field =''){
  101. if(!$this->user_id) return [];
  102. return $field ? Db::name('store_member')->field($field)->find($this->user_id) : Db::name('store_member')->find($this->user_id);
  103. }
  104. // 验证短信验证码
  105. protected function checkPhoneCode($phone,$code){
  106. //return true;
  107. $sel_time =date('Y-m-d H:i:s',time()-600);
  108. $store_member_sms = Db::name('store_member_sms')
  109. ->field('id,code')->where('phone',$phone)
  110. ->where('create_at','> time',$sel_time)
  111. ->where('used',0)->order('id desc')->find();
  112. return !empty($store_member_sms) && $store_member_sms['code'] == $code ? $store_member_sms['id'] :0;
  113. }
  114. // 更新验证码状态
  115. protected function updatePhoneCode($code_id){
  116. Db::name('store_member_sms')->where('id',$code_id)->update(['used'=>1]);
  117. }
  118. /**
  119. * 操作成功返回的数据
  120. * @param string $msg 提示信息
  121. * @param mixed $data 要返回的数据
  122. * @param int $code 错误码,默认为1
  123. * @param string $type 输出类型
  124. * @param array $header 发送的 Header 信息
  125. */
  126. protected function success($msg = 'ok', $data = null , $is_login = 1, $code = 1, $type = null, array $header = [])
  127. {
  128. $this->results($msg, $data, $is_login, $code, $type, $header);
  129. }
  130. /**
  131. * 操作失败返回的数据
  132. * @param string $msg 提示信息
  133. * @param mixed $data 要返回的数据
  134. * @param int $code 错误码,默认为0
  135. * @param string $type 输出类型
  136. * @param array $header 发送的 Header 信息
  137. */
  138. protected function error($msg = '', $data = null, $is_login = 1, $code = 0, $type = null, array $header = [])
  139. {
  140. if(empty($this->user_id)){
  141. $is_login = 0;
  142. }
  143. $this->results($msg, $data, $is_login, $code, $type, $header);
  144. }
  145. /**
  146. * 返回封装后的 API 数据到客户端
  147. * @access protected
  148. * @param mixed $msg 提示信息
  149. * @param mixed $data 要返回的数据
  150. * @param int $code 错误码,默认为0
  151. * @param string $type 输出类型,支持json/xml/jsonp
  152. * @param array $header 发送的 Header 信息
  153. * @return void
  154. * @throws HttpResponseException
  155. */
  156. protected function results($msg, $data = null, $is_login, $code = 0, $type = null, array $header = [])
  157. {
  158. $result = [
  159. 'code' => $code,
  160. 'is_login' => $is_login,
  161. 'msg' => $msg,
  162. 'time' => \think\facade\Request::instance()->server('REQUEST_TIME'),
  163. 'data' => $data,
  164. ];
  165. // 如果未设置类型则自动判断
  166. $type = $type ? $type : 'json';
  167. if (isset($header['statuscode']))
  168. {
  169. $code = $header['statuscode'];
  170. unset($header['statuscode']);
  171. }
  172. else
  173. {
  174. //未设置状态码,根据code值判断
  175. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  176. }
  177. $response = Response::create($result, $type, $code)->header($header);
  178. throw new HttpResponseException($response);
  179. }
  180. //token加密
  181. public function createJwt($uid)
  182. {
  183. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  184. $time = time(); //签发时间
  185. $expire = $time + config('app.jwt_time'); //过期时间
  186. $token = array(
  187. "uid" => $uid,
  188. "iss" => "https://zain.com",//签发组织
  189. "aud" => "https://zain.com", //签发作者
  190. "iat" => $time,
  191. "nbf" => $time,
  192. "exp" => $expire
  193. );
  194. $jwt = JWT::encode($token, $key);
  195. return $jwt;
  196. }
  197. protected function exception($msg){
  198. throw new Exception($msg);
  199. }
  200. // 事务返回
  201. protected function transReturn($data = []){
  202. $this->is_commit ? $this->success($this->ret_msg,$data):$this->error($this->ret_msg);
  203. }
  204. }