1 // Copyright (c) 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 #ifndef CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_
6 #define CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_
11 #include "base/basictypes.h"
12 #include "base/callback_forward.h"
13 #include "base/files/file_path.h"
14 #include "base/memory/weak_ptr.h"
15 #include "chrome/browser/browsing_data/browsing_data_remover.h"
16 #include "chrome/browser/chromeos/login/signin/oauth2_login_manager.h"
17 #include "components/user_manager/user_manager.h"
25 namespace extensions
{
26 class ExtensionGarbageCollectorChromeOSUnitTest
;
31 // This helper class is used on Chrome OS to keep track of currently
32 // active user profile.
33 // Whenever active user is changed (either add another user into session or
34 // switch between users), ActiveUserHashChanged() will be called thus
35 // internal state |active_user_id_hash_| will be updated.
36 // Typical use cases for using this class:
37 // 1. Get "signin profile" which is a special type of profile that is only used
38 // during signin flow: GetSigninProfile()
39 // 2. Get profile dir of an active user, used by ProfileManager:
40 // GetActiveUserProfileDir()
41 // 3. Get mapping from user_id_hash to Profile instance/profile path etc.
43 : public BrowsingDataRemover::Observer
,
44 public OAuth2LoginManager::Observer
,
45 public user_manager::UserManager::UserSessionStateObserver
{
48 ~ProfileHelper() override
;
50 // Returns ProfileHelper instance. This class is not singleton and is owned
51 // by BrowserProcess/BrowserProcessPlatformPart. This method keeps that
52 // knowledge in one place.
53 static ProfileHelper
* Get();
55 // Returns Profile instance that corresponds to |user_id_hash|.
56 static Profile
* GetProfileByUserIdHash(const std::string
& user_id_hash
);
58 // Returns profile path that corresponds to a given |user_id_hash|.
59 static base::FilePath
GetProfilePathByUserIdHash(
60 const std::string
& user_id_hash
);
62 // Returns the path that corresponds to the sign-in profile.
63 static base::FilePath
GetSigninProfileDir();
65 // Returns OffTheRecord profile for use during signing phase.
66 static Profile
* GetSigninProfile();
68 // Returns user_id hash for |profile| instance or empty string if hash
69 // could not be extracted from |profile|.
70 static std::string
GetUserIdHashFromProfile(const Profile
* profile
);
72 // Returns user profile dir in a format [u-user_id_hash].
73 static base::FilePath
GetUserProfileDir(const std::string
& user_id_hash
);
75 // Returns true if |profile| is the signin Profile. This can be used during
76 // construction of the signin Profile to determine if that Profile is the
78 static bool IsSigninProfile(const Profile
* profile
);
80 // Returns true when |profile| corresponds to owner's profile.
81 static bool IsOwnerProfile(Profile
* profile
);
83 // Returns true when |profile| corresponds to the primary user profile
84 // of the current session.
85 static bool IsPrimaryProfile(const Profile
* profile
);
87 // Initialize a bunch of services that are tied to a browser profile.
88 // TODO(dzhioev): Investigate whether or not this method is needed.
89 void ProfileStartup(Profile
* profile
, bool process_startup
);
91 // Returns active user profile dir in a format [u-$hash].
92 base::FilePath
GetActiveUserProfileDir();
94 // Should called once after UserManager instance has been created.
97 // Returns hash for active user ID which is used to identify that user profile
99 std::string
active_user_id_hash() { return active_user_id_hash_
; }
101 // Clears site data (cookies, history, etc) for signin profile.
102 // Callback can be empty. Not thread-safe.
103 void ClearSigninProfile(const base::Closure
& on_clear_callback
);
105 // Returns profile of the |user| if it is created and fully initialized.
106 // Otherwise, returns NULL.
107 Profile
* GetProfileByUser(const user_manager::User
* user
);
110 // Returns profile of the |user| if user's profile is created and fully
111 // initialized. Otherwise, if some user is active, returns his profile.
112 // Otherwise, returns signin profile.
113 // Behaviour of this function does not correspond to its name and can be
114 // very surprising, that's why it should not be used anymore.
115 // Use |GetProfileByUser| instead.
116 // TODO(dzhioev): remove this method. http://crbug.com/361528
117 Profile
* GetProfileByUserUnsafe(const user_manager::User
* user
);
119 // Returns NULL if User is not created.
120 const user_manager::User
* GetUserByProfile(const Profile
* profile
) const;
121 user_manager::User
* GetUserByProfile(Profile
* profile
) const;
123 static std::string
GetUserIdHashByUserIdForTesting(
124 const std::string
& user_id
);
127 // TODO(nkostylev): Create a test API class that will be the only one allowed
128 // to access private test methods.
129 friend class CryptohomeAuthenticatorTest
;
130 friend class DeviceSettingsTestBase
;
131 friend class ExistingUserControllerTest
;
132 friend class extensions::ExtensionGarbageCollectorChromeOSUnitTest
;
133 friend class FakeChromeUserManager
;
134 friend class KioskTest
;
135 friend class MockUserManager
;
136 friend class MultiProfileUserControllerTest
;
137 friend class PrinterServiceProviderAppSearchEnabledTest
;
138 friend class ProfileHelperTest
;
139 friend class ProfileListChromeOSTest
;
140 friend class SessionStateDelegateChromeOSTest
;
141 friend class SystemTrayDelegateChromeOSTest
;
143 // Called when signin profile is cleared.
144 void OnSigninProfileCleared();
146 // BrowsingDataRemover::Observer implementation:
147 void OnBrowsingDataRemoverDone() override
;
149 // OAuth2LoginManager::Observer overrides.
150 void OnSessionRestoreStateChanged(
151 Profile
* user_profile
,
152 OAuth2LoginManager::SessionRestoreState state
) override
;
154 // user_manager::UserManager::UserSessionStateObserver implementation:
155 void ActiveUserHashChanged(const std::string
& hash
) override
;
157 // Associates |user| with profile with the same user_id,
158 // for GetUserByProfile() testing.
159 void SetProfileToUserMappingForTesting(user_manager::User
* user
);
161 // Enables/disables testing code path in GetUserByProfile() like
162 // always return primary user (when always_return_primary_user_for_testing is
164 static void SetProfileToUserForTestingEnabled(bool enabled
);
166 // Enables/disables testing GetUserByProfile() by always returning
168 static void SetAlwaysReturnPrimaryUserForTesting(bool value
);
170 // Associates |profile| with |user|, for GetProfileByUser() testing.
171 void SetUserToProfileMappingForTesting(const user_manager::User
* user
,
174 // Identifies path to active user profile on Chrome OS.
175 std::string active_user_id_hash_
;
177 // List of callbacks called after signin profile clearance.
178 std::vector
<base::Closure
> on_clear_callbacks_
;
180 // Called when a single stage of profile clearing is finished.
181 base::Closure on_clear_profile_stage_finished_
;
183 // A currently running browsing data remover.
184 BrowsingDataRemover
* browsing_data_remover_
;
186 // Used for testing by unit tests and FakeUserManager/MockUserManager.
187 std::map
<const user_manager::User
*, Profile
*> user_to_profile_for_testing_
;
189 // When this list is not empty GetUserByProfile() will find user that has
190 // the same user_id as |profile|->GetProfileName().
191 user_manager::UserList user_list_for_testing_
;
193 // If true testing code path is used in GetUserByProfile() even if
194 // user_list_for_testing_ list is empty. In that case primary user will always
196 static bool enable_profile_to_user_testing
;
198 // If true and enable_profile_to_user_testing is true then primary user will
199 // always be returned by GetUserByProfile().
200 static bool always_return_primary_user_for_testing
;
202 base::WeakPtrFactory
<ProfileHelper
> weak_factory_
;
204 DISALLOW_COPY_AND_ASSIGN(ProfileHelper
);
207 } // namespace chromeos
209 #endif // CHROME_BROWSER_CHROMEOS_PROFILES_PROFILE_HELPER_H_