blob: 99fc784ec1c70d950fef52fd481e05bea3ffc942 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_TOKEN_FETCHER_H_
#define CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_TOKEN_FETCHER_H_
#include <string>
#include "base/callback_forward.h"
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "google_apis/gaia/gaia_auth_consumer.h"
#include "google_apis/gaia/gaia_auth_fetcher.h"
namespace network {
class SharedURLLoaderFactory;
}
namespace chromeos {
// OAuth2TokenFetcher is used to convert authenticated cookie jar from the
// authentication profile into OAuth2 tokens and GAIA credentials that will be
// used to kick off other token retrieval tasks.
class OAuth2TokenFetcher : public base::SupportsWeakPtr<OAuth2TokenFetcher>,
public GaiaAuthConsumer {
public:
class Delegate {
public:
virtual ~Delegate() {}
virtual void OnOAuth2TokensAvailable(
const GaiaAuthConsumer::ClientOAuthResult& oauth2_tokens) = 0;
virtual void OnOAuth2TokensFetchFailed() = 0;
};
OAuth2TokenFetcher(
OAuth2TokenFetcher::Delegate* delegate,
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory);
~OAuth2TokenFetcher() override;
void StartExchangeFromCookies(const std::string& session_index,
const std::string& signin_scoped_device_id);
void StartExchangeFromAuthCode(const std::string& auth_code,
const std::string& signin_scoped_device_id);
private:
// Decides how to proceed on GAIA |error|. If the error looks temporary,
// retries |task| until max retry count is reached.
// If retry count runs out, or error condition is unrecoverable, it runs
// |error_handler|.
void RetryOnError(const GoogleServiceAuthError& error,
const base::Closure& task,
const base::Closure& error_handler);
// GaiaAuthConsumer overrides.
void OnClientOAuthSuccess(
const GaiaAuthConsumer::ClientOAuthResult& result) override;
void OnClientOAuthFailure(const GoogleServiceAuthError& error) override;
OAuth2TokenFetcher::Delegate* delegate_;
GaiaAuthFetcher auth_fetcher_;
// The retry counter. Increment this only when failure happened.
int retry_count_;
std::string session_index_;
std::string signin_scoped_device_id_;
std::string auth_code_;
DISALLOW_COPY_AND_ASSIGN(OAuth2TokenFetcher);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_TOKEN_FETCHER_H_