Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2136)

Unified Diff: chrome/browser/chromeos/login/users/chrome_user_manager.cc

Issue 444903002: [cros] user_manager component - move UserManagerBase and UserManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/users/chrome_user_manager.cc
diff --git a/chrome/browser/chromeos/login/users/chrome_user_manager.cc b/chrome/browser/chromeos/login/users/chrome_user_manager.cc
index d7fdd8b90c530105ed15b3f865df64497bafbed3..1800e302f24de26cf725dd50efe530e82a60564d 100644
--- a/chrome/browser/chromeos/login/users/chrome_user_manager.cc
+++ b/chrome/browser/chromeos/login/users/chrome_user_manager.cc
@@ -3,1016 +3,23 @@
// found in the LICENSE file.
#include "chrome/browser/chromeos/login/users/chrome_user_manager.h"
-
-#include <cstddef>
-#include <set>
-
-#include "ash/multi_profile_uma.h"
-#include "base/bind.h"
-#include "base/bind_helpers.h"
-#include "base/command_line.h"
-#include "base/compiler_specific.h"
-#include "base/format_macros.h"
-#include "base/logging.h"
-#include "base/metrics/histogram.h"
-#include "base/prefs/pref_registry_simple.h"
-#include "base/prefs/pref_service.h"
-#include "base/prefs/scoped_user_pref_update.h"
-#include "base/strings/string_util.h"
-#include "base/strings/stringprintf.h"
-#include "base/strings/utf_string_conversions.h"
-#include "base/values.h"
-#include "chrome/browser/browser_process.h"
-#include "chrome/browser/chrome_notification_types.h"
-#include "chrome/browser/chromeos/login/demo_mode/demo_app_launcher.h"
-#include "chrome/browser/chromeos/login/session/user_session_manager.h"
-#include "chrome/browser/chromeos/login/signin/auth_sync_observer.h"
-#include "chrome/browser/chromeos/login/signin/auth_sync_observer_factory.h"
-#include "chrome/browser/chromeos/login/users/avatar/user_image_manager_impl.h"
-#include "chrome/browser/chromeos/login/users/multi_profile_user_controller.h"
-#include "chrome/browser/chromeos/login/users/remove_user_delegate.h"
-#include "chrome/browser/chromeos/login/users/supervised_user_manager_impl.h"
-#include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h"
-#include "chrome/browser/chromeos/policy/device_local_account.h"
-#include "chrome/browser/chromeos/profiles/multiprofiles_session_aborted_dialog.h"
-#include "chrome/browser/chromeos/profiles/profile_helper.h"
-#include "chrome/browser/chromeos/session_length_limiter.h"
-#include "chrome/browser/profiles/profile.h"
-#include "chrome/browser/supervised_user/chromeos/manager_password_service_factory.h"
-#include "chrome/browser/supervised_user/chromeos/supervised_user_password_service_factory.h"
-#include "chrome/common/chrome_constants.h"
-#include "chrome/common/chrome_switches.h"
-#include "chrome/common/crash_keys.h"
-#include "chrome/common/pref_names.h"
-#include "chrome/grit/theme_resources.h"
-#include "chromeos/chromeos_switches.h"
-#include "chromeos/login/user_names.h"
-#include "chromeos/settings/cros_settings_names.h"
-#include "components/session_manager/core/session_manager.h"
-#include "components/user_manager/user_image/user_image.h"
-#include "components/user_manager/user_type.h"
-#include "content/public/browser/browser_thread.h"
-#include "content/public/browser/notification_service.h"
-#include "policy/policy_constants.h"
-#include "ui/base/resource/resource_bundle.h"
-#include "ui/wm/core/wm_core_switches.h"
-
-using content::BrowserThread;
+#include "components/user_manager/user_manager.h"
namespace chromeos {
-namespace {
-
-// A vector pref of the the regular users known on this device, arranged in LRU
-// order.
-const char kRegularUsers[] = "LoggedInUsers";
-
-// A vector pref of the public accounts defined on this device.
-const char kPublicAccounts[] = "PublicAccounts";
-
-// A string pref that gets set when a public account is removed but a user is
-// currently logged into that account, requiring the account's data to be
-// removed after logout.
-const char kPublicAccountPendingDataRemoval[] =
- "PublicAccountPendingDataRemoval";
-
-} // namespace
-// static
-void UserManager::RegisterPrefs(PrefRegistrySimple* registry) {
- UserManagerBase::RegisterPrefs(registry);
-
- registry->RegisterListPref(kPublicAccounts);
- registry->RegisterStringPref(kPublicAccountPendingDataRemoval, std::string());
- SupervisedUserManager::RegisterPrefs(registry);
- SessionLengthLimiter::RegisterPrefs(registry);
-}
-
-ChromeUserManager::ChromeUserManager()
- : cros_settings_(CrosSettings::Get()),
- device_local_account_policy_service_(NULL),
- supervised_user_manager_(new SupervisedUserManagerImpl(this)),
- weak_factory_(this) {
- UpdateNumberOfUsers();
-
- // UserManager instance should be used only on UI thread.
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- registrar_.Add(this,
- chrome::NOTIFICATION_OWNERSHIP_STATUS_CHANGED,
- content::NotificationService::AllSources());
- registrar_.Add(this,
- chrome::NOTIFICATION_LOGIN_USER_PROFILE_PREPARED,
- content::NotificationService::AllSources());
- registrar_.Add(this,
- chrome::NOTIFICATION_PROFILE_CREATED,
- content::NotificationService::AllSources());
-
- // Since we're in ctor postpone any actions till this is fully created.
- if (base::MessageLoop::current()) {
- base::MessageLoop::current()->PostTask(
- FROM_HERE,
- base::Bind(&ChromeUserManager::RetrieveTrustedDevicePolicies,
- weak_factory_.GetWeakPtr()));
- }
-
- local_accounts_subscription_ = cros_settings_->AddSettingsObserver(
- kAccountsPrefDeviceLocalAccounts,
- base::Bind(&ChromeUserManager::RetrieveTrustedDevicePolicies,
- weak_factory_.GetWeakPtr()));
- multi_profile_user_controller_.reset(
- new MultiProfileUserController(this, GetLocalState()));
-
- policy::BrowserPolicyConnectorChromeOS* connector =
- g_browser_process->platform_part()->browser_policy_connector_chromeos();
- avatar_policy_observer_.reset(new policy::CloudExternalDataPolicyObserver(
- cros_settings_,
- connector->GetDeviceLocalAccountPolicyService(),
- policy::key::kUserAvatarImage,
- this));
- avatar_policy_observer_->Init();
-
- wallpaper_policy_observer_.reset(new policy::CloudExternalDataPolicyObserver(
- cros_settings_,
- connector->GetDeviceLocalAccountPolicyService(),
- policy::key::kWallpaperImage,
- this));
- wallpaper_policy_observer_->Init();
+ChromeUserManager::ChromeUserManager(
+ scoped_refptr<base::TaskRunner> task_runner,
+ scoped_refptr<base::TaskRunner> blocking_task_runner)
+ : UserManagerBase(task_runner, blocking_task_runner) {
}
ChromeUserManager::~ChromeUserManager() {
}
-void ChromeUserManager::Shutdown() {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- UserManagerBase::Shutdown();
-
- local_accounts_subscription_.reset();
-
- // Stop the session length limiter.
- session_length_limiter_.reset();
-
- if (device_local_account_policy_service_)
- device_local_account_policy_service_->RemoveObserver(this);
-
- for (UserImageManagerMap::iterator it = user_image_managers_.begin(),
- ie = user_image_managers_.end();
- it != ie;
- ++it) {
- it->second->Shutdown();
- }
- multi_profile_user_controller_.reset();
- avatar_policy_observer_.reset();
- wallpaper_policy_observer_.reset();
- registrar_.RemoveAll();
-}
-
-MultiProfileUserController* ChromeUserManager::GetMultiProfileUserController() {
- return multi_profile_user_controller_.get();
-}
-
-UserImageManager* ChromeUserManager::GetUserImageManager(
- const std::string& user_id) {
- UserImageManagerMap::iterator ui = user_image_managers_.find(user_id);
- if (ui != user_image_managers_.end())
- return ui->second.get();
- linked_ptr<UserImageManagerImpl> mgr(new UserImageManagerImpl(user_id, this));
- user_image_managers_[user_id] = mgr;
- return mgr.get();
-}
-
-SupervisedUserManager* ChromeUserManager::GetSupervisedUserManager() {
- return supervised_user_manager_.get();
-}
-
-user_manager::UserList ChromeUserManager::GetUsersAdmittedForMultiProfile()
- const {
- // Supervised users are not allowed to use multi-profiles.
- if (GetLoggedInUsers().size() == 1 &&
- GetPrimaryUser()->GetType() != user_manager::USER_TYPE_REGULAR) {
- return user_manager::UserList();
- }
-
- user_manager::UserList result;
- const user_manager::UserList& users = GetUsers();
- for (user_manager::UserList::const_iterator it = users.begin();
- it != users.end();
- ++it) {
- if ((*it)->GetType() == user_manager::USER_TYPE_REGULAR &&
- !(*it)->is_logged_in()) {
- MultiProfileUserController::UserAllowedInSessionReason check;
- multi_profile_user_controller_->IsUserAllowedInSession((*it)->email(),
- &check);
- if (check ==
- MultiProfileUserController::NOT_ALLOWED_PRIMARY_USER_POLICY_FORBIDS) {
- return user_manager::UserList();
- }
-
- // Users with a policy that prevents them being added to a session will be
- // shown in login UI but will be grayed out.
- // Same applies to owner account (see http://crbug.com/385034).
- if (check == MultiProfileUserController::ALLOWED ||
- check == MultiProfileUserController::NOT_ALLOWED_POLICY_FORBIDS ||
- check == MultiProfileUserController::NOT_ALLOWED_OWNER_AS_SECONDARY ||
- check ==
- MultiProfileUserController::NOT_ALLOWED_POLICY_CERT_TAINTED) {
- result.push_back(*it);
- }
- }
- }
-
- return result;
-}
-
-user_manager::UserList ChromeUserManager::GetUnlockUsers() const {
- const user_manager::UserList& logged_in_users = GetLoggedInUsers();
- if (logged_in_users.empty())
- return user_manager::UserList();
-
- user_manager::UserList unlock_users;
- Profile* profile =
- ProfileHelper::Get()->GetProfileByUserUnsafe(GetPrimaryUser());
- std::string primary_behavior =
- profile->GetPrefs()->GetString(prefs::kMultiProfileUserBehavior);
-
- // Specific case: only one logged in user or
- // primary user has primary-only multi-profile policy.
- if (logged_in_users.size() == 1 ||
- primary_behavior == MultiProfileUserController::kBehaviorPrimaryOnly) {
- if (GetPrimaryUser()->can_lock())
- unlock_users.push_back(primary_user_);
- } else {
- // Fill list of potential unlock users based on multi-profile policy state.
- for (user_manager::UserList::const_iterator it = logged_in_users.begin();
- it != logged_in_users.end();
- ++it) {
- user_manager::User* user = (*it);
- Profile* profile = ProfileHelper::Get()->GetProfileByUserUnsafe(user);
- const std::string behavior =
- profile->GetPrefs()->GetString(prefs::kMultiProfileUserBehavior);
- if (behavior == MultiProfileUserController::kBehaviorUnrestricted &&
- user->can_lock()) {
- unlock_users.push_back(user);
- } else if (behavior == MultiProfileUserController::kBehaviorPrimaryOnly) {
- NOTREACHED()
- << "Spotted primary-only multi-profile policy for non-primary user";
- }
- }
- }
-
- return unlock_users;
-}
-
-void ChromeUserManager::SessionStarted() {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- UserManagerBase::SessionStarted();
-
- content::NotificationService::current()->Notify(
- chrome::NOTIFICATION_SESSION_STARTED,
- content::Source<UserManager>(this),
- content::Details<const user_manager::User>(GetActiveUser()));
-}
-
-void ChromeUserManager::RemoveUserInternal(const std::string& user_email,
- RemoveUserDelegate* delegate) {
- CrosSettings* cros_settings = CrosSettings::Get();
-
- const base::Closure& callback =
- base::Bind(&ChromeUserManager::RemoveUserInternal,
- weak_factory_.GetWeakPtr(),
- user_email,
- delegate);
-
- // Ensure the value of owner email has been fetched.
- if (CrosSettingsProvider::TRUSTED !=
- cros_settings->PrepareTrustedValues(callback)) {
- // Value of owner email is not fetched yet. RemoveUserInternal will be
- // called again after fetch completion.
- return;
- }
- std::string owner;
- cros_settings->GetString(kDeviceOwner, &owner);
- if (user_email == owner) {
- // Owner is not allowed to be removed from the device.
- return;
- }
- RemoveNonOwnerUserInternal(user_email, delegate);
-}
-
-void ChromeUserManager::SaveUserOAuthStatus(
- const std::string& user_id,
- user_manager::User::OAuthTokenStatus oauth_token_status) {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- UserManagerBase::SaveUserOAuthStatus(user_id, oauth_token_status);
-
- GetUserFlow(user_id)->HandleOAuthTokenStatusChange(oauth_token_status);
-}
-
-void ChromeUserManager::SaveUserDisplayName(
- const std::string& user_id,
- const base::string16& display_name) {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- UserManagerBase::SaveUserDisplayName(user_id, display_name);
-
- // Do not update local state if data stored or cached outside the user's
- // cryptohome is to be treated as ephemeral.
- if (!IsUserNonCryptohomeDataEphemeral(user_id))
- supervised_user_manager_->UpdateManagerName(user_id, display_name);
-}
-
-void ChromeUserManager::StopPolicyObserverForTesting() {
- avatar_policy_observer_.reset();
- wallpaper_policy_observer_.reset();
-}
-
-void ChromeUserManager::Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) {
- switch (type) {
- case chrome::NOTIFICATION_OWNERSHIP_STATUS_CHANGED:
- if (!device_local_account_policy_service_) {
- policy::BrowserPolicyConnectorChromeOS* connector =
- g_browser_process->platform_part()
- ->browser_policy_connector_chromeos();
- device_local_account_policy_service_ =
- connector->GetDeviceLocalAccountPolicyService();
- if (device_local_account_policy_service_)
- device_local_account_policy_service_->AddObserver(this);
- }
- RetrieveTrustedDevicePolicies();
- UpdateOwnership();
- break;
- case chrome::NOTIFICATION_LOGIN_USER_PROFILE_PREPARED: {
- Profile* profile = content::Details<Profile>(details).ptr();
- if (IsUserLoggedIn() && !IsLoggedInAsGuest() && !IsLoggedInAsKioskApp()) {
- if (IsLoggedInAsSupervisedUser())
- SupervisedUserPasswordServiceFactory::GetForProfile(profile);
- if (IsLoggedInAsRegularUser())
- ManagerPasswordServiceFactory::GetForProfile(profile);
-
- if (!profile->IsOffTheRecord()) {
- AuthSyncObserver* sync_observer =
- AuthSyncObserverFactory::GetInstance()->GetForProfile(profile);
- sync_observer->StartObserving();
- multi_profile_user_controller_->StartObserving(profile);
- }
- }
- break;
- }
- case chrome::NOTIFICATION_PROFILE_CREATED: {
- Profile* profile = content::Source<Profile>(source).ptr();
- user_manager::User* user =
- ProfileHelper::Get()->GetUserByProfile(profile);
- if (user != NULL)
- user->set_profile_is_created();
-
- // If there is pending user switch, do it now.
- if (!GetPendingUserSwitchID().empty()) {
- // Call SwitchActiveUser async because otherwise it may cause
- // ProfileManager::GetProfile before the profile gets registered
- // in ProfileManager. It happens in case of sync profile load when
- // NOTIFICATION_PROFILE_CREATED is called synchronously.
- base::MessageLoop::current()->PostTask(
- FROM_HERE,
- base::Bind(&ChromeUserManager::SwitchActiveUser,
- weak_factory_.GetWeakPtr(),
- GetPendingUserSwitchID()));
- SetPendingUserSwitchID(std::string());
- }
- break;
- }
- default:
- NOTREACHED();
- }
-}
-
-void ChromeUserManager::OnExternalDataSet(const std::string& policy,
- const std::string& user_id) {
- if (policy == policy::key::kUserAvatarImage)
- GetUserImageManager(user_id)->OnExternalDataSet(policy);
- else if (policy == policy::key::kWallpaperImage)
- WallpaperManager::Get()->OnPolicySet(policy, user_id);
- else
- NOTREACHED();
-}
-
-void ChromeUserManager::OnExternalDataCleared(const std::string& policy,
- const std::string& user_id) {
- if (policy == policy::key::kUserAvatarImage)
- GetUserImageManager(user_id)->OnExternalDataCleared(policy);
- else if (policy == policy::key::kWallpaperImage)
- WallpaperManager::Get()->OnPolicyCleared(policy, user_id);
- else
- NOTREACHED();
-}
-
-void ChromeUserManager::OnExternalDataFetched(const std::string& policy,
- const std::string& user_id,
- scoped_ptr<std::string> data) {
- if (policy == policy::key::kUserAvatarImage)
- GetUserImageManager(user_id)->OnExternalDataFetched(policy, data.Pass());
- else if (policy == policy::key::kWallpaperImage)
- WallpaperManager::Get()->OnPolicyFetched(policy, user_id, data.Pass());
- else
- NOTREACHED();
-}
-
-void ChromeUserManager::OnPolicyUpdated(const std::string& user_id) {
- const user_manager::User* user = FindUser(user_id);
- if (!user || user->GetType() != user_manager::USER_TYPE_PUBLIC_ACCOUNT)
- return;
- UpdatePublicAccountDisplayName(user_id);
-}
-
-void ChromeUserManager::OnDeviceLocalAccountsChanged() {
- // No action needed here, changes to the list of device-local accounts get
- // handled via the kAccountsPrefDeviceLocalAccounts device setting observer.
-}
-
-bool ChromeUserManager::CanCurrentUserLock() const {
- return UserManagerBase::CanCurrentUserLock() &&
- GetCurrentUserFlow()->CanLockScreen();
-}
-
-bool ChromeUserManager::IsUserNonCryptohomeDataEphemeral(
- const std::string& user_id) const {
- // Data belonging to the obsolete public accounts whose data has not been
- // removed yet is not ephemeral.
- bool is_obsolete_public_account = IsPublicAccountMarkedForRemoval(user_id);
-
- return !is_obsolete_public_account &&
- UserManagerBase::IsUserNonCryptohomeDataEphemeral(user_id);
-}
-
-bool ChromeUserManager::AreEphemeralUsersEnabled() const {
- policy::BrowserPolicyConnectorChromeOS* connector =
- g_browser_process->platform_part()->browser_policy_connector_chromeos();
- return GetEphemeralUsersEnabled() &&
- (connector->IsEnterpriseManaged() || !GetOwnerEmail().empty());
-}
-
-const std::string& ChromeUserManager::GetApplicationLocale() const {
- return g_browser_process->GetApplicationLocale();
-}
-
-PrefService* ChromeUserManager::GetLocalState() const {
- return g_browser_process ? g_browser_process->local_state() : NULL;
-}
-
-bool ChromeUserManager::IsEnterpriseManaged() const {
- policy::BrowserPolicyConnectorChromeOS* connector =
- g_browser_process->platform_part()->browser_policy_connector_chromeos();
- return connector->IsEnterpriseManaged();
-}
-
-void ChromeUserManager::LoadPublicAccounts(
- std::set<std::string>* public_sessions_set) {
- const base::ListValue* prefs_public_sessions =
- GetLocalState()->GetList(kPublicAccounts);
- std::vector<std::string> public_sessions;
- ParseUserList(*prefs_public_sessions,
- std::set<std::string>(),
- &public_sessions,
- public_sessions_set);
- for (std::vector<std::string>::const_iterator it = public_sessions.begin();
- it != public_sessions.end();
- ++it) {
- users_.push_back(user_manager::User::CreatePublicAccountUser(*it));
- UpdatePublicAccountDisplayName(*it);
- }
-}
-
-void ChromeUserManager::PerformPreUserListLoadingActions() {
- // Clean up user list first. All code down the path should be synchronous,
- // so that local state after transaction rollback is in consistent state.
- // This process also should not trigger EnsureUsersLoaded again.
- if (supervised_user_manager_->HasFailedUserCreationTransaction())
- supervised_user_manager_->RollbackUserCreationTransaction();
-}
-
-void ChromeUserManager::PerformPostUserListLoadingActions() {
- for (user_manager::UserList::iterator ui = users_.begin(), ue = users_.end();
- ui != ue;
- ++ui) {
- GetUserImageManager((*ui)->email())->LoadUserImage();
- }
-}
-
-void ChromeUserManager::PerformPostUserLoggedInActions(bool browser_restart) {
- // Initialize the session length limiter and start it only if
- // session limit is defined by the policy.
- session_length_limiter_.reset(
- new SessionLengthLimiter(NULL, browser_restart));
-}
-
-bool ChromeUserManager::IsDemoApp(const std::string& user_id) const {
- return DemoAppLauncher::IsDemoAppSession(user_id);
-}
-
-bool ChromeUserManager::IsKioskApp(const std::string& user_id) const {
- policy::DeviceLocalAccount::Type device_local_account_type;
- return policy::IsDeviceLocalAccountUser(user_id,
- &device_local_account_type) &&
- device_local_account_type ==
- policy::DeviceLocalAccount::TYPE_KIOSK_APP;
-}
-
-bool ChromeUserManager::IsPublicAccountMarkedForRemoval(
- const std::string& user_id) const {
- return user_id ==
- GetLocalState()->GetString(kPublicAccountPendingDataRemoval);
-}
-
-void ChromeUserManager::RetrieveTrustedDevicePolicies() {
- // Local state may not be initialized in unit_tests.
- if (!GetLocalState())
- return;
-
- SetEphemeralUsersEnabled(false);
- SetOwnerEmail(std::string());
-
- // Schedule a callback if device policy has not yet been verified.
- if (CrosSettingsProvider::TRUSTED !=
- cros_settings_->PrepareTrustedValues(
- base::Bind(&ChromeUserManager::RetrieveTrustedDevicePolicies,
- weak_factory_.GetWeakPtr()))) {
- return;
- }
-
- bool ephemeral_users_enabled = false;
- cros_settings_->GetBoolean(kAccountsPrefEphemeralUsersEnabled,
- &ephemeral_users_enabled);
- SetEphemeralUsersEnabled(ephemeral_users_enabled);
-
- std::string owner_email;
- cros_settings_->GetString(kDeviceOwner, &owner_email);
- SetOwnerEmail(owner_email);
-
- EnsureUsersLoaded();
-
- bool changed = UpdateAndCleanUpPublicAccounts(
- policy::GetDeviceLocalAccounts(cros_settings_));
-
- // If ephemeral users are enabled and we are on the login screen, take this
- // opportunity to clean up by removing all regular users except the owner.
- if (GetEphemeralUsersEnabled() && !IsUserLoggedIn()) {
- ListPrefUpdate prefs_users_update(GetLocalState(), kRegularUsers);
- prefs_users_update->Clear();
- for (user_manager::UserList::iterator it = users_.begin();
- it != users_.end();) {
- const std::string user_email = (*it)->email();
- if ((*it)->GetType() == user_manager::USER_TYPE_REGULAR &&
- user_email != GetOwnerEmail()) {
- RemoveNonCryptohomeData(user_email);
- DeleteUser(*it);
- it = users_.erase(it);
- changed = true;
- } else {
- if ((*it)->GetType() != user_manager::USER_TYPE_PUBLIC_ACCOUNT)
- prefs_users_update->Append(new base::StringValue(user_email));
- ++it;
- }
- }
- }
-
- if (changed)
- NotifyUserListChanged();
-}
-
-void ChromeUserManager::GuestUserLoggedIn() {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- UserManagerBase::GuestUserLoggedIn();
-
- // TODO(nkostylev): Add support for passing guest session cryptohome
- // mount point. Legacy (--login-profile) value will be used for now.
- // http://crosbug.com/230859
- active_user_->SetStubImage(
- user_manager::UserImage(
- *ResourceBundle::GetSharedInstance().GetImageSkiaNamed(
- IDR_PROFILE_PICTURE_LOADING)),
- user_manager::User::USER_IMAGE_INVALID,
- false);
-
- // Initializes wallpaper after active_user_ is set.
- WallpaperManager::Get()->SetUserWallpaperNow(chromeos::login::kGuestUserName);
-}
-
-void ChromeUserManager::RegularUserLoggedIn(const std::string& user_id) {
- UserManagerBase::RegularUserLoggedIn(user_id);
-
- if (IsCurrentUserNew())
- WallpaperManager::Get()->SetUserWallpaperNow(user_id);
-
- GetUserImageManager(user_id)->UserLoggedIn(IsCurrentUserNew(), false);
-
- WallpaperManager::Get()->EnsureLoggedInUserWallpaperLoaded();
-
- // Make sure that new data is persisted to Local State.
- GetLocalState()->CommitPendingWrite();
-}
-
-void ChromeUserManager::RegularUserLoggedInAsEphemeral(
- const std::string& user_id) {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- UserManagerBase::RegularUserLoggedInAsEphemeral(user_id);
-
- GetUserImageManager(user_id)->UserLoggedIn(IsCurrentUserNew(), false);
- WallpaperManager::Get()->SetUserWallpaperNow(user_id);
-}
-
-void ChromeUserManager::SupervisedUserLoggedIn(const std::string& user_id) {
- // TODO(nkostylev): Refactor, share code with RegularUserLoggedIn().
-
- // Remove the user from the user list.
- active_user_ = RemoveRegularOrSupervisedUserFromList(user_id);
-
- // If the user was not found on the user list, create a new user.
- if (!GetActiveUser()) {
- SetIsCurrentUserNew(true);
- active_user_ = user_manager::User::CreateSupervisedUser(user_id);
- // Leaving OAuth token status at the default state = unknown.
- WallpaperManager::Get()->SetUserWallpaperNow(user_id);
- } else {
- if (supervised_user_manager_->CheckForFirstRun(user_id)) {
- SetIsCurrentUserNew(true);
- WallpaperManager::Get()->SetUserWallpaperNow(user_id);
- } else {
- SetIsCurrentUserNew(false);
- }
- }
-
- // Add the user to the front of the user list.
- ListPrefUpdate prefs_users_update(GetLocalState(), kRegularUsers);
- prefs_users_update->Insert(0, new base::StringValue(user_id));
- users_.insert(users_.begin(), active_user_);
-
- // Now that user is in the list, save display name.
- if (IsCurrentUserNew()) {
- SaveUserDisplayName(GetActiveUser()->email(),
- GetActiveUser()->GetDisplayName());
- }
-
- GetUserImageManager(user_id)->UserLoggedIn(IsCurrentUserNew(), true);
- WallpaperManager::Get()->EnsureLoggedInUserWallpaperLoaded();
-
- // Make sure that new data is persisted to Local State.
- GetLocalState()->CommitPendingWrite();
-}
-
-void ChromeUserManager::PublicAccountUserLoggedIn(user_manager::User* user) {
- SetIsCurrentUserNew(true);
- active_user_ = user;
-
- // The UserImageManager chooses a random avatar picture when a user logs in
- // for the first time. Tell the UserImageManager that this user is not new to
- // prevent the avatar from getting changed.
- GetUserImageManager(user->email())->UserLoggedIn(false, true);
- WallpaperManager::Get()->EnsureLoggedInUserWallpaperLoaded();
-}
-
-void ChromeUserManager::KioskAppLoggedIn(const std::string& app_id) {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- policy::DeviceLocalAccount::Type device_local_account_type;
- DCHECK(policy::IsDeviceLocalAccountUser(app_id, &device_local_account_type));
- DCHECK_EQ(policy::DeviceLocalAccount::TYPE_KIOSK_APP,
- device_local_account_type);
-
- active_user_ = user_manager::User::CreateKioskAppUser(app_id);
- active_user_->SetStubImage(
- user_manager::UserImage(
- *ResourceBundle::GetSharedInstance().GetImageSkiaNamed(
- IDR_PROFILE_PICTURE_LOADING)),
- user_manager::User::USER_IMAGE_INVALID,
- false);
-
- WallpaperManager::Get()->SetUserWallpaperNow(app_id);
-
- // TODO(bartfab): Add KioskAppUsers to the users_ list and keep metadata like
- // the kiosk_app_id in these objects, removing the need to re-parse the
- // device-local account list here to extract the kiosk_app_id.
- const std::vector<policy::DeviceLocalAccount> device_local_accounts =
- policy::GetDeviceLocalAccounts(cros_settings_);
- const policy::DeviceLocalAccount* account = NULL;
- for (std::vector<policy::DeviceLocalAccount>::const_iterator it =
- device_local_accounts.begin();
- it != device_local_accounts.end();
- ++it) {
- if (it->user_id == app_id) {
- account = &*it;
- break;
- }
- }
- std::string kiosk_app_id;
- if (account) {
- kiosk_app_id = account->kiosk_app_id;
- } else {
- LOG(ERROR) << "Logged into nonexistent kiosk-app account: " << app_id;
- NOTREACHED();
- }
-
- CommandLine* command_line = CommandLine::ForCurrentProcess();
- command_line->AppendSwitch(::switches::kForceAppMode);
- command_line->AppendSwitchASCII(::switches::kAppId, kiosk_app_id);
-
- // Disable window animation since kiosk app runs in a single full screen
- // window and window animation causes start-up janks.
- command_line->AppendSwitch(wm::switches::kWindowAnimationsDisabled);
-}
-
-void ChromeUserManager::DemoAccountLoggedIn() {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- active_user_ =
- user_manager::User::CreateKioskAppUser(DemoAppLauncher::kDemoUserName);
- active_user_->SetStubImage(
- user_manager::UserImage(
- *ResourceBundle::GetSharedInstance().GetImageSkiaNamed(
- IDR_PROFILE_PICTURE_LOADING)),
- user_manager::User::USER_IMAGE_INVALID,
- false);
- WallpaperManager::Get()->SetUserWallpaperNow(DemoAppLauncher::kDemoUserName);
-
- CommandLine* command_line = CommandLine::ForCurrentProcess();
- command_line->AppendSwitch(::switches::kForceAppMode);
- command_line->AppendSwitchASCII(::switches::kAppId,
- DemoAppLauncher::kDemoAppId);
-
- // Disable window animation since the demo app runs in a single full screen
- // window and window animation causes start-up janks.
- CommandLine::ForCurrentProcess()->AppendSwitch(
- wm::switches::kWindowAnimationsDisabled);
-}
-
-void ChromeUserManager::RetailModeUserLoggedIn() {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- SetIsCurrentUserNew(true);
- active_user_ = user_manager::User::CreateRetailModeUser();
- GetUserImageManager(chromeos::login::kRetailModeUserName)
- ->UserLoggedIn(IsCurrentUserNew(), true);
- WallpaperManager::Get()->SetUserWallpaperNow(
- chromeos::login::kRetailModeUserName);
-}
-
-void ChromeUserManager::NotifyOnLogin() {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
-
- UserSessionManager::OverrideHomedir();
- UpdateNumberOfUsers();
-
- UserManagerBase::NotifyOnLogin();
-
- // TODO(nkostylev): Deprecate this notification in favor of
- // ActiveUserChanged() observer call.
- content::NotificationService::current()->Notify(
- chrome::NOTIFICATION_LOGIN_USER_CHANGED,
- content::Source<UserManager>(this),
- content::Details<const user_manager::User>(GetActiveUser()));
-
- UserSessionManager::GetInstance()->PerformPostUserLoggedInActions();
-}
-
-void ChromeUserManager::UpdateOwnership() {
- bool is_owner = DeviceSettingsService::Get()->HasPrivateOwnerKey();
- VLOG(1) << "Current user " << (is_owner ? "is owner" : "is not owner");
-
- SetCurrentUserIsOwner(is_owner);
-}
-
-void ChromeUserManager::RemoveNonCryptohomeData(const std::string& user_id) {
- UserManagerBase::RemoveNonCryptohomeData(user_id);
-
- WallpaperManager::Get()->RemoveUserWallpaperInfo(user_id);
- GetUserImageManager(user_id)->DeleteUserImage();
-
- supervised_user_manager_->RemoveNonCryptohomeData(user_id);
-
- multi_profile_user_controller_->RemoveCachedValues(user_id);
-}
-
-void ChromeUserManager::CleanUpPublicAccountNonCryptohomeDataPendingRemoval() {
- PrefService* local_state = GetLocalState();
- const std::string public_account_pending_data_removal =
- local_state->GetString(kPublicAccountPendingDataRemoval);
- if (public_account_pending_data_removal.empty() ||
- (IsUserLoggedIn() &&
- public_account_pending_data_removal == GetActiveUser()->email())) {
- return;
- }
-
- RemoveNonCryptohomeData(public_account_pending_data_removal);
- local_state->ClearPref(kPublicAccountPendingDataRemoval);
-}
-
-void ChromeUserManager::CleanUpPublicAccountNonCryptohomeData(
- const std::vector<std::string>& old_public_accounts) {
- std::set<std::string> users;
- for (user_manager::UserList::const_iterator it = users_.begin();
- it != users_.end();
- ++it)
- users.insert((*it)->email());
-
- // If the user is logged into a public account that has been removed from the
- // user list, mark the account's data as pending removal after logout.
- if (IsLoggedInAsPublicAccount()) {
- const std::string active_user_id = GetActiveUser()->email();
- if (users.find(active_user_id) == users.end()) {
- GetLocalState()->SetString(kPublicAccountPendingDataRemoval,
- active_user_id);
- users.insert(active_user_id);
- }
- }
-
- // Remove the data belonging to any other public accounts that are no longer
- // found on the user list.
- for (std::vector<std::string>::const_iterator it =
- old_public_accounts.begin();
- it != old_public_accounts.end();
- ++it) {
- if (users.find(*it) == users.end())
- RemoveNonCryptohomeData(*it);
- }
-}
-
-bool ChromeUserManager::UpdateAndCleanUpPublicAccounts(
- const std::vector<policy::DeviceLocalAccount>& device_local_accounts) {
- // Try to remove any public account data marked as pending removal.
- CleanUpPublicAccountNonCryptohomeDataPendingRemoval();
-
- // Get the current list of public accounts.
- std::vector<std::string> old_public_accounts;
- for (user_manager::UserList::const_iterator it = users_.begin();
- it != users_.end();
- ++it) {
- if ((*it)->GetType() == user_manager::USER_TYPE_PUBLIC_ACCOUNT)
- old_public_accounts.push_back((*it)->email());
- }
-
- // Get the new list of public accounts from policy.
- std::vector<std::string> new_public_accounts;
- for (std::vector<policy::DeviceLocalAccount>::const_iterator it =
- device_local_accounts.begin();
- it != device_local_accounts.end();
- ++it) {
- // TODO(mnissler, nkostylev, bartfab): Process Kiosk Apps within the
- // standard login framework: http://crbug.com/234694
- if (it->type == policy::DeviceLocalAccount::TYPE_PUBLIC_SESSION)
- new_public_accounts.push_back(it->user_id);
- }
-
- // If the list of public accounts has not changed, return.
- if (new_public_accounts.size() == old_public_accounts.size()) {
- bool changed = false;
- for (size_t i = 0; i < new_public_accounts.size(); ++i) {
- if (new_public_accounts[i] != old_public_accounts[i]) {
- changed = true;
- break;
- }
- }
- if (!changed)
- return false;
- }
-
- // Persist the new list of public accounts in a pref.
- ListPrefUpdate prefs_public_accounts_update(GetLocalState(), kPublicAccounts);
- prefs_public_accounts_update->Clear();
- for (std::vector<std::string>::const_iterator it =
- new_public_accounts.begin();
- it != new_public_accounts.end();
- ++it) {
- prefs_public_accounts_update->AppendString(*it);
- }
-
- // Remove the old public accounts from the user list.
- for (user_manager::UserList::iterator it = users_.begin();
- it != users_.end();) {
- if ((*it)->GetType() == user_manager::USER_TYPE_PUBLIC_ACCOUNT) {
- if (*it != GetLoggedInUser())
- DeleteUser(*it);
- it = users_.erase(it);
- } else {
- ++it;
- }
- }
-
- // Add the new public accounts to the front of the user list.
- for (std::vector<std::string>::const_reverse_iterator it =
- new_public_accounts.rbegin();
- it != new_public_accounts.rend();
- ++it) {
- if (IsLoggedInAsPublicAccount() && *it == GetActiveUser()->email())
- users_.insert(users_.begin(), GetLoggedInUser());
- else
- users_.insert(users_.begin(),
- user_manager::User::CreatePublicAccountUser(*it));
- UpdatePublicAccountDisplayName(*it);
- }
-
- for (user_manager::UserList::iterator
- ui = users_.begin(),
- ue = users_.begin() + new_public_accounts.size();
- ui != ue;
- ++ui) {
- GetUserImageManager((*ui)->email())->LoadUserImage();
- }
-
- // Remove data belonging to public accounts that are no longer found on the
- // user list.
- CleanUpPublicAccountNonCryptohomeData(old_public_accounts);
-
- return true;
-}
-
-void ChromeUserManager::UpdatePublicAccountDisplayName(
- const std::string& user_id) {
- std::string display_name;
-
- if (device_local_account_policy_service_) {
- policy::DeviceLocalAccountPolicyBroker* broker =
- device_local_account_policy_service_->GetBrokerForUser(user_id);
- if (broker)
- display_name = broker->GetDisplayName();
- }
-
- // Set or clear the display name.
- SaveUserDisplayName(user_id, base::UTF8ToUTF16(display_name));
-}
-
-UserFlow* ChromeUserManager::GetCurrentUserFlow() const {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- if (!IsUserLoggedIn())
- return GetDefaultUserFlow();
- return GetUserFlow(GetLoggedInUser()->email());
-}
-
-UserFlow* ChromeUserManager::GetUserFlow(const std::string& user_id) const {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- FlowMap::const_iterator it = specific_flows_.find(user_id);
- if (it != specific_flows_.end())
- return it->second;
- return GetDefaultUserFlow();
-}
-
-void ChromeUserManager::SetUserFlow(const std::string& user_id,
- UserFlow* flow) {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- ResetUserFlow(user_id);
- specific_flows_[user_id] = flow;
-}
-
-void ChromeUserManager::ResetUserFlow(const std::string& user_id) {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- FlowMap::iterator it = specific_flows_.find(user_id);
- if (it != specific_flows_.end()) {
- delete it->second;
- specific_flows_.erase(it);
- }
-}
-
-bool ChromeUserManager::AreSupervisedUsersAllowed() const {
- bool supervised_users_allowed = false;
- cros_settings_->GetBoolean(kAccountsPrefSupervisedUsersEnabled,
- &supervised_users_allowed);
- return supervised_users_allowed;
-}
-
-UserFlow* ChromeUserManager::GetDefaultUserFlow() const {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- if (!default_flow_.get())
- default_flow_.reset(new DefaultUserFlow());
- return default_flow_.get();
-}
-
-void ChromeUserManager::NotifyUserListChanged() {
- content::NotificationService::current()->Notify(
- chrome::NOTIFICATION_USER_LIST_CHANGED,
- content::Source<UserManager>(this),
- content::NotificationService::NoDetails());
-}
-
-void ChromeUserManager::NotifyUserAddedToSession(
- const user_manager::User* added_user,
- bool user_switch_pending) {
- if (user_switch_pending)
- SetPendingUserSwitchID(added_user->email());
-
- UpdateNumberOfUsers();
- UserManagerBase::NotifyUserAddedToSession(added_user, user_switch_pending);
-}
-
-void ChromeUserManager::OnUserNotAllowed(const std::string& user_email) {
- LOG(ERROR) << "Shutdown session because a user is not allowed to be in the "
- "current session";
- chromeos::ShowMultiprofilesSessionAbortedDialog(user_email);
-}
-
-void ChromeUserManager::UpdateNumberOfUsers() {
- size_t users = GetLoggedInUsers().size();
- if (users) {
- // Write the user number as UMA stat when a multi user session is possible.
- if ((users + GetUsersAdmittedForMultiProfile().size()) > 1)
- ash::MultiProfileUMA::RecordUserCount(users);
- }
-
- base::debug::SetCrashKeyValue(
- crash_keys::kNumberOfUsers,
- base::StringPrintf("%" PRIuS, GetLoggedInUsers().size()));
+// static
+ChromeUserManager* ChromeUserManager::Get() {
+ user_manager::UserManager* user_manager = user_manager::UserManager::Get();
+ return user_manager ? static_cast<ChromeUserManager*>(user_manager) : NULL;
}
} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698