blob: f5bb6dbd4b34e50b12c6f210b3a0b39c024f3e22 [file] [log] [blame]
// Copyright 2013 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.
#ifndef CHROMEOS_NETWORK_PROXY_UI_PROXY_CONFIG_SERVICE_H_
#define CHROMEOS_NETWORK_PROXY_UI_PROXY_CONFIG_SERVICE_H_
#include <string>
#include "base/component_export.h"
#include "base/macros.h"
#include "components/prefs/pref_change_registrar.h"
#include "components/proxy_config/proxy_prefs.h"
class PrefService;
namespace base {
class Value;
}
namespace chromeos {
class NetworkState;
// This class provides an interface to the UI for getting a network proxy
// configuration.
// NOTE: This class must be rebuilt with the primary user's profile prefs when
// the primary user logs in.
// ALSO NOTE: The provided PrefService instances are used both to retrieve proxy
// configurations set by an extension, and for ONC policy information associated
// with a network. (Per-network proxy configurations are stored in Shill,
// but ONC policy configuration is stored in PrefService).
class COMPONENT_EXPORT(CHROMEOS_NETWORK) UIProxyConfigService {
public:
// |local_state_prefs| must not be null. |profile_prefs| can be
// null if there is no logged in user, in which case only the local state
// (device) prefs will be used. See note above.
UIProxyConfigService(PrefService* profile_prefs,
PrefService* local_state_prefs);
~UIProxyConfigService();
// Generates ONC dictionary for proxy settings enforced for the network, and
// writes them to |proxy_settings|. The proxy settings that will be written to
// |proxy_settings| will be one of the following (in order of preference):
// * A proxy enforced by a user policy (provided by kProxy prefence).
// * A proxy set by an extension in the active PrefService (also provided by
// kProxy pref).
// * A proxy set by an ONC policy associated with |network_guid|.
//
// |proxy_settings| is expected to be a dictionary value containing ONC proxy
// settings, and will generally contain the proxy settings reported by shill
// (which will have user set per-network proxy settings, if they are
// available).
//
// Returns whether |proxy_settings| have been changed.
bool MergeEnforcedProxyConfig(const std::string& network_guid,
base::Value* proxy_settings);
// Returns true if there is a default network and it has a proxy configuration
// with mode == MODE_FIXED_SERVERS.
bool HasDefaultNetworkProxyConfigured();
// Returns the ProxyMode for |network| using |local_state_prefs_|
ProxyPrefs::ProxyMode ProxyModeForNetwork(const NetworkState* network);
private:
void OnPreferenceChanged(const std::string& pref_name);
// GUID of network used for current_ui_config_.
std::string current_ui_network_guid_;
PrefService* profile_prefs_; // unowned
PrefChangeRegistrar profile_registrar_;
PrefService* local_state_prefs_; // unowned
PrefChangeRegistrar local_state_registrar_;
DISALLOW_COPY_AND_ASSIGN(UIProxyConfigService);
};
} // namespace chromeos
#endif // CHROMEOS_NETWORK_PROXY_UI_PROXY_CONFIG_SERVICE_H_