Base.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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\model\UserFacility;
  16. use app\common\service\UserSynth;
  17. use Firebase\JWT\JWT;
  18. use think\cache\driver\Redis;
  19. use think\Controller;
  20. use think\Db;
  21. use think\Exception;
  22. use think\exception\HttpResponseException;
  23. use think\Request;
  24. use think\Response;
  25. use function AlibabaCloud\Client\value;
  26. use think\facade\Hook;
  27. /**
  28. * 会员管理基类
  29. * Class Member
  30. * @package app\store\controller\api
  31. */
  32. class Base extends Controller
  33. {
  34. protected $user_id;// 权限id
  35. protected $page; // 页数
  36. protected $page_num;// 每页多少
  37. protected $off_set;
  38. protected $is_commit = true; // 事务是否提交
  39. protected $ret_msg = ''; // 返回提示信息
  40. protected $is_test = false;
  41. protected $need_login = [];
  42. protected $account_id;// 账号id
  43. public function initialize(){
  44. $this->page = input('page',1);
  45. $this->page_num = input('page_num',20);
  46. $this->off_set = $this->page * $this->page_num - $this->page_num;
  47. $this->is_test = input('test',0);// 测试用的
  48. $path = explode('/',$this->request->path());
  49. if( input('user_id')) $this->user_id = input('user_id');
  50. if(!empty($this->need_login) && in_array(end($path),$this->need_login)) $this->checkLogin();
  51. //if($this->user_id == 97) $this->user_id = 83;
  52. // 钩子注册
  53. $tags = config('tags.');
  54. if(!empty($tags)) {
  55. foreach ($tags as $tag => $behavior) {
  56. // 数组反转 保证最上面的行为优先级最高
  57. $behavior = array_reverse($behavior);
  58. foreach ($behavior as $be) {
  59. Hook::add($tag, $be, true);
  60. }
  61. }
  62. }
  63. }
  64. //校验jwt权限API
  65. protected function checkLogin()
  66. {
  67. $authorization = app()->request->header('Authorization');
  68. if(empty($authorization) || $authorization == null){
  69. if($this->is_test == 1) {
  70. $this->user_id = input('user_id') ? input('user_id') : 22;
  71. return true;
  72. }
  73. $this->error('Token不存在,拒绝访问--','',0,-1);
  74. }
  75. $key = md5(config('app.jwt'));
  76. try {
  77. $check_authorization = JWT::decode($authorization, $key, array('HS256'));
  78. if($check_authorization['code'] !=200) $this->exception($check_authorization['msg']);
  79. $authInfo = json_decode(json_encode($check_authorization['data']), true);
  80. if (!empty($authInfo['uid'])) {
  81. $this->account_id = $authInfo['uid'];
  82. //设备号验证 start
  83. /* if(empty($authInfo['facility_type']) || empty($authInfo['login_type'])) $this->exception('请重新登录');
  84. $redis = new Redis();
  85. if(!in_array($authInfo['facility_type'],[1,2,3,4])) {// H5 redis验证
  86. $check_redis = $redis->get('TOKEN_'.$authInfo['uid'].'_'.$authInfo['facility_type']);
  87. if($authorization != $check_redis) $this->exception('请重新登录');
  88. }else{
  89. $redis = new Redis();
  90. $check_redis = $redis->get('TOKEN_APP'.$authInfo['uid'].'_'.$authInfo['facility_type']);
  91. if(!$check_redis) {
  92. $facility_id = UserFacility::where(['user_id'=>$authInfo['uid'],'type'=>$authInfo['facility_type'],'facility'=>$authInfo['facility_code']])->value('id');
  93. if(!$facility_id) $this->exception('该设备已被禁用');
  94. $redis->set('TOKEN_APP'.$authInfo['uid'].'_'.$authInfo['facility_type'],600);// 设置10分钟缓存
  95. }
  96. }*/
  97. // 设备号验证end
  98. $member = Db::name('store_member')->where('id',$authInfo['uid'])->find();
  99. if(empty($member) || $member['is_deleted']) $this->exception('会员不存在');
  100. //if(!empty($authInfo['facility_code']) && !in_array($authInfo['facility_code'],[$member['facility_1'],$member['facility_2'],$member['facility_3'],$member['facility_4'],$member['facility_5']])) $this->error('该设备已被禁用','',0,-1);
  101. // 企业用户绑定验证
  102. if($member['account_type'] == 1 && empty($member['bind_id']) && $this->request->action() != 'modifyPhone') $this->error('请绑定手机号');
  103. if($member['status']){
  104. if($member['account_type'] == 1){
  105. $this->user_id = $member['bind_id'];
  106. return true;
  107. }
  108. $this->user_id = $authInfo['uid'];
  109. // 会员活跃度增加
  110. if(!empty($authInfo['login_type'])) UserSynth::vitality( $this->user_id,$authInfo['login_type']);
  111. return $this->user_id;
  112. }else{
  113. $this->exception('该会员已被禁用');
  114. }
  115. } else {
  116. $this->exception('Token验证不通过,用户不存在');
  117. }
  118. } catch (\Exception $e) {
  119. $this->error($e->getMessage(),'',0,-1);
  120. }
  121. //if($this->user_id == 97) $this->user_id = 83;
  122. }
  123. protected function setUid(){
  124. $authorization = app()->request->header('Authorization');
  125. $key = md5(config('app.jwt'));
  126. if(empty($authorization) || $authorization == null) return false;
  127. try {
  128. $check_authorization = JWT::decode($authorization, $key, array('HS256'));
  129. if($check_authorization['code'] !=200) $this->exception($check_authorization['msg']);
  130. $authInfo = json_decode(json_encode($check_authorization['data']), true);
  131. if (!empty($authInfo['uid'])) {
  132. $member = Db::name('store_member')->field('status')->where('id',$authInfo['uid'])->find();
  133. if($member['status']){
  134. $this->user_id = $authInfo['uid'];
  135. $this->user_id;
  136. return true;
  137. }
  138. }
  139. } catch (\Exception $e) {
  140. return false;
  141. //$this->error($e->getMessage(),'',0,-1);
  142. }
  143. }
  144. // 获取用户信息
  145. function userInfo($field =''){
  146. if(!$this->user_id) return [];
  147. return $field ? Db::name('store_member')->field($field)->find($this->user_id) : Db::name('store_member')->find($this->user_id);
  148. }
  149. // 验证短信验证码
  150. protected function checkPhoneCode($phone,$code){
  151. //return true;
  152. $sel_time =date('Y-m-d H:i:s',time()-600);
  153. $store_member_sms = Db::name('store_member_sms')
  154. ->field('id,code')->where('phone',$phone)
  155. ->where('create_at','> time',$sel_time)
  156. ->where('used',0)->order('id desc')->find();
  157. return !empty($store_member_sms) && $store_member_sms['code'] == $code ? $store_member_sms['id'] :0;
  158. }
  159. // 更新验证码状态
  160. protected function updatePhoneCode($code_id){
  161. Db::name('store_member_sms')->where('id',$code_id)->update(['used'=>1]);
  162. }
  163. /**
  164. * 操作成功返回的数据
  165. * @param string $msg 提示信息
  166. * @param mixed $data 要返回的数据
  167. * @param int $code 错误码,默认为1
  168. * @param string $type 输出类型
  169. * @param array $header 发送的 Header 信息
  170. */
  171. protected function success($msg = 'ok', $data = null , $is_login = 1, $code = 1, $type = null, array $header = [])
  172. {
  173. $this->results($msg, $data, $is_login, $code, $type, $header);
  174. }
  175. /**
  176. * 操作失败返回的数据
  177. * @param string $msg 提示信息
  178. * @param mixed $data 要返回的数据
  179. * @param int $code 错误码,默认为0
  180. * @param string $type 输出类型
  181. * @param array $header 发送的 Header 信息
  182. */
  183. protected function error($msg = '', $data = null, $is_login = 1, $code = 0, $type = null, array $header = [])
  184. {
  185. if(empty($this->user_id)){
  186. $is_login = 0;
  187. }
  188. $this->results($msg, $data, $is_login, $code, $type, $header);
  189. }
  190. /**
  191. * 返回封装后的 API 数据到客户端
  192. * @access protected
  193. * @param mixed $msg 提示信息
  194. * @param mixed $data 要返回的数据
  195. * @param int $code 错误码,默认为0
  196. * @param string $type 输出类型,支持json/xml/jsonp
  197. * @param array $header 发送的 Header 信息
  198. * @return void
  199. * @throws HttpResponseException
  200. */
  201. protected function results($msg, $data = null, $is_login, $code = 0, $type = null, array $header = [])
  202. {
  203. $result = [
  204. 'code' => $code,
  205. 'is_login' => $is_login,
  206. 'msg' => $msg,
  207. 'time' => \think\facade\Request::instance()->server('REQUEST_TIME'),
  208. 'data' => $data,
  209. ];
  210. // 如果未设置类型则自动判断
  211. $type = $type ? $type : 'json';
  212. if (isset($header['statuscode']))
  213. {
  214. $code = $header['statuscode'];
  215. unset($header['statuscode']);
  216. }
  217. else
  218. {
  219. //未设置状态码,根据code值判断
  220. $code = $code >= 1000 || $code < 200 ? 200 : $code;
  221. }
  222. $response = Response::create($result, $type, $code)->header($header);
  223. throw new HttpResponseException($response);
  224. }
  225. /**
  226. * 生成token
  227. * @param $uid 会有id
  228. * @param string $facility_code 设备号
  229. * @param int $port 登录类型
  230. * @return string
  231. */
  232. public function createJwt($uid,$facility_code='',$login_type=0)
  233. {
  234. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  235. $time = time(); //签发时间
  236. $expire = $time + config('app.jwt_time'); //过期时间
  237. $token = array(
  238. "uid" => $uid,
  239. "iss" => "https://zain.com",//签发组织
  240. "aud" => "https://zain.com", //签发作者
  241. "iat" => $time,
  242. "nbf" => $time,
  243. "exp" => $expire,
  244. "facility_code" => $facility_code,
  245. "login_type" => $login_type,
  246. );
  247. $jwt = JWT::encode($token, $key);
  248. return $jwt;
  249. }
  250. protected function exception($msg){
  251. throw new Exception($msg);
  252. }
  253. // 事务返回
  254. protected function transReturn($data = []){
  255. $this->is_commit ? $this->success($this->ret_msg,$data):$this->error($this->ret_msg);
  256. }
  257. }