1 // Copyright 2013 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 #include "chrome/browser/profiles/profile_window.h"
7 #include "base/command_line.h"
8 #include "base/files/file_path.h"
9 #include "base/prefs/pref_service.h"
10 #include "base/strings/string_number_conversions.h"
11 #include "base/strings/utf_string_conversions.h"
12 #include "chrome/browser/about_flags.h"
13 #include "chrome/browser/browser_process.h"
14 #include "chrome/browser/lifetime/application_lifetime.h"
15 #include "chrome/browser/pref_service_flags_storage.h"
16 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/browser/profiles/profile_avatar_icon_util.h"
18 #include "chrome/browser/profiles/profile_manager.h"
19 #include "chrome/browser/signin/account_reconcilor_factory.h"
20 #include "chrome/browser/signin/account_tracker_service_factory.h"
21 #include "chrome/browser/sync/profile_sync_service.h"
22 #include "chrome/browser/sync/profile_sync_service_factory.h"
23 #include "chrome/browser/ui/browser.h"
24 #include "chrome/browser/ui/browser_dialogs.h"
25 #include "chrome/browser/ui/profile_chooser_constants.h"
26 #include "chrome/browser/ui/user_manager.h"
27 #include "chrome/common/chrome_switches.h"
28 #include "chrome/common/pref_names.h"
29 #include "chrome/common/url_constants.h"
30 #include "components/signin/core/browser/account_reconcilor.h"
31 #include "components/signin/core/browser/account_tracker_service.h"
32 #include "components/signin/core/common/profile_management_switches.h"
33 #include "content/public/browser/browser_thread.h"
34 #include "content/public/browser/user_metrics.h"
36 #if defined(ENABLE_EXTENSIONS)
37 #include "chrome/browser/extensions/extension_service.h"
38 #include "extensions/browser/extension_prefs.h"
39 #include "extensions/browser/extension_registry.h"
40 #include "extensions/browser/extension_registry_factory.h"
41 #include "extensions/browser/extension_system.h"
42 #endif // defined(ENABLE_EXTENSIONS)
45 #include "chrome/browser/ui/browser_finder.h"
46 #include "chrome/browser/ui/browser_list.h"
47 #include "chrome/browser/ui/browser_list_observer.h"
48 #include "chrome/browser/ui/browser_window.h"
49 #include "chrome/browser/ui/startup/startup_browser_creator.h"
50 #endif // !defined (OS_IOS)
52 using base::UserMetricsAction
;
53 using content::BrowserThread
;
57 const char kNewProfileManagementExperimentInternalName
[] =
58 "enable-new-profile-management";
60 #if defined(ENABLE_EXTENSIONS)
61 void BlockExtensions(Profile
* profile
) {
62 ExtensionService
* extension_service
=
63 extensions::ExtensionSystem::Get(profile
)->extension_service();
64 extension_service
->BlockAllExtensions();
67 void UnblockExtensions(Profile
* profile
) {
68 ExtensionService
* extension_service
=
69 extensions::ExtensionSystem::Get(profile
)->extension_service();
70 extension_service
->UnblockAllExtensions();
72 #endif // defined(ENABLE_EXTENSIONS)
74 // Handles running a callback when a new Browser for the given profile
75 // has been completely created.
76 class BrowserAddedForProfileObserver
: public chrome::BrowserListObserver
{
78 BrowserAddedForProfileObserver(
80 ProfileManager::CreateCallback callback
)
83 DCHECK(!callback_
.is_null());
84 BrowserList::AddObserver(this);
86 ~BrowserAddedForProfileObserver() override
{}
89 // Overridden from BrowserListObserver:
90 void OnBrowserAdded(Browser
* browser
) override
{
91 if (browser
->profile() == profile_
) {
92 BrowserList::RemoveObserver(this);
93 callback_
.Run(profile_
, Profile::CREATE_STATUS_INITIALIZED
);
94 base::MessageLoop::current()->DeleteSoon(FROM_HERE
, this);
98 // Profile for which the browser should be opened.
100 ProfileManager::CreateCallback callback_
;
102 DISALLOW_COPY_AND_ASSIGN(BrowserAddedForProfileObserver
);
105 void OpenBrowserWindowForProfile(
106 ProfileManager::CreateCallback callback
,
109 chrome::HostDesktopType desktop_type
,
111 Profile::CreateStatus status
) {
112 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI
));
114 if (status
!= Profile::CREATE_STATUS_INITIALIZED
)
117 chrome::startup::IsProcessStartup is_process_startup
=
118 chrome::startup::IS_NOT_PROCESS_STARTUP
;
119 chrome::startup::IsFirstRun is_first_run
= chrome::startup::IS_NOT_FIRST_RUN
;
121 // If this is a brand new profile, then start a first run window.
122 if (is_new_profile
) {
123 is_process_startup
= chrome::startup::IS_PROCESS_STARTUP
;
124 is_first_run
= chrome::startup::IS_FIRST_RUN
;
127 #if defined(ENABLE_EXTENSIONS)
128 // The signin bit will still be set if the profile is being unlocked and the
129 // browser window for it is opening. As part of this unlock process, unblock
130 // all the extensions.
131 const ProfileInfoCache
& cache
=
132 g_browser_process
->profile_manager()->GetProfileInfoCache();
133 int index
= cache
.GetIndexOfProfileWithPath(profile
->GetPath());
134 if (!profile
->IsGuestSession() &&
135 cache
.ProfileIsSigninRequiredAtIndex(index
)) {
136 UnblockExtensions(profile
);
138 #endif // defined(ENABLE_EXTENSIONS)
140 // If |always_create| is false, and we have a |callback| to run, check
141 // whether a browser already exists so that we can run the callback. We don't
142 // want to rely on the observer listening to OnBrowserSetLastActive in this
143 // case, as you could manually activate an incorrect browser and trigger
145 if (!always_create
) {
146 Browser
* browser
= chrome::FindTabbedBrowser(profile
, false, desktop_type
);
148 browser
->window()->Activate();
149 if (!callback
.is_null())
150 callback
.Run(profile
, Profile::CREATE_STATUS_INITIALIZED
);
155 // If there is a callback, create an observer to make sure it is only
156 // run when the browser has been completely created. This observer will
157 // delete itself once that happens. This should not leak, because we are
158 // passing |always_create| = true to FindOrCreateNewWindow below, which ends
159 // up calling LaunchBrowser and opens a new window. If for whatever reason
160 // that fails, either something has crashed, or the observer will be cleaned
161 // up when a different browser for this profile is opened.
162 if (!callback
.is_null())
163 new BrowserAddedForProfileObserver(profile
, callback
);
165 // We already dealt with the case when |always_create| was false and a browser
166 // existed, which means that here a browser definitely needs to be created.
167 // Passing true for |always_create| means we won't duplicate the code that
168 // tries to find a browser.
169 profiles::FindOrCreateNewWindowForProfile(
177 // Called after a |system_profile| is available to be used by the user manager.
178 // Based on the value of |tutorial_mode| we determine a url to be displayed
179 // by the webui and run the |callback|, if it exists. After opening a profile,
180 // perform |profile_open_action|.
181 void OnUserManagerSystemProfileCreated(
182 const base::FilePath
& profile_path_to_focus
,
183 profiles::UserManagerTutorialMode tutorial_mode
,
184 profiles::UserManagerProfileSelected profile_open_action
,
185 const base::Callback
<void(Profile
*, const std::string
&)>& callback
,
186 Profile
* system_profile
,
187 Profile::CreateStatus status
) {
188 if (status
!= Profile::CREATE_STATUS_INITIALIZED
|| callback
.is_null())
191 // Tell the webui which user should be focused.
192 std::string page
= chrome::kChromeUIUserManagerURL
;
194 if (tutorial_mode
== profiles::USER_MANAGER_TUTORIAL_OVERVIEW
) {
195 page
+= profiles::kUserManagerDisplayTutorial
;
196 } else if (!profile_path_to_focus
.empty()) {
197 const ProfileInfoCache
& cache
=
198 g_browser_process
->profile_manager()->GetProfileInfoCache();
199 size_t index
= cache
.GetIndexOfProfileWithPath(profile_path_to_focus
);
200 if (index
!= std::string::npos
) {
202 page
+= base::IntToString(index
);
204 } else if (profile_open_action
==
205 profiles::USER_MANAGER_SELECT_PROFILE_TASK_MANAGER
) {
206 page
+= profiles::kUserManagerSelectProfileTaskManager
;
207 } else if (profile_open_action
==
208 profiles::USER_MANAGER_SELECT_PROFILE_ABOUT_CHROME
) {
209 page
+= profiles::kUserManagerSelectProfileAboutChrome
;
210 } else if (profile_open_action
==
211 profiles::USER_MANAGER_SELECT_PROFILE_CHROME_SETTINGS
) {
212 page
+= profiles::kUserManagerSelectProfileChromeSettings
;
213 } else if (profile_open_action
==
214 profiles::USER_MANAGER_SELECT_PROFILE_CHROME_MEMORY
) {
215 page
+= profiles::kUserManagerSelectProfileChromeMemory
;
216 } else if (profile_open_action
==
217 profiles::USER_MANAGER_SELECT_PROFILE_APP_LAUNCHER
) {
218 page
+= profiles::kUserManagerSelectProfileAppLauncher
;
220 callback
.Run(system_profile
, page
);
223 // Updates Chrome services that require notification when
224 // the new_profile_management's status changes.
225 void UpdateServicesWithNewProfileManagementFlag(Profile
* profile
,
226 bool new_flag_status
) {
227 AccountReconcilor
* account_reconcilor
=
228 AccountReconcilorFactory::GetForProfile(profile
);
229 account_reconcilor
->OnNewProfileManagementFlagChanged(new_flag_status
);
236 // User Manager parameters are prefixed with hash.
237 const char kUserManagerDisplayTutorial
[] = "#tutorial";
238 const char kUserManagerSelectProfileTaskManager
[] = "#task-manager";
239 const char kUserManagerSelectProfileAboutChrome
[] = "#about-chrome";
240 const char kUserManagerSelectProfileChromeSettings
[] = "#chrome-settings";
241 const char kUserManagerSelectProfileChromeMemory
[] = "#chrome-memory";
242 const char kUserManagerSelectProfileAppLauncher
[] = "#app-launcher";
244 void FindOrCreateNewWindowForProfile(
246 chrome::startup::IsProcessStartup process_startup
,
247 chrome::startup::IsFirstRun is_first_run
,
248 chrome::HostDesktopType desktop_type
,
249 bool always_create
) {
255 if (!always_create
) {
256 Browser
* browser
= chrome::FindTabbedBrowser(profile
, false, desktop_type
);
258 browser
->window()->Activate();
263 content::RecordAction(UserMetricsAction("NewWindow"));
264 base::CommandLine
command_line(base::CommandLine::NO_PROGRAM
);
265 StartupBrowserCreator browser_creator
;
266 browser_creator
.LaunchBrowser(
267 command_line
, profile
, base::FilePath(), process_startup
, is_first_run
);
268 #endif // defined(OS_IOS)
271 void SwitchToProfile(const base::FilePath
& path
,
272 chrome::HostDesktopType desktop_type
,
274 ProfileManager::CreateCallback callback
,
275 ProfileMetrics::ProfileOpen metric
) {
276 ProfileMetrics::LogProfileSwitch(metric
,
277 g_browser_process
->profile_manager(),
279 g_browser_process
->profile_manager()->CreateProfileAsync(
281 base::Bind(&OpenBrowserWindowForProfile
,
291 void SwitchToGuestProfile(chrome::HostDesktopType desktop_type
,
292 ProfileManager::CreateCallback callback
) {
293 const base::FilePath
& path
= ProfileManager::GetGuestProfilePath();
294 ProfileMetrics::LogProfileSwitch(ProfileMetrics::SWITCH_PROFILE_GUEST
,
295 g_browser_process
->profile_manager(),
297 g_browser_process
->profile_manager()->CreateProfileAsync(
299 base::Bind(&OpenBrowserWindowForProfile
,
309 void CreateAndSwitchToNewProfile(chrome::HostDesktopType desktop_type
,
310 ProfileManager::CreateCallback callback
,
311 ProfileMetrics::ProfileAdd metric
) {
312 ProfileInfoCache
& cache
=
313 g_browser_process
->profile_manager()->GetProfileInfoCache();
315 int placeholder_avatar_index
= profiles::GetPlaceholderAvatarIndex();
316 ProfileManager::CreateMultiProfileAsync(
317 cache
.ChooseNameForNewProfile(placeholder_avatar_index
),
318 base::UTF8ToUTF16(profiles::GetDefaultAvatarIconUrl(
319 placeholder_avatar_index
)),
320 base::Bind(&OpenBrowserWindowForProfile
,
326 ProfileMetrics::LogProfileAddNewUser(metric
);
329 void GuestBrowserCloseSuccess(const base::FilePath
& profile_path
) {
330 UserManager::Show(base::FilePath(),
331 profiles::USER_MANAGER_NO_TUTORIAL
,
332 profiles::USER_MANAGER_SELECT_PROFILE_NO_ACTION
);
335 void CloseGuestProfileWindows() {
336 ProfileManager
* profile_manager
= g_browser_process
->profile_manager();
337 Profile
* profile
= profile_manager
->GetProfileByPath(
338 ProfileManager::GetGuestProfilePath());
341 BrowserList::CloseAllBrowsersWithProfile(
342 profile
, base::Bind(&GuestBrowserCloseSuccess
));
346 void LockBrowserCloseSuccess(const base::FilePath
& profile_path
) {
347 ProfileManager
* profile_manager
= g_browser_process
->profile_manager();
348 ProfileInfoCache
* cache
= &profile_manager
->GetProfileInfoCache();
350 cache
->SetProfileSigninRequiredAtIndex(
351 cache
->GetIndexOfProfileWithPath(profile_path
), true);
353 #if defined(ENABLE_EXTENSIONS)
354 // Profile guaranteed to exist for it to have been locked.
355 BlockExtensions(profile_manager
->GetProfileByPath(profile_path
));
356 #endif // defined(ENABLE_EXTENSIONS)
358 chrome::HideTaskManager();
359 UserManager::Show(profile_path
,
360 profiles::USER_MANAGER_NO_TUTORIAL
,
361 profiles::USER_MANAGER_SELECT_PROFILE_NO_ACTION
);
364 void LockProfile(Profile
* profile
) {
367 BrowserList::CloseAllBrowsersWithProfile(
368 profile
, base::Bind(&LockBrowserCloseSuccess
));
372 bool IsLockAvailable(Profile
* profile
) {
374 if (!switches::IsNewProfileManagement())
377 if (profile
->IsGuestSession())
380 const ProfileInfoCache
& cache
=
381 g_browser_process
->profile_manager()->GetProfileInfoCache();
382 std::string hosted_domain
= profile
->GetPrefs()->
383 GetString(prefs::kGoogleServicesHostedDomain
);
384 // TODO(mlerman): After one release remove any hosted_domain reference to the
385 // pref, since all users will have this in the AccountTrackerService.
386 if (hosted_domain
.empty()) {
387 AccountTrackerService
* account_tracker
=
388 AccountTrackerServiceFactory::GetForProfile(profile
);
389 int profile_index
= cache
.GetIndexOfProfileWithPath(profile
->GetPath());
390 hosted_domain
= account_tracker
->FindAccountInfoByEmail(base::UTF16ToUTF8(
391 cache
.GetUserNameOfProfileAtIndex(profile_index
))).hosted_domain
;
393 // TODO(mlerman): Prohibit only users who authenticate using SAML. Until then,
394 // prohibited users who use hosted domains (aside from google.com).
395 if (hosted_domain
!= Profile::kNoHostedDomainFound
&&
396 hosted_domain
!= "google.com") {
400 for (size_t i
= 0; i
< cache
.GetNumberOfProfiles(); ++i
) {
401 if (cache
.ProfileIsSupervisedAtIndex(i
))
407 void CreateSystemProfileForUserManager(
408 const base::FilePath
& profile_path_to_focus
,
409 profiles::UserManagerTutorialMode tutorial_mode
,
410 profiles::UserManagerProfileSelected profile_open_action
,
411 const base::Callback
<void(Profile
*, const std::string
&)>& callback
) {
412 // Create the system profile, if necessary, and open the User Manager
413 // from the system profile.
414 g_browser_process
->profile_manager()->CreateProfileAsync(
415 ProfileManager::GetSystemProfilePath(),
416 base::Bind(&OnUserManagerSystemProfileCreated
,
417 profile_path_to_focus
,
426 void ShowUserManagerMaybeWithTutorial(Profile
* profile
) {
427 // Guest users cannot appear in the User Manager, nor display a tutorial.
428 if (!profile
|| profile
->IsGuestSession()) {
429 UserManager::Show(base::FilePath(),
430 profiles::USER_MANAGER_NO_TUTORIAL
,
431 profiles::USER_MANAGER_SELECT_PROFILE_NO_ACTION
);
434 UserManager::Show(base::FilePath(),
435 profiles::USER_MANAGER_TUTORIAL_OVERVIEW
,
436 profiles::USER_MANAGER_SELECT_PROFILE_NO_ACTION
);
439 void EnableNewProfileManagementPreview(Profile
* profile
) {
440 #if defined(OS_ANDROID)
443 // TODO(rogerta): instead of setting experiment flags and command line
444 // args, we should set a profile preference.
445 const about_flags::Experiment experiment
= {
446 kNewProfileManagementExperimentInternalName
,
447 0, // string id for title of experiment
448 0, // string id for description of experiment
449 0, // supported platforms
450 about_flags::Experiment::ENABLE_DISABLE_VALUE
,
451 switches::kEnableNewProfileManagement
,
452 "", // not used with ENABLE_DISABLE_VALUE type
453 switches::kDisableNewProfileManagement
,
454 "", // not used with ENABLE_DISABLE_VALUE type
455 NULL
, // not used with ENABLE_DISABLE_VALUE type
458 about_flags::PrefServiceFlagsStorage
flags_storage(
459 g_browser_process
->local_state());
460 about_flags::SetExperimentEnabled(
462 experiment
.NameForChoice(1),
465 switches::EnableNewProfileManagementForTesting(
466 base::CommandLine::ForCurrentProcess());
467 UserManager::Show(base::FilePath(),
468 profiles::USER_MANAGER_TUTORIAL_OVERVIEW
,
469 profiles::USER_MANAGER_SELECT_PROFILE_NO_ACTION
);
470 UpdateServicesWithNewProfileManagementFlag(profile
, true);
474 void DisableNewProfileManagementPreview(Profile
* profile
) {
475 about_flags::PrefServiceFlagsStorage
flags_storage(
476 g_browser_process
->local_state());
477 about_flags::SetExperimentEnabled(
479 kNewProfileManagementExperimentInternalName
,
481 chrome::AttemptRestart();
482 UpdateServicesWithNewProfileManagementFlag(profile
, false);
485 void BubbleViewModeFromAvatarBubbleMode(
486 BrowserWindow::AvatarBubbleMode mode
,
487 BubbleViewMode
* bubble_view_mode
,
488 TutorialMode
* tutorial_mode
) {
489 *tutorial_mode
= TUTORIAL_MODE_NONE
;
491 case BrowserWindow::AVATAR_BUBBLE_MODE_ACCOUNT_MANAGEMENT
:
492 *bubble_view_mode
= BUBBLE_VIEW_MODE_ACCOUNT_MANAGEMENT
;
494 case BrowserWindow::AVATAR_BUBBLE_MODE_SIGNIN
:
495 *bubble_view_mode
= BUBBLE_VIEW_MODE_GAIA_SIGNIN
;
497 case BrowserWindow::AVATAR_BUBBLE_MODE_ADD_ACCOUNT
:
498 *bubble_view_mode
= BUBBLE_VIEW_MODE_GAIA_ADD_ACCOUNT
;
500 case BrowserWindow::AVATAR_BUBBLE_MODE_REAUTH
:
501 *bubble_view_mode
= BUBBLE_VIEW_MODE_GAIA_REAUTH
;
503 case BrowserWindow::AVATAR_BUBBLE_MODE_CONFIRM_SIGNIN
:
504 *bubble_view_mode
= BUBBLE_VIEW_MODE_PROFILE_CHOOSER
;
505 *tutorial_mode
= TUTORIAL_MODE_CONFIRM_SIGNIN
;
507 case BrowserWindow::AVATAR_BUBBLE_MODE_SHOW_ERROR
:
508 *bubble_view_mode
= BUBBLE_VIEW_MODE_PROFILE_CHOOSER
;
509 *tutorial_mode
= TUTORIAL_MODE_SHOW_ERROR
;
511 case BrowserWindow::AVATAR_BUBBLE_MODE_FAST_USER_SWITCH
:
512 *bubble_view_mode
= profiles::BUBBLE_VIEW_MODE_FAST_PROFILE_CHOOSER
;
515 *bubble_view_mode
= profiles::BUBBLE_VIEW_MODE_PROFILE_CHOOSER
;
519 } // namespace profiles