ozone: evdev: Sync caps lock LED state to evdev
[chromium-blink-merge.git] / chrome / browser / chromeos / login / signin / oauth2_login_verifier.h
blob9a4fbb57bd3aa210d2b66974416dee5a5a9888f3
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_
8 #include <string>
10 #include "base/basictypes.h"
11 #include "base/callback_forward.h"
12 #include "base/compiler_specific.h"
13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h"
15 #include "base/memory/weak_ptr.h"
16 #include "chrome/browser/profiles/profile.h"
17 #include "google_apis/gaia/gaia_auth_consumer.h"
18 #include "google_apis/gaia/gaia_auth_fetcher.h"
19 #include "google_apis/gaia/oauth2_token_service.h"
20 #include "net/url_request/url_request_context_getter.h"
22 namespace chromeos {
24 // Given the OAuth2 refresh token, this class will try to exchange it for GAIA
25 // credentials (SID+LSID) and populate current session's cookie jar.
26 class OAuth2LoginVerifier : public base::SupportsWeakPtr<OAuth2LoginVerifier>,
27 public GaiaAuthConsumer,
28 public OAuth2TokenService::Consumer {
29 public:
30 typedef base::Callback<void(bool connection_error)> ErrorHandler;
32 class Delegate {
33 public:
34 virtual ~Delegate() {}
35 // Invoked when cookie session is successfully merged.
36 virtual void OnSessionMergeSuccess() = 0;
38 // Invoked when cookie session can not be merged.
39 virtual void OnSessionMergeFailure(bool connection_error) = 0;
41 // Invoked when account list is retrieved during post-merge session
42 // verification.
43 virtual void OnListAccountsSuccess(const std::string& data) = 0;
45 // Invoked when post-merge session verification fails.
46 virtual void OnListAccountsFailure(bool connection_error) = 0;
49 OAuth2LoginVerifier(OAuth2LoginVerifier::Delegate* delegate,
50 net::URLRequestContextGetter* system_request_context,
51 net::URLRequestContextGetter* user_request_context,
52 const std::string& oauthlogin_access_token);
53 ~OAuth2LoginVerifier() override;
55 // Initiates verification of GAIA cookies in |profile|'s cookie jar.
56 void VerifyUserCookies(Profile* profile);
58 // Attempts to restore session from OAuth2 refresh token minting all necesarry
59 // tokens along the way (OAuth2 access token, SID/LSID, GAIA service token).
60 void VerifyProfileTokens(Profile* profile);
62 private:
63 enum SessionRestoreType {
64 RESTORE_UNDEFINED = 0,
65 RESTORE_FROM_GAIA_TOKEN = 1,
66 RESTORE_FROM_OAUTH2_REFRESH_TOKEN = 2,
68 // GaiaAuthConsumer overrides.
69 void OnUberAuthTokenSuccess(const std::string& token) override;
70 void OnUberAuthTokenFailure(const GoogleServiceAuthError& error) override;
71 void OnMergeSessionSuccess(const std::string& data) override;
72 void OnMergeSessionFailure(const GoogleServiceAuthError& error) override;
73 void OnListAccountsSuccess(const std::string& data) override;
74 void OnListAccountsFailure(const GoogleServiceAuthError& error) override;
76 // OAuth2TokenService::Consumer overrides.
77 void OnGetTokenSuccess(const OAuth2TokenService::Request* request,
78 const std::string& access_token,
79 const base::Time& expiration_time) override;
80 void OnGetTokenFailure(const OAuth2TokenService::Request* request,
81 const GoogleServiceAuthError& error) override;
83 // Starts fetching OAuth1 access token for OAuthLogin call.
84 void StartFetchingOAuthLoginAccessToken(Profile* profile);
86 // Starts OAuthLogin request for GAIA uber-token.
87 void StartOAuthLoginForUberToken();
89 // Attempts to merge session from present |gaia_token_|.
90 void StartMergeSession();
92 // Schedules post merge verification to ensure that browser session restore
93 // hasn't stumped over SID/LSID.
94 void SchedulePostMergeVerification();
96 // Starts GAIA auth cookies (SID/LSID) verification.
97 void StartAuthCookiesVerification();
99 // Decides how to proceed on GAIA |error|. If the error looks temporary,
100 // retries |task| after certain delay until max retry count is reached.
101 void RetryOnError(const char* operation_id,
102 const GoogleServiceAuthError& error,
103 const base::Closure& task_to_retry,
104 const ErrorHandler& error_handler);
106 // Called when network is connected.
107 void VerifyProfileTokensImpl(Profile* profile);
109 OAuth2LoginVerifier::Delegate* delegate_;
110 scoped_refptr<net::URLRequestContextGetter> system_request_context_;
111 scoped_refptr<net::URLRequestContextGetter> user_request_context_;
112 scoped_ptr<GaiaAuthFetcher> gaia_fetcher_;
113 std::string access_token_;
114 std::string gaia_token_;
115 scoped_ptr<OAuth2TokenService::Request> login_token_request_;
116 // The retry counter. Increment this only when failure happened.
117 int retry_count_;
119 DISALLOW_COPY_AND_ASSIGN(OAuth2LoginVerifier);
122 } // namespace chromeos
124 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_