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 COMPONENTS_USER_MANAGER_USER_MANAGER_H_
6 #define COMPONENTS_USER_MANAGER_USER_MANAGER_H_
10 #include "components/user_manager/user.h"
11 #include "components/user_manager/user_manager_export.h"
12 #include "components/user_manager/user_type.h"
15 class ScopedUserManagerEnabler
;
18 namespace user_manager
{
20 class RemoveUserDelegate
;
22 // Interface for UserManagerBase - that provides base implementation for
23 // Chrome OS user management. Typical features:
24 // * Get list of all know users (who have logged into this Chrome OS device)
25 // * Keep track for logged in/LRU users, active user in multi-user session.
26 // * Find/modify users, store user meta-data such as display name/email.
27 class USER_MANAGER_EXPORT UserManager
{
29 // Interface that observers of UserManager must implement in order
30 // to receive notification when local state preferences is changed
33 // Called when the local state preferences is changed.
34 virtual void LocalStateChanged(UserManager
* user_manager
);
40 // TODO(nkostylev): Refactor and move this observer out of UserManager.
41 // Observer interface that defines methods used to notify on user session /
42 // active user state changes. Default implementation is empty.
43 class UserSessionStateObserver
{
45 // Called when active user has changed.
46 virtual void ActiveUserChanged(const User
* active_user
);
48 // Called when another user got added to the existing session.
49 virtual void UserAddedToSession(const User
* added_user
);
51 // Called right before notifying on user change so that those who rely
52 // on user_id hash would be accessing up-to-date value.
53 virtual void ActiveUserHashChanged(const std::string
& hash
);
55 // Called when supervised status has changed.
56 virtual void UserChangedSupervisedStatus(User
* user
);
59 virtual ~UserSessionStateObserver();
62 // Data retrieved from user account.
63 class UserAccountData
{
65 UserAccountData(const base::string16
& display_name
,
66 const base::string16
& given_name
,
67 const std::string
& locale
);
69 const base::string16
& display_name() const { return display_name_
; }
70 const base::string16
& given_name() const { return given_name_
; }
71 const std::string
& locale() const { return locale_
; }
74 const base::string16 display_name_
;
75 const base::string16 given_name_
;
76 const std::string locale_
;
78 DISALLOW_COPY_AND_ASSIGN(UserAccountData
);
81 // Initializes UserManager instance to this. Normally should be called right
82 // after creation so that user_manager::UserManager::Get() doesn't fail.
83 // Tests could call this method if they are replacing existing UserManager
84 // instance with their own test instance.
87 // Checks whether the UserManager instance has been created already.
88 // This method is not thread-safe and must be called from the main UI thread.
89 static bool IsInitialized();
91 // Shuts down the UserManager. After this method has been called, the
92 // singleton has unregistered itself as an observer but remains available so
93 // that other classes can access it during their shutdown. This method is not
94 // thread-safe and must be called from the main UI thread.
95 virtual void Shutdown() = 0;
97 // Sets UserManager instance to NULL. Always call Shutdown() first.
98 // This method is not thread-safe and must be called from the main UI thread.
101 // Returns UserManager instance or will crash if it is |NULL| (has either not
102 // been created yet or is already destroyed). This method is not thread-safe
103 // and must be called from the main UI thread.
104 static UserManager
* Get();
106 virtual ~UserManager();
108 // Returns a list of users who have logged into this device previously. This
109 // is sorted by last login date with the most recent user at the beginning.
110 virtual const UserList
& GetUsers() const = 0;
112 // Returns list of users allowed for logging in into multi-profile session.
113 // Users that have a policy that prevents them from being added to the
114 // multi-profile session will still be part of this list as long as they
115 // are regular users (i.e. not a public session/supervised etc.).
116 // Returns an empty list in case when primary user is not a regular one or
117 // has a policy that prohibits it to be part of multi-profile session.
118 virtual UserList
GetUsersAllowedForMultiProfile() const = 0;
120 // Returns list of users allowed for supervised user creation.
121 // Returns an empty list in cases when supervised user creation or adding new
122 // users is restricted.
123 virtual UserList
GetUsersAllowedForSupervisedUsersCreation() const = 0;
125 // Returns a list of users who are currently logged in.
126 virtual const UserList
& GetLoggedInUsers() const = 0;
128 // Returns a list of users who are currently logged in in the LRU order -
129 // so the active user is the first one in the list. If there is no user logged
130 // in, the current user will be returned.
131 virtual const UserList
& GetLRULoggedInUsers() const = 0;
133 // Returns a list of users who can unlock the device.
134 // This list is based on policy and whether user is able to do unlock.
136 // * If user has primary-only policy then it is the only user in unlock users.
137 // * Otherwise all users with unrestricted policy are added to this list.
138 // All users that are unable to perform unlock are excluded from this list.
139 virtual UserList
GetUnlockUsers() const = 0;
141 // Returns the email of the owner user. Returns an empty string if there is
142 // no owner for the device.
143 virtual const std::string
& GetOwnerEmail() const = 0;
145 // Indicates that a user with the given |user_id| has just logged in. The
146 // persistent list is updated accordingly if the user is not ephemeral.
147 // |browser_restart| is true when reloading Chrome after crash to distinguish
148 // from normal sign in flow.
149 // |username_hash| is used to identify homedir mount point.
150 virtual void UserLoggedIn(const std::string
& user_id
,
151 const std::string
& username_hash
,
152 bool browser_restart
) = 0;
154 // Switches to active user identified by |user_id|. User has to be logged in.
155 virtual void SwitchActiveUser(const std::string
& user_id
) = 0;
157 // Switches to the last active user (called after crash happens and session
158 // restore has completed).
159 virtual void SwitchToLastActiveUser() = 0;
161 // Called when browser session is started i.e. after
162 // browser_creator.LaunchBrowser(...) was called after user sign in.
163 // When user is at the image screen IsUserLoggedIn() will return true
164 // but IsSessionStarted() will return false. During the kiosk splash screen,
165 // we perform additional initialization after the user is logged in but
166 // before the session has been started.
167 // Fires NOTIFICATION_SESSION_STARTED.
168 virtual void SessionStarted() = 0;
170 // Removes the user from the device. Note, it will verify that the given user
171 // isn't the owner, so calling this method for the owner will take no effect.
172 // Note, |delegate| can be NULL.
173 virtual void RemoveUser(const std::string
& user_id
,
174 RemoveUserDelegate
* delegate
) = 0;
176 // Removes the user from the persistent list only. Also removes the user's
178 virtual void RemoveUserFromList(const std::string
& user_id
) = 0;
180 // Returns true if a user with the given user id is found in the persistent
181 // list or currently logged in as ephemeral.
182 virtual bool IsKnownUser(const std::string
& user_id
) const = 0;
184 // Returns the user with the given user id if found in the persistent
185 // list or currently logged in as ephemeral. Returns |NULL| otherwise.
186 virtual const User
* FindUser(const std::string
& user_id
) const = 0;
188 // Returns the user with the given user id if found in the persistent
189 // list or currently logged in as ephemeral. Returns |NULL| otherwise.
190 // Same as FindUser but returns non-const pointer to User object.
191 virtual User
* FindUserAndModify(const std::string
& user_id
) = 0;
193 // Returns the logged-in user.
194 // TODO(nkostylev): Deprecate this call, move clients to GetActiveUser().
195 // http://crbug.com/230852
196 virtual const User
* GetLoggedInUser() const = 0;
197 virtual User
* GetLoggedInUser() = 0;
199 // Returns the logged-in user that is currently active within this session.
200 // There could be multiple users logged in at the the same but for now
201 // we support only one of them being active.
202 virtual const User
* GetActiveUser() const = 0;
203 virtual User
* GetActiveUser() = 0;
205 // Returns the primary user of the current session. It is recorded for the
206 // first signed-in user and does not change thereafter.
207 virtual const User
* GetPrimaryUser() const = 0;
209 // Saves user's oauth token status in local state preferences.
210 virtual void SaveUserOAuthStatus(
211 const std::string
& user_id
,
212 User::OAuthTokenStatus oauth_token_status
) = 0;
214 // Saves a flag indicating whether online authentication against GAIA should
215 // be enforced during the user's next sign-in.
216 virtual void SaveForceOnlineSignin(const std::string
& user_id
,
217 bool force_online_signin
) = 0;
219 // Saves user's displayed name in local state preferences.
220 // Ignored If there is no such user.
221 virtual void SaveUserDisplayName(const std::string
& user_id
,
222 const base::string16
& display_name
) = 0;
224 // Updates data upon User Account download.
225 virtual void UpdateUserAccountData(const std::string
& user_id
,
226 const UserAccountData
& account_data
) = 0;
228 // Returns the display name for user |user_id| if it is known (was
229 // previously set by a |SaveUserDisplayName| call).
230 // Otherwise, returns an empty string.
231 virtual base::string16
GetUserDisplayName(
232 const std::string
& user_id
) const = 0;
234 // Saves user's displayed (non-canonical) email in local state preferences.
235 // Ignored If there is no such user.
236 virtual void SaveUserDisplayEmail(const std::string
& user_id
,
237 const std::string
& display_email
) = 0;
239 // Returns the display email for user |user_id| if it is known (was
240 // previously set by a |SaveUserDisplayEmail| call).
241 // Otherwise, returns |user_id| itself.
242 virtual std::string
GetUserDisplayEmail(const std::string
& user_id
) const = 0;
244 // Saves user's type for user |user_id| into local state preferences.
245 // Ignored If there is no such user.
246 virtual void SaveUserType(const std::string
& user_id
,
247 const UserType
& user_type
) = 0;
249 // Returns true if current user is an owner.
250 virtual bool IsCurrentUserOwner() const = 0;
252 // Returns true if current user is not existing one (hasn't signed in before).
253 virtual bool IsCurrentUserNew() const = 0;
255 // Returns true if data stored or cached for the current user outside that
256 // user's cryptohome (wallpaper, avatar, OAuth token status, display name,
257 // display email) is ephemeral.
258 virtual bool IsCurrentUserNonCryptohomeDataEphemeral() const = 0;
260 // Returns true if the current user's session can be locked (i.e. the user has
261 // a password with which to unlock the session).
262 virtual bool CanCurrentUserLock() const = 0;
264 // Returns true if at least one user has signed in.
265 virtual bool IsUserLoggedIn() const = 0;
267 // Returns true if we're logged in as a user with gaia account.
268 virtual bool IsLoggedInAsUserWithGaiaAccount() const = 0;
270 // Returns true if we're logged in as a regular supervised user.
271 virtual bool IsLoggedInAsRegularSupervisedUser() const = 0;
273 // Returns true if we're logged in as a demo user.
274 virtual bool IsLoggedInAsDemoUser() const = 0;
276 // Returns true if we're logged in as a public account.
277 virtual bool IsLoggedInAsPublicAccount() const = 0;
279 // Returns true if we're logged in as a Guest.
280 virtual bool IsLoggedInAsGuest() const = 0;
282 // Returns true if we're logged in as a supervised user.
283 virtual bool IsLoggedInAsSupervisedUser() const = 0;
285 // Returns true if we're logged in as a kiosk app.
286 virtual bool IsLoggedInAsKioskApp() const = 0;
288 // Returns true if we're logged in as the stub user used for testing on Linux.
289 virtual bool IsLoggedInAsStub() const = 0;
291 // Returns true if we're logged in and browser has been started i.e.
292 // browser_creator.LaunchBrowser(...) was called after sign in
293 // or restart after crash.
294 virtual bool IsSessionStarted() const = 0;
296 // Returns true if data stored or cached for the user with the given user id
297 // address outside that user's cryptohome (wallpaper, avatar, OAuth token
298 // status, display name, display email) is to be treated as ephemeral.
299 virtual bool IsUserNonCryptohomeDataEphemeral(
300 const std::string
& user_id
) const = 0;
302 virtual void AddObserver(Observer
* obs
) = 0;
303 virtual void RemoveObserver(Observer
* obs
) = 0;
305 virtual void AddSessionStateObserver(UserSessionStateObserver
* obs
) = 0;
306 virtual void RemoveSessionStateObserver(UserSessionStateObserver
* obs
) = 0;
308 virtual void NotifyLocalStateChanged() = 0;
310 // Makes the supervised status change and notifies observers.
311 virtual void ChangeUserSupervisedStatus(User
* user
, bool is_supervised
) = 0;
314 // Returns true if supervised users allowed.
315 virtual bool AreSupervisedUsersAllowed() const = 0;
318 // Sets UserManager instance.
319 static void SetInstance(UserManager
* user_manager
);
321 // Pointer to the existing UserManager instance (if any).
322 // Usually is set by calling Initialize(), reset by calling Destroy().
323 // Not owned since specific implementation of UserManager should decide on its
324 // own appropriate owner. For src/chrome implementation such place is
325 // g_browser_process->platform_part().
326 static UserManager
* instance
;
329 friend class chromeos::ScopedUserManagerEnabler
;
331 // Same as Get() but doesn't won't crash is current instance is NULL.
332 static UserManager
* GetForTesting();
334 // Sets UserManager instance to the given |user_manager|.
335 // Returns the previous value of the instance.
336 static UserManager
* SetForTesting(UserManager
* user_manager
);
339 } // namespace user_manager
341 #endif // COMPONENTS_USER_MANAGER_USER_MANAGER_H_