page = input('page',1); $this->page_num = input('page_num',20); $this->off_set = $this->page * $this->page_num - $this->page_num; $this->is_test = input('test',0);// 测试用的 $path = explode('/',$this->request->path()); if( input('user_id')) $this->user_id = input('user_id'); if(!empty($this->need_login) && in_array(end($path),$this->need_login)) $this->checkLogin(); //if($this->user_id == 97) $this->user_id = 83; // 钩子注册 $tags = config('tags.'); if(!empty($tags)) { foreach ($tags as $tag => $behavior) { // 数组反转 保证最上面的行为优先级最高 $behavior = array_reverse($behavior); foreach ($behavior as $be) { Hook::add($tag, $be, true); } } } } //校验jwt权限API protected function checkLogin() { $authorization = app()->request->header('Authorization'); if(empty($authorization) || $authorization == null){ if($this->is_test == 1) { $this->user_id = input('user_id') ? input('user_id') : 22; return true; } $this->error('Token不存在,拒绝访问--','',0,-1); } $key = md5(config('app.jwt')); try { $check_authorization = JWT::decode($authorization, $key, array('HS256')); if($check_authorization['code'] !=200) $this->exception($check_authorization['msg']); $authInfo = json_decode(json_encode($check_authorization['data']), true); if (!empty($authInfo['uid'])) { $this->account_id = $authInfo['uid']; //设备号验证 start /* if(empty($authInfo['facility_type']) || empty($authInfo['login_type'])) $this->exception('请重新登录'); $redis = new Redis(); if(!in_array($authInfo['facility_type'],[1,2,3,4])) {// H5 redis验证 $check_redis = $redis->get('TOKEN_'.$authInfo['uid'].'_'.$authInfo['facility_type']); if($authorization != $check_redis) $this->exception('请重新登录'); }else{ $redis = new Redis(); $check_redis = $redis->get('TOKEN_APP'.$authInfo['uid'].'_'.$authInfo['facility_type']); if(!$check_redis) { $facility_id = UserFacility::where(['user_id'=>$authInfo['uid'],'type'=>$authInfo['facility_type'],'facility'=>$authInfo['facility_code']])->value('id'); if(!$facility_id) $this->exception('该设备已被禁用'); $redis->set('TOKEN_APP'.$authInfo['uid'].'_'.$authInfo['facility_type'],600);// 设置10分钟缓存 } }*/ // 设备号验证end $member = Db::name('store_member')->where('id',$authInfo['uid'])->find(); if(empty($member) || $member['is_deleted']) $this->exception('会员不存在'); //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); // 企业用户绑定验证 if($member['account_type'] == 1 && empty($member['bind_id']) && $this->request->action() != 'modifyPhone') $this->error('请绑定手机号'); if($member['status']){ if($member['account_type'] == 1){ $this->user_id = $member['bind_id']; return true; } $this->user_id = $authInfo['uid']; // 会员活跃度增加 if(!empty($authInfo['login_type'])) UserSynth::vitality( $this->user_id,$authInfo['login_type']); return $this->user_id; }else{ $this->exception('该会员已被禁用'); } } else { $this->exception('Token验证不通过,用户不存在'); } } catch (\Exception $e) { $this->error($e->getMessage(),'',0,-1); } //if($this->user_id == 97) $this->user_id = 83; } protected function setUid(){ $authorization = app()->request->header('Authorization'); $key = md5(config('app.jwt')); if(empty($authorization) || $authorization == null) return false; try { $check_authorization = JWT::decode($authorization, $key, array('HS256')); if($check_authorization['code'] !=200) $this->exception($check_authorization['msg']); $authInfo = json_decode(json_encode($check_authorization['data']), true); if (!empty($authInfo['uid'])) { $member = Db::name('store_member')->field('status')->where('id',$authInfo['uid'])->find(); if($member['status']){ $this->user_id = $authInfo['uid']; $this->user_id; return true; } } } catch (\Exception $e) { return false; //$this->error($e->getMessage(),'',0,-1); } } // 获取用户信息 function userInfo($field =''){ if(!$this->user_id) return []; return $field ? Db::name('store_member')->field($field)->find($this->user_id) : Db::name('store_member')->find($this->user_id); } // 验证短信验证码 protected function checkPhoneCode($phone,$code){ //return true; $sel_time =date('Y-m-d H:i:s',time()-600); $store_member_sms = Db::name('store_member_sms') ->field('id,code')->where('phone',$phone) ->where('create_at','> time',$sel_time) ->where('used',0)->order('id desc')->find(); return !empty($store_member_sms) && $store_member_sms['code'] == $code ? $store_member_sms['id'] :0; } // 更新验证码状态 protected function updatePhoneCode($code_id){ Db::name('store_member_sms')->where('id',$code_id)->update(['used'=>1]); } /** * 操作成功返回的数据 * @param string $msg 提示信息 * @param mixed $data 要返回的数据 * @param int $code 错误码,默认为1 * @param string $type 输出类型 * @param array $header 发送的 Header 信息 */ protected function success($msg = 'ok', $data = null , $is_login = 1, $code = 1, $type = null, array $header = []) { $this->results($msg, $data, $is_login, $code, $type, $header); } /** * 操作失败返回的数据 * @param string $msg 提示信息 * @param mixed $data 要返回的数据 * @param int $code 错误码,默认为0 * @param string $type 输出类型 * @param array $header 发送的 Header 信息 */ protected function error($msg = '', $data = null, $is_login = 1, $code = 0, $type = null, array $header = []) { if(empty($this->user_id)){ $is_login = 0; } $this->results($msg, $data, $is_login, $code, $type, $header); } /** * 返回封装后的 API 数据到客户端 * @access protected * @param mixed $msg 提示信息 * @param mixed $data 要返回的数据 * @param int $code 错误码,默认为0 * @param string $type 输出类型,支持json/xml/jsonp * @param array $header 发送的 Header 信息 * @return void * @throws HttpResponseException */ protected function results($msg, $data = null, $is_login, $code = 0, $type = null, array $header = []) { $result = [ 'code' => $code, 'is_login' => $is_login, 'msg' => $msg, 'time' => \think\facade\Request::instance()->server('REQUEST_TIME'), 'data' => $data, ]; // 如果未设置类型则自动判断 $type = $type ? $type : 'json'; if (isset($header['statuscode'])) { $code = $header['statuscode']; unset($header['statuscode']); } else { //未设置状态码,根据code值判断 $code = $code >= 1000 || $code < 200 ? 200 : $code; } $response = Response::create($result, $type, $code)->header($header); throw new HttpResponseException($response); } /** * 生成token * @param $uid 会有id * @param string $facility_code 设备号 * @param int $port 登录类型 * @return string */ public function createJwt($uid,$facility_code='',$login_type=0) { $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到 $time = time(); //签发时间 $expire = $time + config('app.jwt_time'); //过期时间 $token = array( "uid" => $uid, "iss" => "https://zain.com",//签发组织 "aud" => "https://zain.com", //签发作者 "iat" => $time, "nbf" => $time, "exp" => $expire, "facility_code" => $facility_code, "login_type" => $login_type, ); $jwt = JWT::encode($token, $key); return $jwt; } protected function exception($msg){ throw new Exception($msg); } // 事务返回 protected function transReturn($data = []){ $this->is_commit ? $this->success($this->ret_msg,$data):$this->error($this->ret_msg); } }