OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 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. |
| 4 |
| 5 #ifndef CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_READER_H_ |
| 6 #define CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_READER_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "base/scoped_ptr.h" |
| 10 #include "base/values.h" |
| 11 #include "chrome/browser/policy/configuration_policy_provider.h" |
| 12 #include "chrome/browser/policy/policy_status_info.h" |
| 13 |
| 14 namespace policy { |
| 15 |
| 16 class ConfigurationPolicyStatusKeeper; |
| 17 |
| 18 // This class reads policy information from a ConfigurationPolicyProvider in |
| 19 // order to determine the status of a policy (this includes its value and |
| 20 // whether it could be enforced on the client or not), as required by the |
| 21 // about:policy UI. |
| 22 class ConfigurationPolicyReader : public ConfigurationPolicyProvider::Observer { |
| 23 public: |
| 24 ConfigurationPolicyReader(ConfigurationPolicyProvider* provider, |
| 25 PolicyStatusInfo::PolicyLevel policy_level); |
| 26 virtual ~ConfigurationPolicyReader(); |
| 27 |
| 28 // ConfigurationPolicyProvider::Observer methods: |
| 29 virtual void OnUpdatePolicy(); |
| 30 virtual void OnProviderGoingAway(); |
| 31 |
| 32 // Creates a ConfigurationPolicyReader that reads managed platform policy. |
| 33 static ConfigurationPolicyReader* |
| 34 CreateManagedPlatformPolicyReader(); |
| 35 |
| 36 // Creates a ConfigurationPolicyReader that reads managed cloud policy. |
| 37 static ConfigurationPolicyReader* |
| 38 CreateManagedCloudPolicyReader(); |
| 39 |
| 40 // Creates a ConfigurationPolicyReader that reads recommended platform policy. |
| 41 static ConfigurationPolicyReader* |
| 42 CreateRecommendedPlatformPolicyReader(); |
| 43 |
| 44 // Creates a ConfigurationPolicyReader that reads recommended cloud policy. |
| 45 static ConfigurationPolicyReader* |
| 46 CreateRecommendedCloudPolicyReader(); |
| 47 |
| 48 // Returns a pointer to a DictionaryValue object containing policy status |
| 49 // information for the UI. Ownership of the return value is acquired by the |
| 50 // caller. Returns NULL if the reader is not aware of the given policy. |
| 51 virtual DictionaryValue* |
| 52 GetPolicyStatus(ConfigurationPolicyType policy) const; |
| 53 |
| 54 private: |
| 55 friend class MockConfigurationPolicyReader; |
| 56 |
| 57 // Only used in tests. |
| 58 ConfigurationPolicyReader(); |
| 59 |
| 60 // Updates the policy information held in this reader. This is called when |
| 61 // the ConfigurationPolicyProvider is updated. |
| 62 void Refresh(); |
| 63 |
| 64 // The policy provider from which policy settings are read. |
| 65 ConfigurationPolicyProvider* provider_; |
| 66 |
| 67 // Whether this ConfigurationPolicyReader contains managed policies. |
| 68 PolicyStatusInfo::PolicyLevel policy_level_; |
| 69 |
| 70 // Current policy status. |
| 71 scoped_ptr<ConfigurationPolicyStatusKeeper> policy_keeper_; |
| 72 |
| 73 ConfigurationPolicyObserverRegistrar registrar_; |
| 74 |
| 75 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyReader); |
| 76 }; |
| 77 |
| 78 // This class combines the policy information from different |
| 79 // ConfigurationPolicyReaders into a single list of policy information that the |
| 80 // about:policy UI can display. |
| 81 class PolicyStatus { |
| 82 public: |
| 83 PolicyStatus(ConfigurationPolicyReader* managed_platform, |
| 84 ConfigurationPolicyReader* managed_cloud, |
| 85 ConfigurationPolicyReader* recommended_platform, |
| 86 ConfigurationPolicyReader* recommended_cloud); |
| 87 ~PolicyStatus(); |
| 88 |
| 89 // Returns a ListValue pointer containing the status information of all |
| 90 // policies supported by the client. |any_policies_sent| is set to true if |
| 91 // there are policies in the list that were sent by a provider, otherwise |
| 92 // it is set to false. This is for the about:policy UI to display. |
| 93 ListValue* GetPolicyStatusList(bool* any_policies_sent) const; |
| 94 |
| 95 // Returns a string16 containing the actual name of the policy corresponding |
| 96 // to |policy_type|. Returns an empty string if there is no such policy_type |
| 97 // among the policies supported by the client. |
| 98 static string16 GetPolicyName(ConfigurationPolicyType policy_type); |
| 99 |
| 100 private: |
| 101 typedef ConfigurationPolicyProvider::PolicyDefinitionList |
| 102 PolicyDefinitionList; |
| 103 |
| 104 // Add the policy information for |policy| to the ListValue pointed to be |
| 105 // |list| as it is returned by the different ConfigurationPolicyReader |
| 106 // objects. Returns true if a policy was added and false otherwise. |
| 107 bool AddPolicyFromReaders(ConfigurationPolicyType policy, |
| 108 ListValue* list) const; |
| 109 |
| 110 scoped_ptr<ConfigurationPolicyReader> managed_platform_; |
| 111 scoped_ptr<ConfigurationPolicyReader> managed_cloud_; |
| 112 scoped_ptr<ConfigurationPolicyReader> recommended_platform_; |
| 113 scoped_ptr<ConfigurationPolicyReader> recommended_cloud_; |
| 114 |
| 115 DISALLOW_COPY_AND_ASSIGN(PolicyStatus); |
| 116 }; |
| 117 |
| 118 } // namespace policy |
| 119 |
| 120 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_READER_H_ |
OLD | NEW |