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 CHROMEOS_LOGIN_AUTH_AUTHENTICATOR_H_ | 5 #ifndef CHROMEOS_LOGIN_AUTH_AUTHENTICATOR_H_ |
6 #define CHROMEOS_LOGIN_AUTH_AUTHENTICATOR_H_ | 6 #define CHROMEOS_LOGIN_AUTH_AUTHENTICATOR_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "chromeos/chromeos_export.h" | 12 #include "chromeos/chromeos_export.h" |
13 #include "chromeos/login/auth/auth_status_consumer.h" | 13 #include "chromeos/login/auth/auth_status_consumer.h" |
14 #include "google_apis/gaia/gaia_auth_consumer.h" | 14 #include "google_apis/gaia/gaia_auth_consumer.h" |
15 | 15 |
16 namespace content { | 16 class Profile; |
17 class BrowserContext; | |
18 } | |
19 | 17 |
20 namespace chromeos { | 18 namespace chromeos { |
21 | 19 |
22 class UserContext; | 20 class UserContext; |
23 | 21 |
24 // An interface for objects that will authenticate a Chromium OS user. | 22 // An interface for objects that will authenticate a Chromium OS user. |
25 // Callbacks will be called on the UI thread: | 23 // Callbacks will be called on the UI thread: |
26 // 1. On successful authentication, will call consumer_->OnAuthSuccess(). | 24 // 1. On successful authentication, will call consumer_->OnAuthSuccess(). |
27 // 2. On failure, will call consumer_->OnAuthFailure(). | 25 // 2. On failure, will call consumer_->OnAuthFailure(). |
28 // 3. On password change, will call consumer_->OnPasswordChangeDetected(). | 26 // 3. On password change, will call consumer_->OnPasswordChangeDetected(). |
29 class CHROMEOS_EXPORT Authenticator | 27 class CHROMEOS_EXPORT Authenticator |
30 : public base::RefCountedThreadSafe<Authenticator> { | 28 : public base::RefCountedThreadSafe<Authenticator> { |
31 public: | 29 public: |
32 explicit Authenticator(AuthStatusConsumer* consumer); | 30 explicit Authenticator(AuthStatusConsumer* consumer); |
33 | 31 |
34 // Given externally authenticated username and password (part of | 32 // Given externally authenticated username and password (part of |
35 // |user_context|), this method attempts to complete authentication process. | 33 // |user_context|), this method attempts to complete authentication process. |
36 virtual void CompleteLogin(content::BrowserContext* browser_context, | 34 virtual void CompleteLogin(Profile* profile, |
37 const UserContext& user_context) = 0; | 35 const UserContext& user_context) = 0; |
38 | 36 |
39 // Given a user credentials in |user_context|, | 37 // Given a user credentials in |user_context|, |
40 // this method attempts to authenticate to login. | 38 // this method attempts to authenticate to login. |
41 // Must be called on the UI thread. | 39 // Must be called on the UI thread. |
42 virtual void AuthenticateToLogin(content::BrowserContext* browser_context, | 40 virtual void AuthenticateToLogin(Profile* profile, |
43 const UserContext& user_context) = 0; | 41 const UserContext& user_context) = 0; |
44 | 42 |
45 // Given a user credentials in |user_context|, this method attempts to | 43 // Given a user credentials in |user_context|, this method attempts to |
46 // authenticate to unlock the computer. | 44 // authenticate to unlock the computer. |
47 // Must be called on the UI thread. | 45 // Must be called on the UI thread. |
48 virtual void AuthenticateToUnlock(const UserContext& user_context) = 0; | 46 virtual void AuthenticateToUnlock(const UserContext& user_context) = 0; |
49 | 47 |
50 // Initiates supervised user login. | 48 // Initiates supervised user login. |
51 virtual void LoginAsSupervisedUser(const UserContext& user_context) = 0; | 49 virtual void LoginAsSupervisedUser(const UserContext& user_context) = 0; |
52 | 50 |
(...skipping 28 matching lines...) Expand all Loading... |
81 // occurred. | 79 // occurred. |
82 // Call this method to migrate the user's encrypted data | 80 // Call this method to migrate the user's encrypted data |
83 // forward to use his new password. |old_password| is the password | 81 // forward to use his new password. |old_password| is the password |
84 // his data was last encrypted with. | 82 // his data was last encrypted with. |
85 virtual void RecoverEncryptedData(const std::string& old_password) = 0; | 83 virtual void RecoverEncryptedData(const std::string& old_password) = 0; |
86 | 84 |
87 // Call this method to erase the user's encrypted data | 85 // Call this method to erase the user's encrypted data |
88 // and create a new cryptohome. | 86 // and create a new cryptohome. |
89 virtual void ResyncEncryptedData() = 0; | 87 virtual void ResyncEncryptedData() = 0; |
90 | 88 |
91 // BrowserContext (usually off the record) that was used to perform the last | 89 // Profile (usually off the record ) that was used to perform the last |
92 // authentication process. | 90 // authentication process. |
93 content::BrowserContext* authentication_context() { | 91 Profile* authentication_profile() { return authentication_profile_; } |
94 return authentication_context_; | |
95 } | |
96 | 92 |
97 // Sets consumer explicitly. | 93 // Sets consumer explicitly. |
98 void SetConsumer(AuthStatusConsumer* consumer); | 94 void SetConsumer(AuthStatusConsumer* consumer); |
99 | 95 |
100 protected: | 96 protected: |
101 virtual ~Authenticator(); | 97 virtual ~Authenticator(); |
102 | 98 |
103 AuthStatusConsumer* consumer_; | 99 AuthStatusConsumer* consumer_; |
104 content::BrowserContext* authentication_context_; | 100 Profile* authentication_profile_; |
105 | 101 |
106 private: | 102 private: |
107 friend class base::RefCountedThreadSafe<Authenticator>; | 103 friend class base::RefCountedThreadSafe<Authenticator>; |
108 | 104 |
109 DISALLOW_COPY_AND_ASSIGN(Authenticator); | 105 DISALLOW_COPY_AND_ASSIGN(Authenticator); |
110 }; | 106 }; |
111 | 107 |
112 } // namespace chromeos | 108 } // namespace chromeos |
113 | 109 |
114 #endif // CHROMEOS_LOGIN_AUTH_AUTHENTICATOR_H_ | 110 #endif // CHROMEOS_LOGIN_AUTH_AUTHENTICATOR_H_ |
OLD | NEW |