Chromium Code Reviews| Index: google_apis/gaia/ubertoken_fetcher.cc |
| diff --git a/google_apis/gaia/ubertoken_fetcher.cc b/google_apis/gaia/ubertoken_fetcher.cc |
| index da0ff27c14c1dd9943f2e15b0610514e49bc81ce..c1e007048ab87562d6e82bfb78d35cc450c2721d 100644 |
| --- a/google_apis/gaia/ubertoken_fetcher.cc |
| +++ b/google_apis/gaia/ubertoken_fetcher.cc |
| @@ -7,11 +7,15 @@ |
| #include <vector> |
| #include "base/logging.h" |
| +#include "base/rand_util.h" |
| +#include "base/time/time.h" |
| #include "google_apis/gaia/gaia_auth_fetcher.h" |
| #include "google_apis/gaia/gaia_constants.h" |
| #include "google_apis/gaia/google_service_auth_error.h" |
| #include "google_apis/gaia/oauth2_token_service.h" |
| +const int UbertokenFetcher::kMaxRetries = 3; |
| + |
| UbertokenFetcher::UbertokenFetcher( |
| OAuth2TokenService* token_service, |
| UbertokenConsumer* consumer, |
| @@ -19,7 +23,9 @@ UbertokenFetcher::UbertokenFetcher( |
| : OAuth2TokenService::Consumer("uber_token_fetcher"), |
| token_service_(token_service), |
| consumer_(consumer), |
| - request_context_(request_context) { |
| + request_context_(request_context), |
| + retry_number_(0), |
| + second_access_token_request_(false) { |
| DCHECK(token_service); |
| DCHECK(consumer); |
| DCHECK(request_context); |
| @@ -29,10 +35,14 @@ UbertokenFetcher::~UbertokenFetcher() { |
| } |
| void UbertokenFetcher::StartFetchingToken(const std::string& account_id) { |
| - OAuth2TokenService::ScopeSet scopes; |
| - scopes.insert(GaiaConstants::kOAuth1LoginScope); |
| - access_token_request_ = |
| - token_service_->StartRequest(account_id, scopes, this); |
| + DCHECK(!account_id.empty()); |
| + account_id_ = account_id; |
| + retry_number_ = 0; |
| + second_access_token_request_ = false; |
| + gaia_auth_fetcher_.reset(); |
| + access_token_request_.reset(); |
| + retry_timer_.Stop(); |
| + RequestAccessToken(); |
| } |
| void UbertokenFetcher::OnUberAuthTokenSuccess(const std::string& token) { |
| @@ -41,6 +51,36 @@ void UbertokenFetcher::OnUberAuthTokenSuccess(const std::string& token) { |
| void UbertokenFetcher::OnUberAuthTokenFailure( |
| const GoogleServiceAuthError& error) { |
| + // Retry only transient errors. |
| + bool should_retry = |
| + error.state() == GoogleServiceAuthError::CONNECTION_FAILED || |
| + error.state() == GoogleServiceAuthError::SERVICE_UNAVAILABLE; |
| + if (should_retry) { |
| + if (retry_number_ < kMaxRetries) { |
| + // Calculate an exponential backoff with randomness of less than 1 sec. |
| + double backoff = base::RandDouble() + (1 << retry_number_); |
| + ++retry_number_; |
| + retry_timer_.Stop(); |
| + retry_timer_.Start(FROM_HERE, |
| + base::TimeDelta::FromSecondsD(backoff), |
| + this, |
| + &UbertokenFetcher::ExchangeTokens); |
| + return; |
| + } |
| + } else { |
|
guohui
2014/09/26 17:22:31
can we distinguish the cases 1) both refresh token
Roger Tawa OOO till Jul 10th
2014/09/26 17:49:55
Opened bug https://crbug.com/418158 to track this.
|
| + // The access token is invalid. Tell the token service. |
| + OAuth2TokenService::ScopeSet scopes; |
| + scopes.insert(GaiaConstants::kOAuth1LoginScope); |
| + token_service_->InvalidateToken(account_id_, scopes, access_token_); |
| + |
| + // In case the access was just stale, try one more time. |
| + if (!second_access_token_request_) { |
| + second_access_token_request_ = true; |
| + RequestAccessToken(); |
| + return; |
| + } |
| + } |
| + |
| consumer_->OnUbertokenFailure(error); |
| } |
| @@ -48,11 +88,10 @@ void UbertokenFetcher::OnGetTokenSuccess( |
| const OAuth2TokenService::Request* request, |
| const std::string& access_token, |
| const base::Time& expiration_time) { |
| + DCHECK(!access_token.empty()); |
| + access_token_ = access_token; |
| access_token_request_.reset(); |
| - gaia_auth_fetcher_.reset(new GaiaAuthFetcher(this, |
| - GaiaConstants::kChromeSource, |
| - request_context_)); |
| - gaia_auth_fetcher_->StartTokenFetchForUberAuthExchange(access_token); |
| + ExchangeTokens(); |
| } |
| void UbertokenFetcher::OnGetTokenFailure( |
| @@ -61,3 +100,17 @@ void UbertokenFetcher::OnGetTokenFailure( |
| access_token_request_.reset(); |
| consumer_->OnUbertokenFailure(error); |
| } |
| + |
| +void UbertokenFetcher::RequestAccessToken() { |
| + OAuth2TokenService::ScopeSet scopes; |
| + scopes.insert(GaiaConstants::kOAuth1LoginScope); |
| + access_token_request_ = |
| + token_service_->StartRequest(account_id_, scopes, this); |
| +} |
| + |
| +void UbertokenFetcher::ExchangeTokens() { |
| + gaia_auth_fetcher_.reset(new GaiaAuthFetcher(this, |
| + GaiaConstants::kChromeSource, |
| + request_context_)); |
| + gaia_auth_fetcher_->StartTokenFetchForUberAuthExchange(access_token_); |
| +} |