blob: 09ec96df405fb833e48d3593efbbc05a3e1ddab9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/policy/cloud_policy_manager.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/logging.h"
#include "base/prefs/pref_service.h"
#include "chrome/browser/policy/cloud_policy_service.h"
#include "chrome/browser/policy/policy_bundle.h"
#include "chrome/browser/policy/policy_map.h"
namespace policy {
CloudPolicyManager::CloudPolicyManager(const PolicyNamespaceKey& policy_ns_key,
CloudPolicyStore* cloud_policy_store)
: core_(policy_ns_key, cloud_policy_store),
waiting_for_policy_refresh_(false) {
store()->AddObserver(this);
// If the underlying store is already initialized, publish the loaded
// policy. Otherwise, request a load now.
if (store()->is_initialized())
CheckAndPublishPolicy();
else
store()->Load();
}
CloudPolicyManager::~CloudPolicyManager() {}
void CloudPolicyManager::Shutdown() {
core_.Disconnect();
store()->RemoveObserver(this);
ConfigurationPolicyProvider::Shutdown();
}
bool CloudPolicyManager::IsInitializationComplete(PolicyDomain domain) const {
if (domain == POLICY_DOMAIN_CHROME)
return store()->is_initialized();
return true;
}
void CloudPolicyManager::RefreshPolicies() {
if (service()) {
waiting_for_policy_refresh_ = true;
service()->RefreshPolicy(
base::Bind(&CloudPolicyManager::OnRefreshComplete,
base::Unretained(this)));
} else {
OnRefreshComplete(false);
}
}
void CloudPolicyManager::OnStoreLoaded(CloudPolicyStore* cloud_policy_store) {
DCHECK_EQ(store(), cloud_policy_store);
CheckAndPublishPolicy();
}
void CloudPolicyManager::OnStoreError(CloudPolicyStore* cloud_policy_store) {
DCHECK_EQ(store(), cloud_policy_store);
// Publish policy (even though it hasn't changed) in order to signal load
// complete on the ConfigurationPolicyProvider interface. Technically, this
// is only required on the first load, but doesn't hurt in any case.
CheckAndPublishPolicy();
}
void CloudPolicyManager::CheckAndPublishPolicy() {
if (IsInitializationComplete(POLICY_DOMAIN_CHROME) &&
!waiting_for_policy_refresh_) {
UpdatePolicy(CreatePolicyBundle());
}
}
scoped_ptr<PolicyBundle> CloudPolicyManager::CreatePolicyBundle() {
scoped_ptr<PolicyBundle> bundle(new PolicyBundle);
bundle->Get(PolicyNamespace(POLICY_DOMAIN_CHROME, std::string()))
.CopyFrom(store()->policy_map());
return bundle.Pass();
}
void CloudPolicyManager::OnRefreshComplete(bool success) {
waiting_for_policy_refresh_ = false;
CheckAndPublishPolicy();
}
} // namespace policy
|