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 CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SERVICE_H_
6 #define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SERVICE_H_
11 #include "base/callback.h"
12 #include "base/gtest_prod_util.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/prefs/pref_change_registrar.h"
15 #include "base/scoped_observer.h"
16 #include "base/strings/string16.h"
17 #include "chrome/browser/supervised_user/experimental/supervised_user_blacklist.h"
18 #include "chrome/browser/supervised_user/supervised_user_url_filter.h"
19 #include "chrome/browser/supervised_user/supervised_users.h"
20 #include "chrome/browser/sync/profile_sync_service_observer.h"
21 #include "chrome/browser/sync/sync_type_preference_provider.h"
22 #include "chrome/browser/ui/browser_list_observer.h"
23 #include "components/keyed_service/core/keyed_service.h"
24 #include "content/public/browser/web_contents.h"
26 #if defined(ENABLE_EXTENSIONS)
27 #include "extensions/browser/extension_registry_observer.h"
28 #include "extensions/browser/management_policy.h"
32 class GoogleServiceAuthError
;
33 class PermissionRequestCreator
;
35 class SupervisedUserRegistrationUtility
;
36 class SupervisedUserSettingsService
;
37 class SupervisedUserSiteList
;
38 class SupervisedUserURLFilter
;
44 namespace extensions
{
45 class ExtensionRegistry
;
48 namespace user_prefs
{
49 class PrefRegistrySyncable
;
52 // This class handles all the information related to a given supervised profile
53 // (e.g. the installed content packs, the default URL filtering behavior, or
54 // manual whitelist/blacklist overrides).
55 class SupervisedUserService
: public KeyedService
,
56 #if defined(ENABLE_EXTENSIONS)
57 public extensions::ManagementPolicy::Provider
,
58 public extensions::ExtensionRegistryObserver
,
60 public SyncTypePreferenceProvider
,
61 public ProfileSyncServiceObserver
,
62 public chrome::BrowserListObserver
{
64 typedef std::vector
<base::string16
> CategoryList
;
65 typedef base::Callback
<void(content::WebContents
*)> NavigationBlockedCallback
;
66 typedef base::Callback
<void(const GoogleServiceAuthError
&)> AuthErrorCallback
;
76 virtual ~Delegate() {}
77 // Returns true to indicate that the delegate handled the (de)activation, or
78 // false to indicate that the SupervisedUserService itself should handle it.
79 virtual bool SetActive(bool active
) = 0;
80 // Returns the path to a blacklist file to load, or an empty path to
82 virtual base::FilePath
GetBlacklistPath() const = 0;
85 virtual ~SupervisedUserService();
87 // ProfileKeyedService override:
88 virtual void Shutdown() OVERRIDE
;
90 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable
* registry
);
92 void SetDelegate(Delegate
* delegate
);
94 // Returns the URL filter for the IO thread, for filtering network requests
95 // (in SupervisedUserResourceThrottle).
96 scoped_refptr
<const SupervisedUserURLFilter
> GetURLFilterForIOThread();
98 // Returns the URL filter for the UI thread, for filtering navigations and
99 // classifying sites in the history view.
100 SupervisedUserURLFilter
* GetURLFilterForUIThread();
102 // Returns the URL's category, obtained from the installed content packs.
103 int GetCategory(const GURL
& url
);
105 // Returns the list of all known human-readable category names, sorted by ID
106 // number. Called in the critical path of drawing the history UI, so needs to
108 void GetCategoryNames(CategoryList
* list
);
110 // Whether the user can request access to blocked URLs.
111 bool AccessRequestsEnabled();
113 void OnPermissionRequestIssued();
115 // Adds an access request for the given URL. The requests are stored using
116 // a prefix followed by a URIEncoded version of the URL. Each entry contains
117 // a dictionary which currently has the timestamp of the request in it.
118 void AddAccessRequest(const GURL
& url
);
120 // Returns the email address of the custodian.
121 std::string
GetCustodianEmailAddress() const;
123 // Returns the name of the custodian, or the email address if the name is
125 std::string
GetCustodianName() const;
127 // These methods allow querying and modifying the manual filtering behavior.
128 // The manual behavior is set by the user and overrides all other settings
129 // (whitelists or the default behavior).
131 // Returns the manual behavior for the given host.
132 ManualBehavior
GetManualBehaviorForHost(const std::string
& hostname
);
134 // Returns the manual behavior for the given URL.
135 ManualBehavior
GetManualBehaviorForURL(const GURL
& url
);
137 // Returns all URLS on the given host that have exceptions.
138 void GetManualExceptionsForHost(const std::string
& host
,
139 std::vector
<GURL
>* urls
);
141 // Initializes this object. This method does nothing if the profile is not
145 // Initializes this profile for syncing, using the provided |refresh_token| to
146 // mint access tokens for Sync.
147 void InitSync(const std::string
& refresh_token
);
149 // Convenience method that registers this supervised user using
150 // |registration_utility| and initializes sync with the returned token.
151 // The |callback| will be called when registration is complete,
152 // whether it succeeded or not -- unless registration was cancelled manually,
153 // in which case the callback will be ignored.
154 void RegisterAndInitSync(
155 SupervisedUserRegistrationUtility
* registration_utility
,
156 Profile
* custodian_profile
,
157 const std::string
& supervised_user_id
,
158 const AuthErrorCallback
& callback
);
160 void set_elevated_for_testing(bool skip
) {
161 elevated_for_testing_
= skip
;
164 void AddNavigationBlockedCallback(const NavigationBlockedCallback
& callback
);
165 void DidBlockNavigation(content::WebContents
* web_contents
);
167 #if defined(ENABLE_EXTENSIONS)
168 // extensions::ManagementPolicy::Provider implementation:
169 virtual std::string
GetDebugPolicyProviderName() const OVERRIDE
;
170 virtual bool UserMayLoad(const extensions::Extension
* extension
,
171 base::string16
* error
) const OVERRIDE
;
172 virtual bool UserMayModifySettings(const extensions::Extension
* extension
,
173 base::string16
* error
) const OVERRIDE
;
175 // extensions::ExtensionRegistryObserver implementation.
176 virtual void OnExtensionLoaded(
177 content::BrowserContext
* browser_context
,
178 const extensions::Extension
* extension
) OVERRIDE
;
179 virtual void OnExtensionUnloaded(
180 content::BrowserContext
* browser_context
,
181 const extensions::Extension
* extension
,
182 extensions::UnloadedExtensionInfo::Reason reason
) OVERRIDE
;
185 // SyncTypePreferenceProvider implementation:
186 virtual syncer::ModelTypeSet
GetPreferredDataTypes() const OVERRIDE
;
188 // ProfileSyncServiceObserver implementation:
189 virtual void OnStateChanged() OVERRIDE
;
191 // chrome::BrowserListObserver implementation:
192 virtual void OnBrowserSetLastActive(Browser
* browser
) OVERRIDE
;
195 friend class SupervisedUserServiceExtensionTestBase
;
196 friend class SupervisedUserServiceFactory
;
197 FRIEND_TEST_ALL_PREFIXES(SupervisedUserServiceTest
, ClearOmitOnRegistration
);
199 // A bridge from the UI thread to the SupervisedUserURLFilters, one of which
200 // lives on the IO thread. This class mediates access to them and makes sure
201 // they are kept in sync.
202 class URLFilterContext
{
207 SupervisedUserURLFilter
* ui_url_filter() const;
208 SupervisedUserURLFilter
* io_url_filter() const;
210 void SetDefaultFilteringBehavior(
211 SupervisedUserURLFilter::FilteringBehavior behavior
);
212 void LoadWhitelists(ScopedVector
<SupervisedUserSiteList
> site_lists
);
213 void LoadBlacklist(const base::FilePath
& path
);
214 void SetManualHosts(scoped_ptr
<std::map
<std::string
, bool> > host_map
);
215 void SetManualURLs(scoped_ptr
<std::map
<GURL
, bool> > url_map
);
218 void OnBlacklistLoaded();
220 // SupervisedUserURLFilter is refcounted because the IO thread filter is
221 // used both by ProfileImplIOData and OffTheRecordProfileIOData (to filter
222 // network requests), so they both keep a reference to it.
223 // Clients should not keep references to the UI thread filter, however
224 // (the filter will live as long as the profile lives, and afterwards it
225 // should not be used anymore either).
226 scoped_refptr
<SupervisedUserURLFilter
> ui_url_filter_
;
227 scoped_refptr
<SupervisedUserURLFilter
> io_url_filter_
;
229 SupervisedUserBlacklist blacklist_
;
231 DISALLOW_COPY_AND_ASSIGN(URLFilterContext
);
234 // Use |SupervisedUserServiceFactory::GetForProfile(..)| to get
235 // an instance of this service.
236 explicit SupervisedUserService(Profile
* profile
);
238 void SetActive(bool active
);
240 void OnCustodianProfileDownloaded(const base::string16
& full_name
);
242 void OnSupervisedUserRegistered(const AuthErrorCallback
& callback
,
243 Profile
* custodian_profile
,
244 const GoogleServiceAuthError
& auth_error
,
245 const std::string
& token
);
248 void StartSetupSync();
249 void FinishSetupSyncWhenReady();
250 void FinishSetupSync();
252 bool ProfileIsSupervised() const;
254 #if defined(ENABLE_EXTENSIONS)
255 // Internal implementation for ExtensionManagementPolicy::Delegate methods.
256 // If |error| is not NULL, it will be filled with an error message if the
257 // requested extension action (install, modify status, etc.) is not permitted.
258 bool ExtensionManagementPolicyImpl(const extensions::Extension
* extension
,
259 base::string16
* error
) const;
261 // Returns a list of all installed and enabled site lists in the current
262 // supervised profile.
263 ScopedVector
<SupervisedUserSiteList
> GetActiveSiteLists();
265 // Extensions helper to SetActive().
266 void SetExtensionsActive();
269 SupervisedUserSettingsService
* GetSettingsService();
271 void OnSupervisedUserIdChanged();
273 void OnDefaultFilteringBehaviorChanged();
275 void UpdateSiteLists();
277 // Asynchronously loads a static blacklist from a binary file at |path| and
278 // applies it to the URL filters.
279 void LoadBlacklist(const base::FilePath
& path
);
281 // Updates the manual overrides for hosts in the URL filters when the
282 // corresponding preference is changed.
283 void UpdateManualHosts();
285 // Updates the manual overrides for URLs in the URL filters when the
286 // corresponding preference is changed.
287 void UpdateManualURLs();
289 // Returns the human readable name of the supervised user.
290 std::string
GetSupervisedUserName() const;
292 // Owns us via the KeyedService mechanism.
299 #if defined(ENABLE_EXTENSIONS)
300 ScopedObserver
<extensions::ExtensionRegistry
,
301 extensions::ExtensionRegistryObserver
>
302 extension_registry_observer_
;
305 PrefChangeRegistrar pref_change_registrar_
;
307 // True iff we're waiting for the Sync service to be initialized.
308 bool waiting_for_sync_initialization_
;
309 bool is_profile_active_
;
311 std::vector
<NavigationBlockedCallback
> navigation_blocked_callbacks_
;
313 // Sets a profile in elevated state for testing if set to true.
314 bool elevated_for_testing_
;
316 // True only when |Init()| method has been called.
319 // True only when |Shutdown()| method has been called.
322 URLFilterContext url_filter_context_
;
324 // Used to create permission requests.
325 scoped_ptr
<PermissionRequestCreator
> permissions_creator_
;
327 // True iff we are waiting for a permission request to be issued.
328 bool waiting_for_permissions_
;
330 base::WeakPtrFactory
<SupervisedUserService
> weak_ptr_factory_
;
333 #endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SERVICE_H_