config = array_merge($this->config, $config); } $this->config = array_merge($this->config, is_array($options) ? $options : []); $this->http = new Client(); } /** * 用户登录 */ public function login() { return redirect($this->getAuthorizeUrl()); } /** * 获取登录地址 */ public function getAuthorizeUrl() { $state = hash('sha256',uniqid((string)mt_rand())); session('state', $state); $queryarr = array( "response_type" => "code", "client_id" => $this->config['app_id'], "redirect_uri" => $this->config['callback'], "scope" => 'get_user_info', "state" => $state, ); request()->isMobile() && $queryarr['display'] = 'mobile'; $url = self::GET_AUTH_CODE_URL . '?' . http_build_query($queryarr); return $url; } /** * 获取用户信息 * @param array $params * @return array */ public function getUserInfo($params = []) { $params = $params ? $params : input(); if (isset($params['access_token']) || (isset($params['state']) && $params['state'] == session('state') && isset($params['code']))) { //获取access_token $data = isset($params['code']) ? $this->getAccessToken($params['code']) : $params; $access_token = isset($data['access_token']) ? $data['access_token'] : ''; $refresh_token = isset($data['refresh_token']) ? $data['refresh_token'] : ''; $expires_in = isset($data['expires_in']) ? $data['expires_in'] : 0; if ($access_token) { $openid = $this->getOpenId($access_token); //获取用户信息 $queryarr = [ "access_token" => $access_token, "oauth_consumer_key" => $this->config['app_id'], "openid" => $openid, ]; $ret = $this->http->get(self::GET_USERINFO_URL.'?'.http_build_query($queryarr))->getBody()->getContents(); $userinfo = (array)json_decode($ret, true); if (!$userinfo || !isset($userinfo['ret']) || $userinfo['ret'] !== 0) { return []; } $userinfo = $userinfo ? $userinfo : []; $userinfo['avatar'] = isset($userinfo['figureurl_qq_2']) ? $userinfo['figureurl_qq_2'] : ''; $userinfo['avatar'] = str_replace('http://','https://',$userinfo['avatar']); $data = [ 'access_token' => $access_token, 'refresh_token' => $refresh_token, 'expires_in' => $expires_in, 'openid' => $openid, 'userinfo' => $userinfo ]; return $data; } } return []; } /** * 获取access_token * @param string $code * @return array */ public function getAccessToken($code = '') { if (!$code) { return []; } $queryarr = array( "grant_type" => "authorization_code", "client_id" => $this->config['app_id'], "client_secret" => $this->config['app_key'], "redirect_uri" => $this->config['callback'], "code" => $code, ); $ret = $this->http->get(self::GET_ACCESS_TOKEN_URL.'?'.http_build_query($queryarr))->getBody()->getContents(); $params = []; parse_str($ret, $params); return $params ? $params : []; } /** * 获取open_id * @param string $access_token * @return string */ private function getOpenId($access_token = '') { $response = $this->http->get(self::GET_OPENID_URL.'?access_token='.$access_token)->getBody()->getContents(); if (strpos($response, "callback") !== false) { $lpos = strpos($response, "("); $rpos = strrpos($response, ")"); $response = substr($response, $lpos + 1, $rpos - $lpos - 1); } $user = (array)json_decode($response, true); return isset($user['openid']) ? $user['openid'] : ''; } }