@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | $this->saveState(); |
| 42 | 42 | |
| 43 | 43 | //获取代理链接 |
| 44 | - if(isset($this->config['proxy_url'])){ |
|
| 44 | + if (isset($this->config['proxy_url'])) { |
|
| 45 | 45 | return $this->getProxyURL(); |
| 46 | 46 | } |
| 47 | 47 | |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | 'scope' => $this->config['scope'], |
| 55 | 55 | 'state' => $this->config['state'], |
| 56 | 56 | ]; |
| 57 | - return $this->AuthorizeURL . '?' . http_build_query($params) . '#wechat_redirect'; |
|
| 57 | + return $this->AuthorizeURL.'?'.http_build_query($params).'#wechat_redirect'; |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | /** |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | 'state' => $this->config['state'], |
| 73 | 73 | 'redirect_uri' => $this->config['callback'], |
| 74 | 74 | ]; |
| 75 | - return $this->config['proxy_url'] . '?' . http_build_query($params); |
|
| 75 | + return $this->config['proxy_url'].'?'.http_build_query($params); |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | /** |
@@ -108,12 +108,12 @@ discard block |
||
| 108 | 108 | 'open_id' => $this->openid(), |
| 109 | 109 | 'union_id'=> isset($this->token['unionid']) ? $this->token['unionid'] : '', |
| 110 | 110 | 'channel' => ConstCode::TYPE_WECHAT, |
| 111 | - 'nickname'=> $result['nickname']??'', |
|
| 111 | + 'nickname'=> $result['nickname'] ?? '', |
|
| 112 | 112 | 'gender' => isset($result['sex']) ? $result['sex'] : ConstCode::GENDER, |
| 113 | - 'avatar' => $result['headimgurl']??'', |
|
| 114 | - 'session_key' => $result['session_key']??'', |
|
| 113 | + 'avatar' => $result['headimgurl'] ?? '', |
|
| 114 | + 'session_key' => $result['session_key'] ?? '', |
|
| 115 | 115 | ]; |
| 116 | - $userInfo['type'] = ConstCode::getTypeConst($userInfo['channel'],$this->type); |
|
| 116 | + $userInfo['type'] = ConstCode::getTypeConst($userInfo['channel'], $this->type); |
|
| 117 | 117 | return $userInfo; |
| 118 | 118 | } |
| 119 | 119 | |
@@ -126,15 +126,15 @@ discard block |
||
| 126 | 126 | */ |
| 127 | 127 | public function getUserInfo() |
| 128 | 128 | { |
| 129 | - if($this->type == 'app'){//App登录 |
|
| 130 | - if(!isset($_REQUEST['access_token']) ){ |
|
| 129 | + if ($this->type == 'app') {//App登录 |
|
| 130 | + if (!isset($_REQUEST['access_token'])) { |
|
| 131 | 131 | throw new \Exception("Wechat APP登录 需要传输access_token参数! "); |
| 132 | 132 | } |
| 133 | 133 | $this->token['access_token'] = $_REQUEST['access_token']; |
| 134 | - }elseif ($this->type == 'applets'){ |
|
| 134 | + }elseif ($this->type == 'applets') { |
|
| 135 | 135 | //小程序 |
| 136 | 136 | return $this->applets(); |
| 137 | - }else { |
|
| 137 | + } else { |
|
| 138 | 138 | /** 获取token信息 */ |
| 139 | 139 | $this->getToken(); |
| 140 | 140 | } |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | 'openid'=>$this->openid(), |
| 146 | 146 | 'lang'=>'zh_CN', |
| 147 | 147 | ]; |
| 148 | - $data = $this->get(self::API_BASE . 'userinfo', $params); |
|
| 148 | + $data = $this->get(self::API_BASE.'userinfo', $params); |
|
| 149 | 149 | return json_decode($data, true); |
| 150 | 150 | } |
| 151 | 151 | |
@@ -153,13 +153,13 @@ discard block |
||
| 153 | 153 | * @return array|mixed|null |
| 154 | 154 | * @throws \Exception |
| 155 | 155 | */ |
| 156 | - public function applets(){ |
|
| 156 | + public function applets() { |
|
| 157 | 157 | /** 获取参数 */ |
| 158 | 158 | $params = $this->accessTokenParams(); |
| 159 | 159 | $params['js_code'] = $params['code']; |
| 160 | 160 | |
| 161 | 161 | /** 获取access_token */ |
| 162 | - $token = $this->get($this->jsCode2Session, $params); |
|
| 162 | + $token = $this->get($this->jsCode2Session, $params); |
|
| 163 | 163 | /** 解析token值(子类实现此方法) */ |
| 164 | 164 | $this->token = $this->parseToken($token); |
| 165 | 165 | return $this->token; |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | $data = json_decode($token, true); |
| 216 | 216 | if (isset($data['access_token'])) { |
| 217 | 217 | return $data; |
| 218 | - }elseif (isset($data['session_key'])){ |
|
| 218 | + }elseif (isset($data['session_key'])) { |
|
| 219 | 219 | //小程序登录 |
| 220 | 220 | return $data; |
| 221 | 221 | } else { |
@@ -131,10 +131,10 @@ discard block |
||
| 131 | 131 | throw new \Exception("Wechat APP登录 需要传输access_token参数! "); |
| 132 | 132 | } |
| 133 | 133 | $this->token['access_token'] = $_REQUEST['access_token']; |
| 134 | - }elseif ($this->type == 'applets'){ |
|
| 134 | + } elseif ($this->type == 'applets'){ |
|
| 135 | 135 | //小程序 |
| 136 | 136 | return $this->applets(); |
| 137 | - }else { |
|
| 137 | + } else { |
|
| 138 | 138 | /** 获取token信息 */ |
| 139 | 139 | $this->getToken(); |
| 140 | 140 | } |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | $data = json_decode($token, true); |
| 216 | 216 | if (isset($data['access_token'])) { |
| 217 | 217 | return $data; |
| 218 | - }elseif (isset($data['session_key'])){ |
|
| 218 | + } elseif (isset($data['session_key'])){ |
|
| 219 | 219 | //小程序登录 |
| 220 | 220 | return $data; |
| 221 | 221 | } else { |
@@ -95,11 +95,11 @@ discard block |
||
| 95 | 95 | 'proxy' => '', |
| 96 | 96 | 'state' => '', |
| 97 | 97 | 'type' => '', |
| 98 | - 'is_sandbox' => false,//是否是沙箱环境 |
|
| 98 | + 'is_sandbox' => false, //是否是沙箱环境 |
|
| 99 | 99 | ]; |
| 100 | - $this->config = array_merge($_config, $config); |
|
| 101 | - foreach($this->config as $key=>$val){ |
|
| 102 | - if(property_exists($this,$key)) $this->$key=$val; |
|
| 100 | + $this->config = array_merge($_config, $config); |
|
| 101 | + foreach ($this->config as $key=>$val) { |
|
| 102 | + if (property_exists($this, $key)) $this->$key = $val; |
|
| 103 | 103 | } |
| 104 | 104 | $this->timestamp = time(); |
| 105 | 105 | } |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | * Updater: |
| 136 | 136 | * @return $this |
| 137 | 137 | */ |
| 138 | - public function mustCheckState(){ |
|
| 138 | + public function mustCheckState() { |
|
| 139 | 139 | $this->checkState = true; |
| 140 | 140 | return $this; |
| 141 | 141 | } |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | * @Author: TinyMeng <[email protected]> |
| 146 | 146 | * @return array |
| 147 | 147 | */ |
| 148 | - public function getConfig(){ |
|
| 148 | + public function getConfig() { |
|
| 149 | 149 | return $this->config; |
| 150 | 150 | } |
| 151 | 151 | |
@@ -154,7 +154,7 @@ discard block |
||
| 154 | 154 | * @param $token |
| 155 | 155 | * @return $this |
| 156 | 156 | */ |
| 157 | - public function setToken($token){ |
|
| 157 | + public function setToken($token) { |
|
| 158 | 158 | $this->token = $token; |
| 159 | 159 | return $this; |
| 160 | 160 | } |
@@ -163,14 +163,14 @@ discard block |
||
| 163 | 163 | * 存储state |
| 164 | 164 | * @Author: TinyMeng <[email protected]> |
| 165 | 165 | */ |
| 166 | - public function saveState(){ |
|
| 166 | + public function saveState() { |
|
| 167 | 167 | if ($this->checkState === true) { |
| 168 | 168 | //是否开启session |
| 169 | 169 | if (session_status() !== PHP_SESSION_ACTIVE) { |
| 170 | 170 | session_start(); |
| 171 | 171 | } |
| 172 | - if(empty($this->config['state'])){ |
|
| 173 | - $this->config['state'] = Str::random();//生成随机state |
|
| 172 | + if (empty($this->config['state'])) { |
|
| 173 | + $this->config['state'] = Str::random(); //生成随机state |
|
| 174 | 174 | } |
| 175 | 175 | //存储到session |
| 176 | 176 | $_SESSION['tinymeng_oauth_state'] = $this->config['state']; |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | * @Author: TinyMeng <[email protected]> |
| 183 | 183 | * @throws \Exception |
| 184 | 184 | */ |
| 185 | - public function CheckState(){ |
|
| 185 | + public function CheckState() { |
|
| 186 | 186 | if ($this->checkState === true) { |
| 187 | 187 | if (session_status() !== PHP_SESSION_ACTIVE) { |
| 188 | 188 | session_start(); |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | * Updater: |
| 200 | 200 | * @return array |
| 201 | 201 | */ |
| 202 | - protected function accessTokenParams(){ |
|
| 202 | + protected function accessTokenParams() { |
|
| 203 | 203 | $params = [ |
| 204 | 204 | 'client_id' => $this->config['app_id'], |
| 205 | 205 | 'client_secret' => $this->config['app_secret'], |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | * @author: JiaMeng <[email protected]> |
| 216 | 216 | * Updater: |
| 217 | 217 | */ |
| 218 | - protected function getToken(){ |
|
| 218 | + protected function getToken() { |
|
| 219 | 219 | if (empty($this->token)) { |
| 220 | 220 | /** 验证state参数 */ |
| 221 | 221 | $this->CheckState(); |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | $params = $this->accessTokenParams(); |
| 225 | 225 | |
| 226 | 226 | /** 获取access_token */ |
| 227 | - $token = $this->POST($this->AccessTokenURL, $params); |
|
| 227 | + $token = $this->POST($this->AccessTokenURL, $params); |
|
| 228 | 228 | /** 解析token值(子类实现此方法) */ |
| 229 | 229 | $this->token = $this->parseToken($token); |
| 230 | 230 | } |
@@ -241,7 +241,7 @@ discard block |
||
| 241 | 241 | */ |
| 242 | 242 | protected function get($url, $params = [], $headers = []) |
| 243 | 243 | { |
| 244 | - return \tinymeng\tools\HttpRequest::httpGet($url, $params,$headers); |
|
| 244 | + return \tinymeng\tools\HttpRequest::httpGet($url, $params, $headers); |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | /** |
@@ -255,8 +255,8 @@ discard block |
||
| 255 | 255 | */ |
| 256 | 256 | protected function post($url, $params = [], $headers = []) |
| 257 | 257 | { |
| 258 | - $headers[] = 'Accept: application/json';//GitHub需要的header |
|
| 259 | - return \tinymeng\tools\HttpRequest::httpPost($url, $params,$headers); |
|
| 258 | + $headers[] = 'Accept: application/json'; //GitHub需要的header |
|
| 259 | + return \tinymeng\tools\HttpRequest::httpPost($url, $params, $headers); |
|
| 260 | 260 | } |
| 261 | 261 | |
| 262 | 262 | /** |
@@ -264,7 +264,7 @@ discard block |
||
| 264 | 264 | * M代表男性,F代表女性 |
| 265 | 265 | * @param $gender |
| 266 | 266 | */ |
| 267 | - public function getGender($gender){ |
|
| 268 | - return strtolower(substr($gender , 0 , 1)) == 'm' ? ConstCode::GENDER_MAN : ConstCode::GENDER_WOMEN; |
|
| 267 | + public function getGender($gender) { |
|
| 268 | + return strtolower(substr($gender, 0, 1)) == 'm' ? ConstCode::GENDER_MAN : ConstCode::GENDER_WOMEN; |
|
| 269 | 269 | } |
| 270 | 270 | } |
@@ -99,7 +99,9 @@ |
||
| 99 | 99 | ]; |
| 100 | 100 | $this->config = array_merge($_config, $config); |
| 101 | 101 | foreach($this->config as $key=>$val){ |
| 102 | - if(property_exists($this,$key)) $this->$key=$val; |
|
| 102 | + if(property_exists($this,$key)) { |
|
| 103 | + $this->$key=$val; |
|
| 104 | + } |
|
| 103 | 105 | } |
| 104 | 106 | $this->timestamp = time(); |
| 105 | 107 | } |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | if (in_array($k, $except)) { |
| 16 | 16 | continue; |
| 17 | 17 | } |
| 18 | - $param_str .= $k . '='; |
|
| 18 | + $param_str .= $k.'='; |
|
| 19 | 19 | $param_str .= $urlencode ? rawurlencode($v) : $v; |
| 20 | 20 | $param_str .= '&'; |
| 21 | 21 | } |
@@ -6,16 +6,16 @@ discard block |
||
| 6 | 6 | |
| 7 | 7 | use tinymeng\tools\Tool; |
| 8 | 8 | |
| 9 | -class ConstCode{ |
|
| 9 | +class ConstCode { |
|
| 10 | 10 | |
| 11 | 11 | /** 公共状态 */ |
| 12 | - const STATUS_DELETE = 0;//删除 |
|
| 13 | - const STATUS_NORMAL = 1;//正常 |
|
| 12 | + const STATUS_DELETE = 0; //删除 |
|
| 13 | + const STATUS_NORMAL = 1; //正常 |
|
| 14 | 14 | |
| 15 | 15 | /** 性别 */ |
| 16 | - const GENDER = 0;//未知 |
|
| 17 | - const GENDER_MAN = 1;//男 |
|
| 18 | - const GENDER_WOMEN = 2;//女 |
|
| 16 | + const GENDER = 0; //未知 |
|
| 17 | + const GENDER_MAN = 1; //男 |
|
| 18 | + const GENDER_WOMEN = 2; //女 |
|
| 19 | 19 | |
| 20 | 20 | /** 登录类型 */ |
| 21 | 21 | const TYPE_QQ = 1; //QQ |
@@ -27,8 +27,8 @@ discard block |
||
| 27 | 27 | const TYPE_FACEBOOK = 7; //faceBook |
| 28 | 28 | const TYPE_GOOGLE = 8; //google |
| 29 | 29 | const TYPE_TWITTER = 9; //飞鸽 |
| 30 | - const TYPE_LINE = 10;//line |
|
| 31 | - const TYPE_NAVER = 11;//naver |
|
| 30 | + const TYPE_LINE = 10; //line |
|
| 31 | + const TYPE_NAVER = 11; //naver |
|
| 32 | 32 | |
| 33 | 33 | const TYPE_QQ_APP = 21; //qqAPP |
| 34 | 34 | const TYPE_WECHAT_APP = 22; //微信APP |
@@ -46,24 +46,24 @@ discard block |
||
| 46 | 46 | * @param bool $type 类型:app applets |
| 47 | 47 | * @return int |
| 48 | 48 | */ |
| 49 | - static public function getTypeConst($channel,$type="") |
|
| 49 | + static public function getTypeConst($channel, $type = "") |
|
| 50 | 50 | { |
| 51 | - switch ($channel){ |
|
| 51 | + switch ($channel) { |
|
| 52 | 52 | case self::TYPE_QQ: |
| 53 | - if($type == 'app'){ |
|
| 54 | - $typeConst = self::TYPE_WECHAT_APP;//qqApp |
|
| 55 | - }else{ |
|
| 53 | + if ($type == 'app') { |
|
| 54 | + $typeConst = self::TYPE_WECHAT_APP; //qqApp |
|
| 55 | + } else { |
|
| 56 | 56 | $typeConst = $channel; |
| 57 | 57 | } |
| 58 | 58 | break; |
| 59 | 59 | case self::TYPE_WECHAT: |
| 60 | - if($type == 'app'){ |
|
| 61 | - $typeConst = self::TYPE_WECHAT_APP;//微信App |
|
| 62 | - }else if($type == 'applets'){ |
|
| 63 | - $typeConst = self::TYPE_WECHAT_APPLETS;//微信小程序 |
|
| 64 | - }else if(Tool::isWeiXin()){ |
|
| 65 | - $typeConst = self::TYPE_WECHAT_MOBILE;//微信mobile |
|
| 66 | - }else{ |
|
| 60 | + if ($type == 'app') { |
|
| 61 | + $typeConst = self::TYPE_WECHAT_APP; //微信App |
|
| 62 | + } else if ($type == 'applets') { |
|
| 63 | + $typeConst = self::TYPE_WECHAT_APPLETS; //微信小程序 |
|
| 64 | + } else if (Tool::isWeiXin()) { |
|
| 65 | + $typeConst = self::TYPE_WECHAT_MOBILE; //微信mobile |
|
| 66 | + } else { |
|
| 67 | 67 | $typeConst = $channel; |
| 68 | 68 | } |
| 69 | 69 | break; |
@@ -52,18 +52,18 @@ |
||
| 52 | 52 | case self::TYPE_QQ: |
| 53 | 53 | if($type == 'app'){ |
| 54 | 54 | $typeConst = self::TYPE_WECHAT_APP;//qqApp |
| 55 | - }else{ |
|
| 55 | + } else{ |
|
| 56 | 56 | $typeConst = $channel; |
| 57 | 57 | } |
| 58 | 58 | break; |
| 59 | 59 | case self::TYPE_WECHAT: |
| 60 | 60 | if($type == 'app'){ |
| 61 | 61 | $typeConst = self::TYPE_WECHAT_APP;//微信App |
| 62 | - }else if($type == 'applets'){ |
|
| 62 | + } else if($type == 'applets'){ |
|
| 63 | 63 | $typeConst = self::TYPE_WECHAT_APPLETS;//微信小程序 |
| 64 | - }else if(Tool::isWeiXin()){ |
|
| 64 | + } else if(Tool::isWeiXin()){ |
|
| 65 | 65 | $typeConst = self::TYPE_WECHAT_MOBILE;//微信mobile |
| 66 | - }else{ |
|
| 66 | + } else{ |
|
| 67 | 67 | $typeConst = $channel; |
| 68 | 68 | } |
| 69 | 69 | break; |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | 'scope' => $this->config['scope'], |
| 34 | 34 | 'state' => $this->config['state'] ?: Str::random(), |
| 35 | 35 | ]; |
| 36 | - return $this->AuthorizeURL . '?' . http_build_query($params); |
|
| 36 | + return $this->AuthorizeURL.'?'.http_build_query($params); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | 'channel' => ConstCode::TYPE_LINE, |
| 58 | 58 | 'nickname' => $result['displayName'], |
| 59 | 59 | 'gender' => ConstCode::GENDER, //line不返回性别信息 |
| 60 | - 'avatar' => isset($result['pictureUrl']) ? $result['pictureUrl'] . '/large' : '', |
|
| 60 | + 'avatar' => isset($result['pictureUrl']) ? $result['pictureUrl'].'/large' : '', |
|
| 61 | 61 | ]; |
| 62 | 62 | return $userInfo; |
| 63 | 63 | } |
@@ -90,10 +90,10 @@ discard block |
||
| 90 | 90 | $method = strtoupper($method); |
| 91 | 91 | $request = [ |
| 92 | 92 | 'method' => $method, |
| 93 | - 'uri' => self::API_BASE . $api, |
|
| 93 | + 'uri' => self::API_BASE.$api, |
|
| 94 | 94 | ]; |
| 95 | 95 | |
| 96 | - $headers = ['Authorization' => $this->token['token_type'] . ' ' . $this->token['access_token']]; |
|
| 96 | + $headers = ['Authorization' => $this->token['token_type'].' '.$this->token['access_token']]; |
|
| 97 | 97 | |
| 98 | 98 | $data = $this->$method($request['uri'], $params, $headers); |
| 99 | 99 | |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | protected static function init($gateway, $config) |
| 36 | 36 | { |
| 37 | - if(empty($config)){ |
|
| 37 | + if (empty($config)) { |
|
| 38 | 38 | throw new \Exception("第三方登录 [$gateway] config配置不能为空"); |
| 39 | 39 | } |
| 40 | 40 | $baseConfig = [ |
@@ -44,14 +44,14 @@ discard block |
||
| 44 | 44 | 'scope' => '', |
| 45 | 45 | 'type' => '', |
| 46 | 46 | ]; |
| 47 | - if($gateway == 'weixin'){ |
|
| 47 | + if ($gateway == 'weixin') { |
|
| 48 | 48 | /** 兼容 tinymeng/oauth v1.0.0完美升级 */ |
| 49 | 49 | $gateway = 'wechat'; |
| 50 | 50 | } |
| 51 | 51 | $gateway = Str::uFirst($gateway); |
| 52 | - $class = __NAMESPACE__ . '\\Gateways\\' . $gateway; |
|
| 52 | + $class = __NAMESPACE__.'\\Gateways\\'.$gateway; |
|
| 53 | 53 | if (class_exists($class)) { |
| 54 | - $app = new $class(array_replace_recursive($baseConfig,$config)); |
|
| 54 | + $app = new $class(array_replace_recursive($baseConfig, $config)); |
|
| 55 | 55 | if ($app instanceof GatewayInterface) { |
| 56 | 56 | return $app; |
| 57 | 57 | } |