This source file includes following definitions.
- PropertyChanged
- IsFavorite
- IsPrivate
#include "chromeos/network/favorite_state.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "base/strings/stringprintf.h"
#include "chromeos/network/network_event_log.h"
#include "chromeos/network/network_profile_handler.h"
#include "chromeos/network/network_state.h"
#include "chromeos/network/onc/onc_utils.h"
#include "chromeos/network/shill_property_util.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
namespace chromeos {
FavoriteState::FavoriteState(const std::string& path)
: ManagedState(MANAGED_TYPE_FAVORITE, path) {
}
FavoriteState::~FavoriteState() {
}
bool FavoriteState::PropertyChanged(const std::string& key,
const base::Value& value) {
if (key != shill::kUIDataProperty &&
!shill_property_util::IsPassphraseKey(key)) {
properties_.SetWithoutPathExpansion(key, value.DeepCopy());
}
if (ManagedStatePropertyChanged(key, value))
return true;
if (key == shill::kProfileProperty) {
return GetStringValue(key, value, &profile_path_);
} else if (key == shill::kUIDataProperty) {
scoped_ptr<NetworkUIData> new_ui_data =
shill_property_util::GetUIDataFromValue(value);
if (!new_ui_data) {
NET_LOG_ERROR("Failed to parse " + key, path());
return false;
}
ui_data_ = *new_ui_data;
scoped_ptr<base::DictionaryValue> onc_dict(new base::DictionaryValue);
ui_data_.FillDictionary(onc_dict.get());
std::string onc_source;
onc_dict->GetStringWithoutPathExpansion(NetworkUIData::kKeyONCSource,
&onc_source);
properties_.SetStringWithoutPathExpansion(NetworkUIData::kKeyONCSource,
onc_source);
return true;
} else if (key == shill::kGuidProperty) {
return GetStringValue(key, value, &guid_);
} else if (key == shill::kProxyConfigProperty) {
std::string proxy_config_str;
if (!value.GetAsString(&proxy_config_str)) {
NET_LOG_ERROR("Failed to parse " + key, path());
return false;
}
proxy_config_.Clear();
if (proxy_config_str.empty())
return true;
scoped_ptr<base::DictionaryValue> proxy_config_dict(
onc::ReadDictionaryFromJson(proxy_config_str));
if (proxy_config_dict) {
proxy_config_.MergeDictionary(proxy_config_dict.get());
} else {
NET_LOG_ERROR("Failed to parse " + key, path());
}
return true;
}
return false;
}
bool FavoriteState::IsFavorite() const {
return !profile_path_.empty() || type() == shill::kTypeEthernetEap;
}
bool FavoriteState::IsPrivate() const {
return !profile_path_.empty() &&
profile_path_ != NetworkProfileHandler::GetSharedProfilePath();
}
}