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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
|
// Copyright (c) 2012 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 "ui/chromeos/network/network_state_notifier.h"
#include "base/bind.h"
#include "base/location.h"
#include "base/strings/string16.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "chromeos/network/network_configuration_handler.h"
#include "chromeos/network/network_connection_handler.h"
#include "chromeos/network/network_event_log.h"
#include "chromeos/network/network_state.h"
#include "chromeos/network/network_state_handler.h"
#include "chromeos/network/shill_property_util.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/chromeos/network/network_connect.h"
#include "ui/chromeos/resources/grit/ui_chromeos_resources.h"
#include "ui/chromeos/strings/grit/ui_chromeos_strings.h"
#include "ui/message_center/message_center.h"
#include "ui/message_center/notification.h"
using chromeos::NetworkConnectionHandler;
using chromeos::NetworkHandler;
using chromeos::NetworkState;
using chromeos::NetworkStateHandler;
using chromeos::NetworkTypePattern;
namespace {
const int kMinTimeBetweenOutOfCreditsNotifySeconds = 10 * 60;
// Ignore in-progress error.
bool ShillErrorIsIgnored(const std::string& shill_error) {
if (shill_error == shill::kErrorResultInProgress)
return true;
return false;
}
// Error messages based on |error_name|, not network_state->error().
base::string16 GetConnectErrorString(const std::string& error_name) {
if (error_name == NetworkConnectionHandler::kErrorNotFound)
return l10n_util::GetStringUTF16(IDS_CHROMEOS_NETWORK_ERROR_CONNECT_FAILED);
if (error_name == NetworkConnectionHandler::kErrorConfigureFailed) {
return l10n_util::GetStringUTF16(
IDS_CHROMEOS_NETWORK_ERROR_CONFIGURE_FAILED);
}
if (error_name == NetworkConnectionHandler::kErrorCertLoadTimeout) {
return l10n_util::GetStringUTF16(
IDS_CHROMEOS_NETWORK_ERROR_CERTIFICATES_NOT_LOADED);
}
if (error_name == ui::NetworkConnect::kErrorActivateFailed) {
return l10n_util::GetStringUTF16(
IDS_CHROMEOS_NETWORK_ERROR_ACTIVATION_FAILED);
}
return base::string16();
}
void ShowErrorNotification(const std::string& notification_id,
const std::string& network_type,
const base::string16& title,
const base::string16& message,
const base::Closure& callback) {
int icon_id = (network_type == shill::kTypeCellular)
? IDR_AURA_UBER_TRAY_NETWORK_FAILED_CELLULAR
: IDR_AURA_UBER_TRAY_NETWORK_FAILED;
const gfx::Image& icon =
ui::ResourceBundle::GetSharedInstance().GetImageNamed(icon_id);
message_center::MessageCenter::Get()->AddNotification(
message_center::Notification::CreateSystemNotification(
notification_id, title, message, icon,
ui::NetworkStateNotifier::kNotifierNetworkError, callback));
}
} // namespace
namespace ui {
const char NetworkStateNotifier::kNotifierNetwork[] = "ui.chromeos.network";
const char NetworkStateNotifier::kNotifierNetworkError[] =
"ui.chromeos.network.error";
const char NetworkStateNotifier::kNetworkConnectNotificationId[] =
"chrome://settings/internet/connect";
const char NetworkStateNotifier::kNetworkActivateNotificationId[] =
"chrome://settings/internet/activate";
const char NetworkStateNotifier::kNetworkOutOfCreditsNotificationId[] =
"chrome://settings/internet/out-of-credits";
NetworkStateNotifier::NetworkStateNotifier(NetworkConnect* network_connect)
: network_connect_(network_connect),
did_show_out_of_credits_(false),
weak_ptr_factory_(this) {
if (!NetworkHandler::IsInitialized())
return;
NetworkStateHandler* handler = NetworkHandler::Get()->network_state_handler();
handler->AddObserver(this, FROM_HERE);
UpdateDefaultNetwork(handler->DefaultNetwork());
}
NetworkStateNotifier::~NetworkStateNotifier() {
if (!NetworkHandler::IsInitialized())
return;
NetworkHandler::Get()->network_state_handler()->RemoveObserver(this,
FROM_HERE);
}
void NetworkStateNotifier::DefaultNetworkChanged(const NetworkState* network) {
if (!UpdateDefaultNetwork(network))
return;
// If the default network changes to another network, allow the out of
// credits notification to be shown again. A delay prevents the notification
// from being shown too frequently (see below).
if (network)
did_show_out_of_credits_ = false;
}
void NetworkStateNotifier::NetworkPropertiesUpdated(
const NetworkState* network) {
if (network->type() != shill::kTypeCellular)
return;
UpdateCellularOutOfCredits(network);
UpdateCellularActivating(network);
}
bool NetworkStateNotifier::UpdateDefaultNetwork(const NetworkState* network) {
std::string default_network_path;
if (network)
default_network_path = network->path();
if (default_network_path != last_default_network_) {
last_default_network_ = default_network_path;
return true;
}
return false;
}
void NetworkStateNotifier::UpdateCellularOutOfCredits(
const NetworkState* cellular) {
// Only display a notification if we are out of credits and have not already
// shown a notification (or have since connected to another network type).
if (!cellular->cellular_out_of_credits() || did_show_out_of_credits_)
return;
// Only display a notification if not connected, connecting, or waiting to
// connect to another network.
NetworkStateHandler* handler = NetworkHandler::Get()->network_state_handler();
const NetworkState* default_network = handler->DefaultNetwork();
if (default_network && default_network != cellular)
return;
if (handler->ConnectingNetworkByType(NetworkTypePattern::NonVirtual()) ||
NetworkHandler::Get()
->network_connection_handler()
->HasPendingConnectRequest())
return;
did_show_out_of_credits_ = true;
base::TimeDelta dtime = base::Time::Now() - out_of_credits_notify_time_;
if (dtime.InSeconds() > kMinTimeBetweenOutOfCreditsNotifySeconds) {
out_of_credits_notify_time_ = base::Time::Now();
base::string16 error_msg = l10n_util::GetStringFUTF16(
IDS_NETWORK_OUT_OF_CREDITS_BODY, base::UTF8ToUTF16(cellular->name()));
ShowErrorNotification(
kNetworkOutOfCreditsNotificationId, cellular->type(),
l10n_util::GetStringUTF16(IDS_NETWORK_OUT_OF_CREDITS_TITLE), error_msg,
base::Bind(&NetworkStateNotifier::ShowNetworkSettings,
weak_ptr_factory_.GetWeakPtr(), cellular->path()));
}
}
void NetworkStateNotifier::UpdateCellularActivating(
const NetworkState* cellular) {
// Keep track of any activating cellular network.
std::string activation_state = cellular->activation_state();
if (activation_state == shill::kActivationStateActivating) {
cellular_activating_.insert(cellular->path());
return;
}
// Only display a notification if this network was activating and is now
// activated.
if (!cellular_activating_.count(cellular->path()) ||
activation_state != shill::kActivationStateActivated)
return;
cellular_activating_.erase(cellular->path());
int icon_id;
if (cellular->network_technology() == shill::kNetworkTechnologyLte)
icon_id = IDR_AURA_UBER_TRAY_NOTIFICATION_LTE;
else
icon_id = IDR_AURA_UBER_TRAY_NOTIFICATION_3G;
const gfx::Image& icon =
ui::ResourceBundle::GetSharedInstance().GetImageNamed(icon_id);
message_center::MessageCenter::Get()->AddNotification(
message_center::Notification::CreateSystemNotification(
kNetworkActivateNotificationId,
l10n_util::GetStringUTF16(IDS_NETWORK_CELLULAR_ACTIVATED_TITLE),
l10n_util::GetStringFUTF16(IDS_NETWORK_CELLULAR_ACTIVATED,
base::UTF8ToUTF16((cellular->name()))),
icon, kNotifierNetwork,
base::Bind(&NetworkStateNotifier::ShowNetworkSettings,
weak_ptr_factory_.GetWeakPtr(), cellular->path())));
}
void NetworkStateNotifier::ShowNetworkConnectError(
const std::string& error_name,
const std::string& service_path) {
if (service_path.empty()) {
base::DictionaryValue shill_properties;
ShowConnectErrorNotification(error_name, service_path, shill_properties);
return;
}
// Get the up-to-date properties for the network and display the error.
NetworkHandler::Get()->network_configuration_handler()->GetProperties(
service_path,
base::Bind(&NetworkStateNotifier::ConnectErrorPropertiesSucceeded,
weak_ptr_factory_.GetWeakPtr(), error_name),
base::Bind(&NetworkStateNotifier::ConnectErrorPropertiesFailed,
weak_ptr_factory_.GetWeakPtr(), error_name, service_path));
}
void NetworkStateNotifier::ShowMobileActivationError(
const std::string& service_path) {
const NetworkState* cellular =
NetworkHandler::Get()->network_state_handler()->GetNetworkState(
service_path);
if (!cellular || cellular->type() != shill::kTypeCellular) {
NET_LOG_ERROR("ShowMobileActivationError without Cellular network",
service_path);
return;
}
message_center::MessageCenter::Get()->AddNotification(
message_center::Notification::CreateSystemNotification(
kNetworkActivateNotificationId,
l10n_util::GetStringUTF16(IDS_NETWORK_ACTIVATION_ERROR_TITLE),
l10n_util::GetStringFUTF16(IDS_NETWORK_ACTIVATION_NEEDS_CONNECTION,
base::UTF8ToUTF16(cellular->name())),
ui::ResourceBundle::GetSharedInstance().GetImageNamed(
IDR_AURA_UBER_TRAY_NETWORK_FAILED_CELLULAR),
kNotifierNetworkError,
base::Bind(&NetworkStateNotifier::ShowNetworkSettings,
weak_ptr_factory_.GetWeakPtr(), service_path)));
}
void NetworkStateNotifier::RemoveConnectNotification() {
message_center::MessageCenter* message_center =
message_center::MessageCenter::Get();
if (message_center) {
message_center->RemoveNotification(kNetworkConnectNotificationId,
false /* not by user */);
}
}
void NetworkStateNotifier::ConnectErrorPropertiesSucceeded(
const std::string& error_name,
const std::string& service_path,
const base::DictionaryValue& shill_properties) {
std::string state;
shill_properties.GetStringWithoutPathExpansion(shill::kStateProperty, &state);
if (chromeos::NetworkState::StateIsConnected(state) ||
chromeos::NetworkState::StateIsConnecting(state)) {
// Network is no longer in an error state. This can happen if an
// unexpected idle state transition occurs, see crbug.com/333955.
return;
}
ShowConnectErrorNotification(error_name, service_path, shill_properties);
}
void NetworkStateNotifier::ConnectErrorPropertiesFailed(
const std::string& error_name,
const std::string& service_path,
const std::string& shill_connect_error,
scoped_ptr<base::DictionaryValue> shill_error_data) {
base::DictionaryValue shill_properties;
ShowConnectErrorNotification(error_name, service_path, shill_properties);
}
void NetworkStateNotifier::ShowConnectErrorNotification(
const std::string& error_name,
const std::string& service_path,
const base::DictionaryValue& shill_properties) {
base::string16 error = GetConnectErrorString(error_name);
if (error.empty()) {
std::string shill_error;
shill_properties.GetStringWithoutPathExpansion(shill::kErrorProperty,
&shill_error);
if (!chromeos::NetworkState::ErrorIsValid(shill_error)) {
shill_properties.GetStringWithoutPathExpansion(
shill::kPreviousErrorProperty, &shill_error);
NET_LOG_DEBUG("Notify Service.PreviousError: " + shill_error,
service_path);
if (!chromeos::NetworkState::ErrorIsValid(shill_error))
shill_error.clear();
} else {
NET_LOG_DEBUG("Notify Service.Error: " + shill_error, service_path);
}
const NetworkState* network =
NetworkHandler::Get()->network_state_handler()->GetNetworkState(
service_path);
if (network) {
// Always log last_error, but only use it if shill_error is empty.
// TODO(stevenjb): This shouldn't ever be necessary, but is kept here as
// a failsafe since more information is better than less when debugging
// and we have encountered some strange edge cases before.
NET_LOG_DEBUG("Notify Network.last_error: " + network->last_error(),
service_path);
if (shill_error.empty())
shill_error = network->last_error();
}
if (ShillErrorIsIgnored(shill_error)) {
NET_LOG_DEBUG("Notify Ignoring error: " + error_name, service_path);
return;
}
error = network_connect_->GetErrorString(shill_error, service_path);
if (error.empty())
error = l10n_util::GetStringUTF16(IDS_CHROMEOS_NETWORK_ERROR_UNKNOWN);
}
NET_LOG_ERROR("Notify connect error: " + base::UTF16ToUTF8(error),
service_path);
std::string network_name =
chromeos::shill_property_util::GetNameFromProperties(service_path,
shill_properties);
std::string network_error_details;
shill_properties.GetStringWithoutPathExpansion(shill::kErrorDetailsProperty,
&network_error_details);
base::string16 error_msg;
if (!network_error_details.empty()) {
// network_name should't be empty if network_error_details is set.
error_msg = l10n_util::GetStringFUTF16(
IDS_NETWORK_CONNECTION_ERROR_MESSAGE_WITH_SERVER_MESSAGE,
base::UTF8ToUTF16(network_name), error,
base::UTF8ToUTF16(network_error_details));
} else if (network_name.empty()) {
error_msg = l10n_util::GetStringFUTF16(
IDS_NETWORK_CONNECTION_ERROR_MESSAGE_NO_NAME, error);
} else {
error_msg =
l10n_util::GetStringFUTF16(IDS_NETWORK_CONNECTION_ERROR_MESSAGE,
base::UTF8ToUTF16(network_name), error);
}
std::string network_type;
shill_properties.GetStringWithoutPathExpansion(shill::kTypeProperty,
&network_type);
ShowErrorNotification(
kNetworkConnectNotificationId, network_type,
l10n_util::GetStringUTF16(IDS_NETWORK_CONNECTION_ERROR_TITLE), error_msg,
base::Bind(&NetworkStateNotifier::ShowNetworkSettings,
weak_ptr_factory_.GetWeakPtr(), service_path));
}
void NetworkStateNotifier::ShowNetworkSettings(
const std::string& service_path) {
network_connect_->ShowNetworkSettings(service_path);
}
} // namespace ui
|