blob: 8d82f61e31ab3c2e800d54d7d1aeb496e4125712 [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_POLICY_CHROME_BROWSER_CLOUD_MANAGEMENT_CONTROLLER_DESKTOP_H_
#define CHROME_BROWSER_POLICY_CHROME_BROWSER_CLOUD_MANAGEMENT_CONTROLLER_DESKTOP_H_
#include <stdint.h>
#include <map>
#include <vector>
#include "base/task/single_thread_task_runner.h"
#include "chrome/browser/policy/cbcm_invalidations_initializer.h"
#include "components/enterprise/browser/controller/chrome_browser_cloud_management_controller.h"
#include "components/enterprise/client_certificates/core/prefs_certificate_store.h"
namespace instance_id {
class InstanceIDDriver;
}
namespace invalidation {
class InvalidationListener;
class LegacyTopicsCleaner;
} // namespace invalidation
namespace policy {
class ChromeBrowserCloudManagementRegisterWatcher;
class CloudPolicyInvalidator;
class FmRegistrationTokenUploader;
class RemoteCommandsInvalidator;
// Desktop implementation of the platform-specific operations of CBCMController.
class ChromeBrowserCloudManagementControllerDesktop
: public ChromeBrowserCloudManagementController::Delegate,
public CBCMInvalidationsInitializer::Delegate {
public:
ChromeBrowserCloudManagementControllerDesktop();
ChromeBrowserCloudManagementControllerDesktop(
const ChromeBrowserCloudManagementControllerDesktop&) = delete;
ChromeBrowserCloudManagementControllerDesktop& operator=(
const ChromeBrowserCloudManagementControllerDesktop&) = delete;
~ChromeBrowserCloudManagementControllerDesktop() override;
// ChromeBrowserCloudManagementController::Delegate implementation.
void SetDMTokenStorageDelegate() override;
int GetUserDataDirKey() override;
base::FilePath GetExternalPolicyDir() override;
NetworkConnectionTrackerGetter CreateNetworkConnectionTrackerGetter()
override;
// TODO(crbug.com/341377023): `InvalidationListener` does not use
// `DeviceIdentityProvider` and does not need
// `DeviceOAuth2TokenServiceFactory`. Check if any other service needs the
// factory inialialized.
void InitializeOAuthTokenFactory(
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory,
PrefService* local_state) override;
void StartWatchingRegistration(
ChromeBrowserCloudManagementController* controller) override;
bool WaitUntilPolicyEnrollmentFinished() override;
bool IsEnterpriseStartupDialogShowing() override;
void OnServiceAccountSet(CloudPolicyClient* client,
const std::string& account_email) override;
void ShutDown() override;
MachineLevelUserCloudPolicyManager* GetMachineLevelUserCloudPolicyManager()
override;
DeviceManagementService* GetDeviceManagementService() override;
scoped_refptr<network::SharedURLLoaderFactory> GetSharedURLLoaderFactory()
override;
scoped_refptr<base::SingleThreadTaskRunner> GetBestEffortTaskRunner()
override;
std::unique_ptr<enterprise_reporting::ReportingDelegateFactory>
GetReportingDelegateFactory() override;
void SetGaiaURLLoaderFactory(scoped_refptr<network::SharedURLLoaderFactory>
url_loader_factory) override;
bool ReadyToCreatePolicyManager() override;
bool ReadyToInit() override;
std::unique_ptr<ClientDataDelegate> CreateClientDataDelegate() override;
std::unique_ptr<enterprise_connectors::DeviceTrustKeyManager>
CreateDeviceTrustKeyManager() override;
std::unique_ptr<client_certificates::CertificateProvisioningService>
CreateCertificateProvisioningService() override;
// CBCMInvalidationsInitializer::Delegate:
// Starts the services required for Policy Invalidations over FCM to be
// enabled.
void StartInvalidations() override;
scoped_refptr<network::SharedURLLoaderFactory> GetURLLoaderFactory() override;
bool IsInvalidationsServiceStarted() const override;
private:
std::unique_ptr<ChromeBrowserCloudManagementRegisterWatcher>
cloud_management_register_watcher_;
// These objects are all involved in Policy Invalidations.
CBCMInvalidationsInitializer invalidations_initializer_;
scoped_refptr<network::SharedURLLoaderFactory> gaia_url_loader_factory_;
std::unique_ptr<instance_id::InstanceIDDriver> device_instance_id_driver_;
std::map<int64_t, std::unique_ptr<invalidation::InvalidationListener>>
invalidation_listener_per_project_;
std::unique_ptr<CloudPolicyInvalidator> policy_invalidator_;
std::vector<std::unique_ptr<FmRegistrationTokenUploader>>
fm_registration_token_uploaders_;
// This invalidator is responsible for receiving remote commands invalidations
std::unique_ptr<RemoteCommandsInvalidator> commands_invalidator_;
// Responsible for storing and retrieving browser-level managed identities.
std::unique_ptr<client_certificates::CertificateStore> certificate_store_;
// Unsubscribes any remaining invalidation topics.
std::unique_ptr<invalidation::LegacyTopicsCleaner> legacy_topics_cleaner_;
};
} // namespace policy
#endif // CHROME_BROWSER_POLICY_CHROME_BROWSER_CLOUD_MANAGEMENT_CONTROLLER_DESKTOP_H_