blob: abe456de83a84453cf1ccc3d0ebb8380caeda410 [file] [log] [blame]
// Copyright 2020 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/device_api/managed_configuration_service.h"
#include "chrome/browser/device_api/managed_configuration_api_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "content/public/browser/browser_thread.h"
#include "third_party/blink/public/common/features.h"
// static
void ManagedConfigurationServiceImpl::Create(
content::RenderFrameHost* host,
mojo::PendingReceiver<blink::mojom::ManagedConfigurationService> receiver) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
if (!base::FeatureList::IsEnabled(blink::features::kManagedConfiguration)) {
mojo::ReportBadMessage(
"Managed configuration access while the feature is not enabled.");
return;
}
// The object is bound to the lifetime of |host| and the mojo
// connection. See FrameServiceBase for details.
new ManagedConfigurationServiceImpl(host, std::move(receiver));
}
ManagedConfigurationServiceImpl::ManagedConfigurationServiceImpl(
content::RenderFrameHost* host,
mojo::PendingReceiver<blink::mojom::ManagedConfigurationService> receiver)
: FrameServiceBase(host, std::move(receiver)), host_(host) {
managed_configuration_api()->AddObserver(this);
}
ManagedConfigurationServiceImpl::~ManagedConfigurationServiceImpl() {
managed_configuration_api()->RemoveObserver(this);
}
void ManagedConfigurationServiceImpl::GetManagedConfiguration(
const std::vector<std::string>& keys,
GetManagedConfigurationCallback callback) {
managed_configuration_api()->GetOriginPolicyConfiguration(
origin(), keys,
base::BindOnce(
[](GetManagedConfigurationCallback callback,
std::unique_ptr<base::DictionaryValue> result) {
if (!result) {
return std::move(callback).Run(base::nullopt);
}
std::vector<std::pair<std::string, std::string>> items;
for (const auto& it : result->DictItems())
items.emplace_back(it.first, it.second.GetString());
std::move(callback).Run(
base::flat_map<std::string, std::string>(std::move(items)));
},
std::move(callback)));
}
void ManagedConfigurationServiceImpl::SubscribeToManagedConfiguration(
mojo::PendingRemote<blink::mojom::ManagedConfigurationObserver> observer) {
configuration_subscription_.Bind(std::move(observer));
}
void ManagedConfigurationServiceImpl::OnManagedConfigurationChanged() {
configuration_subscription_->OnConfigurationChanged();
}
ManagedConfigurationAPI*
ManagedConfigurationServiceImpl::managed_configuration_api() {
return ManagedConfigurationAPIFactory::GetForProfile(
Profile::FromBrowserContext(host_->GetBrowserContext()));
}
const url::Origin& ManagedConfigurationServiceImpl::GetOrigin() {
return origin();
}