OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_AUTH_ONLINE_ATTEMPT_H_ | 5 #ifndef CHROMEOS_LOGIN_AUTH_ONLINE_ATTEMPT_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_AUTH_ONLINE_ATTEMPT_H_ | 6 #define CHROMEOS_LOGIN_AUTH_ONLINE_ATTEMPT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 15 #include "chromeos/chromeos_export.h" |
15 #include "chromeos/login/auth/auth_status_consumer.h" | 16 #include "chromeos/login/auth/auth_status_consumer.h" |
16 #include "google_apis/gaia/gaia_auth_consumer.h" | 17 #include "google_apis/gaia/gaia_auth_consumer.h" |
17 #include "google_apis/gaia/google_service_auth_error.h" | 18 #include "google_apis/gaia/google_service_auth_error.h" |
18 | 19 |
19 class GaiaAuthFetcher; | 20 class GaiaAuthFetcher; |
20 | 21 |
21 namespace content { | 22 namespace net { |
22 class BrowserContext; | 23 class URLRequestContextGetter; |
23 } | 24 } |
24 | 25 |
25 namespace chromeos { | 26 namespace chromeos { |
26 class AuthAttemptState; | 27 class AuthAttemptState; |
27 class AuthAttemptStateResolver; | 28 class AuthAttemptStateResolver; |
28 | 29 |
29 class OnlineAttempt | 30 class CHROMEOS_EXPORT OnlineAttempt : public GaiaAuthConsumer { |
30 : public GaiaAuthConsumer { | |
31 public: | 31 public: |
32 OnlineAttempt(AuthAttemptState* current_attempt, | 32 OnlineAttempt(AuthAttemptState* current_attempt, |
33 AuthAttemptStateResolver* callback); | 33 AuthAttemptStateResolver* callback); |
34 virtual ~OnlineAttempt(); | 34 virtual ~OnlineAttempt(); |
35 | 35 |
36 // Initiate the online login attempt either through client or auth login. | 36 // Initiate the online login attempt either through client or auth login. |
37 // Status will be recorded in |current_attempt|, and resolver_->Resolve() will | 37 // Status will be recorded in |current_attempt|, and resolver_->Resolve() will |
38 // be called on the IO thread when useful state is available. | 38 // be called on the IO thread when useful state is available. |
39 // Must be called on the UI thread. | 39 // Must be called on the UI thread. |
40 void Initiate(content::BrowserContext* auth_context); | 40 void Initiate(net::URLRequestContextGetter* request_context); |
41 | 41 |
42 // GaiaAuthConsumer overrides. Callbacks from GaiaAuthFetcher | 42 // GaiaAuthConsumer overrides. Callbacks from GaiaAuthFetcher |
43 virtual void OnClientLoginFailure( | 43 virtual void OnClientLoginFailure( |
44 const GoogleServiceAuthError& error) OVERRIDE; | 44 const GoogleServiceAuthError& error) OVERRIDE; |
45 virtual void OnClientLoginSuccess( | 45 virtual void OnClientLoginSuccess( |
46 const GaiaAuthConsumer::ClientLoginResult& credentials) OVERRIDE; | 46 const GaiaAuthConsumer::ClientLoginResult& credentials) OVERRIDE; |
47 | 47 |
48 private: | 48 private: |
49 FRIEND_TEST_ALL_PREFIXES(OnlineAttemptTest, LoginSuccess); | 49 FRIEND_TEST_ALL_PREFIXES(OnlineAttemptTest, LoginSuccess); |
50 FRIEND_TEST_ALL_PREFIXES(OnlineAttemptTest, TwoFactorSuccess); | 50 FRIEND_TEST_ALL_PREFIXES(OnlineAttemptTest, TwoFactorSuccess); |
51 | 51 |
52 // Milliseconds until we timeout our attempt to hit ClientLogin. | 52 // Milliseconds until we timeout our attempt to hit ClientLogin. |
53 static const int kClientLoginTimeoutMs; | 53 static const int kClientLoginTimeoutMs; |
54 | 54 |
55 void TryClientLogin(); | 55 void TryClientLogin(); |
56 void CancelClientLogin(); | 56 void CancelClientLogin(); |
57 | 57 |
58 void TriggerResolve(const AuthFailure& outcome); | 58 void TriggerResolve(const AuthFailure& outcome); |
59 | 59 |
60 bool HasPendingFetch(); | 60 bool HasPendingFetch(); |
61 void CancelRequest(); | 61 void CancelRequest(); |
62 | 62 |
| 63 scoped_refptr<base::MessageLoopProxy> message_loop_; |
| 64 |
63 AuthAttemptState* const attempt_; | 65 AuthAttemptState* const attempt_; |
64 AuthAttemptStateResolver* const resolver_; | 66 AuthAttemptStateResolver* const resolver_; |
65 | 67 |
66 // Handles ClientLogin communications with Gaia. | 68 // Handles ClientLogin communications with Gaia. |
67 scoped_ptr<GaiaAuthFetcher> client_fetcher_; | 69 scoped_ptr<GaiaAuthFetcher> client_fetcher_; |
68 | 70 |
69 // Used to cancel the CancelClientLogin closure. | 71 // Used to cancel the CancelClientLogin closure. |
70 base::WeakPtrFactory<OnlineAttempt> weak_factory_; | 72 base::WeakPtrFactory<OnlineAttempt> weak_factory_; |
71 | 73 |
72 // Whether we're willing to re-try the ClientLogin attempt. | 74 // Whether we're willing to re-try the ClientLogin attempt. |
73 bool try_again_; | 75 bool try_again_; |
74 | 76 |
75 friend class OnlineAttemptTest; | 77 friend class OnlineAttemptTest; |
76 DISALLOW_COPY_AND_ASSIGN(OnlineAttempt); | 78 DISALLOW_COPY_AND_ASSIGN(OnlineAttempt); |
77 }; | 79 }; |
78 | 80 |
79 } // namespace chromeos | 81 } // namespace chromeos |
80 | 82 |
81 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_AUTH_ONLINE_ATTEMPT_H_ | 83 #endif // CHROMEOS_LOGIN_AUTH_ONLINE_ATTEMPT_H_ |
OLD | NEW |