baseApiUri = new Uri('https://www.googleapis.com/oauth2/v1/'); } } public function setAccessType($accessType) { if (!in_array($accessType, array('online', 'offline'), true)) { throw new InvalidAccessTypeException('Invalid accessType, expected either online or offline'); } $this->accessType = $accessType; } // LDR CHANGE Add approval_prompt to force the prompt if value is set to 'force' so it force return of a "refresh token" in addition to "standard token" public $approvalPrompt='auto'; public function setApprouvalPrompt($prompt) { if (!in_array($prompt, array('auto', 'force'), true)) { // @todo Maybe could we rename this exception throw new InvalidAccessTypeException('Invalid approuvalPrompt, expected either auto or force.'); } $this->approvalPrompt = $prompt; } /** * {@inheritdoc} */ public function getAuthorizationEndpoint() { // LDR CHANGE Add approval_prompt to force the prompt if value is set to 'force' so it force return of a "refresh token" in addition to "standard token" //return new Uri('https://accounts.google.com/o/oauth2/auth?access_type='.$this->accessType); return new Uri('https://accounts.google.com/o/oauth2/auth?'.($this->approvalPrompt?'approval_prompt='.$this->approvalPrompt.'&':'').'access_type='.$this->accessType); } /** * {@inheritdoc} */ public function getAccessTokenEndpoint() { return new Uri('https://accounts.google.com/o/oauth2/token'); } /** * {@inheritdoc} */ protected function parseAccessTokenResponse($responseBody) { $data = json_decode($responseBody, true); if (null === $data || !is_array($data)) { throw new TokenResponseException('Unable to parse response.'); } elseif (isset($data['error'])) { throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"'); } $token = new StdOAuth2Token(); $token->setAccessToken($data['access_token']); $token->setLifetime($data['expires_in']); if (isset($data['refresh_token'])) { $token->setRefreshToken($data['refresh_token']); unset($data['refresh_token']); } unset($data['access_token']); unset($data['expires_in']); $token->setExtraParams($data); return $token; } }