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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_POLICY_CORE_BROWSER_BROWSER_POLICY_CONNECTOR_H_
#define COMPONENTS_POLICY_CORE_BROWSER_BROWSER_POLICY_CONNECTOR_H_
#include <stdint.h>
#include <memory>
#include <string>
#include <string_view>
#include "base/memory/ref_counted.h"
#include "components/policy/core/browser/browser_policy_connector_base.h"
#include "components/policy/policy_export.h"
class PrefRegistrySimple;
class PrefService;
namespace network {
class SharedURLLoaderFactory;
}
namespace policy {
class DeviceManagementService;
class PolicyStatisticsCollector;
// The BrowserPolicyConnector keeps some shared components of the policy system.
// This is a basic implementation that gets extended by platform-specific
// subclasses.
class POLICY_EXPORT BrowserPolicyConnector : public BrowserPolicyConnectorBase {
public:
BrowserPolicyConnector(const BrowserPolicyConnector&) = delete;
BrowserPolicyConnector& operator=(const BrowserPolicyConnector&) = delete;
~BrowserPolicyConnector() override;
// Finalizes the initialization of the connector. This call can be skipped on
// tests that don't require the full policy system running.
virtual void Init(
PrefService* local_state,
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory) = 0;
// Checks whether this device is under any kind of enterprise management.
virtual bool IsDeviceEnterpriseManaged() const = 0;
// Checks whether there are any machine-level policies configured.
virtual bool HasMachineLevelPolicies() = 0;
// Cleans up the connector before it can be safely deleted.
void Shutdown() override;
// Schedules initialization of the cloud policy backend services, if the
// services are already constructed.
void ScheduleServiceInitialization(int64_t delay_milliseconds);
DeviceManagementService* device_management_service() {
return device_management_service_.get();
}
// Returns the URL for the device management service endpoint.
std::string GetDeviceManagementUrl() const;
// Returns the URL for the realtime reporting service endpoint.
std::string GetRealtimeReportingUrl() const;
// Returns the URL for the encrypted reporting service endpoint.
std::string GetEncryptedReportingUrl() const;
// Returns the URL for the File Storage Server endpoint for uploads.
std::string GetFileStorageServerUploadUrl() const;
// Registers refresh rate prefs.
static void RegisterPrefs(PrefRegistrySimple* registry);
// Returns true if the command line switch of policy can be used.
virtual bool IsCommandLineSwitchSupported() const = 0;
protected:
// Builds an uninitialized BrowserPolicyConnector.
// Init() should be called to create and start the policy components.
explicit BrowserPolicyConnector(
const HandlerListFactory& handler_list_factory);
// Helper for the public Init() that must be called by subclasses.
void InitInternal(
PrefService* local_state,
std::unique_ptr<DeviceManagementService> device_management_service);
// Returns true if the given |provider| has any registered policies.
bool ProviderHasPolicies(const ConfigurationPolicyProvider* provider) const;
private:
// Helper function to read URL overriding flags. If `flag` isn't set or if the
// Chrome channel doesn't allowing overriding, `default_value` is returned
// instead.
std::string GetUrlOverride(const char* flag,
std::string_view default_value) const;
std::unique_ptr<PolicyStatisticsCollector> policy_statistics_collector_;
std::unique_ptr<DeviceManagementService> device_management_service_;
};
} // namespace policy
#endif // COMPONENTS_POLICY_CORE_BROWSER_BROWSER_POLICY_CONNECTOR_H_
|