blob: d3ba2344b41fb349e428e90f6f0cee3878a1336a [file] [log] [blame]
// 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 "chrome/browser/ui/ash/network/data_promo_notification.h"
#include "base/command_line.h"
#include "base/metrics/user_metrics.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/app/vector_icons/vector_icons.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chromeos/login/helper.h"
#include "chrome/browser/chromeos/mobile_config.h"
#include "chrome/browser/notifications/notification_display_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/ash/network/network_state_notifier.h"
#include "chrome/browser/ui/ash/system_tray_client.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/scoped_tabbed_browser_displayer.h"
#include "chrome/browser/ui/singleton_tabs.h"
#include "chrome/common/extensions/extension_constants.h"
#include "chrome/common/pref_names.h"
#include "chrome/grit/generated_resources.h"
#include "chromeos/chromeos_switches.h"
#include "chromeos/login/login_state.h"
#include "chromeos/network/device_state.h"
#include "chromeos/network/network_connect.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 "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
#include "extensions/browser/extension_registry.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/message_center/notification.h"
#include "ui/views/view.h"
#include "ui/views/widget/widget.h"
using chromeos::MobileConfig;
using chromeos::NetworkHandler;
using chromeos::NetworkState;
namespace {
const char kDataPromoNotificationId[] = "chrome://settings/internet/data_promo";
const char kNotifierDataPromo[] = "ash.data-promo";
const char kDataSaverNotificationId[] = "chrome://settings/internet/data_saver";
const char kNotifierDataSaver[] = "ash.data-saver";
const char kDataSaverExtensionUrl[] =
"https://chrome.google.com/webstore/detail/"
"pfmgfdlgomnbgkofeojodiodmgpgmkac?utm_source=chromeos-datasaver-prompt";
const int kNotificationCountPrefDefault = -1;
const int kTimesToShowDataSaverPrompt = 2;
Profile* GetProfileForNotifications() {
return ProfileManager::GetActiveUserProfile();
}
// Returns prefs::kShow3gPromoNotification or false if no active browser.
bool ShouldShow3gPromoNotification() {
return GetProfileForNotifications()->GetPrefs()->GetBoolean(
prefs::kShow3gPromoNotification);
}
void SetShow3gPromoNotification(bool value) {
GetProfileForNotifications()->GetPrefs()->SetBoolean(
prefs::kShow3gPromoNotification, value);
}
// Returns prefs::kCarrierDealPromoShown which is number of times
// carrier deal notification has been shown to users on this machine.
int GetCarrierDealPromoShown() {
return g_browser_process->local_state()->GetInteger(
prefs::kCarrierDealPromoShown);
}
void SetCarrierDealPromoShown(int value) {
g_browser_process->local_state()->SetInteger(prefs::kCarrierDealPromoShown,
value);
}
// Returns number of times the Data Saver prompt has been displayed.
int GetDataSaverPromptsShown() {
return GetProfileForNotifications()->GetPrefs()->GetInteger(
prefs::kDataSaverPromptsShown);
}
// Updates number of times the Data Saver prompt has been displayed.
void SetDataSaverPromptsShown(int times_shown) {
GetProfileForNotifications()->GetPrefs()->SetInteger(
prefs::kDataSaverPromptsShown, times_shown);
}
// kDisableDataSaverPrompt takes precedence over any kEnableDataSaverPrompt
// value. If neither flag is set, the Data Saver prompt is enabled by default.
bool DataSaverSwitchEnabled() {
return !base::CommandLine::ForCurrentProcess()->HasSwitch(
chromeos::switches::kDisableDataSaverPrompt);
}
// Is command line switch set for Data Saver demo mode, where we show the prompt
// after any change in network properties?
bool DataSaverSwitchDemoMode() {
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
chromeos::switches::kDisableDataSaverPrompt))
return false;
const std::string value =
base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
chromeos::switches::kEnableDataSaverPrompt);
return value == chromeos::switches::kDataSaverPromptDemoMode;
}
const MobileConfig::Carrier* GetCarrier(const NetworkState* cellular) {
const chromeos::DeviceState* device =
NetworkHandler::Get()->network_state_handler()->GetDeviceState(
cellular->device_path());
std::string carrier_id = device ? device->operator_name() : "";
if (carrier_id.empty()) {
NET_LOG_ERROR("Empty carrier ID for cellular network",
device ? device->path() : "No device");
return nullptr;
}
MobileConfig* config = MobileConfig::GetInstance();
if (!config->IsReady())
return nullptr;
return config->GetCarrier(carrier_id);
}
const MobileConfig::CarrierDeal* GetCarrierDeal(
const MobileConfig::Carrier* carrier) {
const MobileConfig::CarrierDeal* deal = carrier->GetDefaultDeal();
if (deal) {
// Check deal for validity.
int carrier_deal_promo_pref = GetCarrierDealPromoShown();
if (carrier_deal_promo_pref >= deal->notification_count())
return NULL;
const std::string locale = g_browser_process->GetApplicationLocale();
std::string deal_text =
deal->GetLocalizedString(locale, "notification_text");
NET_LOG_DEBUG("Carrier Deal Found", deal_text);
if (deal_text.empty())
return NULL;
}
return deal;
}
void NotificationClicked(const std::string& network_id,
const std::string& info_url) {
if (!info_url.empty()) {
chrome::ScopedTabbedBrowserDisplayer displayer(
GetProfileForNotifications());
ShowSingletonTab(displayer.browser(), GURL(info_url));
if (info_url == kDataSaverExtensionUrl)
base::RecordAction(base::UserMetricsAction("DataSaverPrompt_Clicked"));
} else {
SystemTrayClient::Get()->ShowNetworkSettings(network_id);
}
}
} // namespace
////////////////////////////////////////////////////////////////////////////////
// DataPromoNotification
DataPromoNotification::DataPromoNotification()
: notifications_shown_(false), weak_ptr_factory_(this) {
NetworkHandler::Get()->network_state_handler()->AddObserver(this, FROM_HERE);
}
DataPromoNotification::~DataPromoNotification() {
if (NetworkHandler::IsInitialized()) {
NetworkHandler::Get()->network_state_handler()->RemoveObserver(this,
FROM_HERE);
}
}
void DataPromoNotification::RegisterPrefs(PrefRegistrySimple* registry) {
// Carrier deal notification shown count defaults to 0.
registry->RegisterIntegerPref(prefs::kCarrierDealPromoShown, 0);
}
void DataPromoNotification::NetworkPropertiesUpdated(
const NetworkState* network) {
if (!network ||
(network->type() != shill::kTypeCellular && !DataSaverSwitchDemoMode()))
return;
ShowOptionalMobileDataPromoNotification();
}
void DataPromoNotification::DefaultNetworkChanged(const NetworkState* network) {
// Call NetworkPropertiesUpdated in case the Cellular network became the
// default network.
NetworkPropertiesUpdated(network);
}
void DataPromoNotification::ShowOptionalMobileDataPromoNotification() {
if (notifications_shown_)
return;
// Do not show notifications to unauthenticated users, or when requesting a
// network connection, or if there's no default_network.
if (!chromeos::LoginState::Get()->IsUserAuthenticated())
return;
const NetworkState* default_network =
NetworkHandler::Get()->network_state_handler()->DefaultNetwork();
if (!default_network)
return;
if (NetworkHandler::Get()
->network_connection_handler()
->HasPendingConnectRequest())
return;
if (!DataSaverSwitchDemoMode() &&
default_network->type() != shill::kTypeCellular)
return;
notifications_shown_ = true;
bool data_saver_prompt_shown = ShowDataSaverNotification();
// Display a one-time notification on first use of Mobile Data connection, or
// if there is a carrier deal defined show that even if user has already seen
// generic promo. Show deal regardless of |data_saver_prompt_shown|.
int carrier_deal_promo_pref = kNotificationCountPrefDefault;
const MobileConfig::CarrierDeal* deal = NULL;
const MobileConfig::Carrier* carrier = GetCarrier(default_network);
if (carrier)
deal = GetCarrierDeal(carrier);
base::string16 message =
l10n_util::GetStringUTF16(IDS_3G_NOTIFICATION_MESSAGE);
std::string info_url;
if (deal) {
carrier_deal_promo_pref = GetCarrierDealPromoShown();
const std::string locale = g_browser_process->GetApplicationLocale();
std::string deal_text =
deal->GetLocalizedString(locale, "notification_text");
message = base::UTF8ToUTF16(deal_text + "\n\n") + message;
info_url = deal->info_url();
if (info_url.empty() && carrier)
info_url = carrier->top_up_url();
} else if (data_saver_prompt_shown || !ShouldShow3gPromoNotification()) {
return;
}
std::unique_ptr<message_center::Notification> notification =
message_center::Notification::CreateSystemNotification(
message_center::NOTIFICATION_TYPE_SIMPLE, kDataPromoNotificationId,
l10n_util::GetStringUTF16(IDS_MOBILE_DATA_NOTIFICATION_TITLE),
message, gfx::Image(), base::string16() /* display_source */, GURL(),
message_center::NotifierId(
message_center::NotifierId::SYSTEM_COMPONENT, kNotifierDataPromo),
message_center::RichNotificationData(),
new message_center::HandleNotificationClickDelegate(base::Bind(
&NotificationClicked, default_network->guid(), info_url)),
kNotificationMobileDataIcon,
message_center::SystemNotificationWarningLevel::NORMAL);
notification->set_clickable(true);
NotificationDisplayService::GetForProfile(GetProfileForNotifications())
->Display(NotificationHandler::Type::TRANSIENT, *notification);
SetShow3gPromoNotification(false);
if (carrier_deal_promo_pref != kNotificationCountPrefDefault)
SetCarrierDealPromoShown(carrier_deal_promo_pref + 1);
}
bool DataPromoNotification::ShowDataSaverNotification() {
if (!DataSaverSwitchEnabled())
return false;
int times_shown = GetDataSaverPromptsShown();
if (!DataSaverSwitchDemoMode() && times_shown >= kTimesToShowDataSaverPrompt)
return false;
if (extensions::ExtensionRegistry::Get(ProfileManager::GetActiveUserProfile())
->GetExtensionById(extension_misc::kDataSaverExtensionId,
extensions::ExtensionRegistry::EVERYTHING)) {
// If extension is installed, disable future prompts.
SetDataSaverPromptsShown(kTimesToShowDataSaverPrompt);
return false;
}
base::string16 title = l10n_util::GetStringUTF16(IDS_3G_DATASAVER_TITLE);
base::string16 message = l10n_util::GetStringUTF16(IDS_3G_DATASAVER_MESSAGE);
std::unique_ptr<message_center::Notification> notification =
message_center::Notification::CreateSystemNotification(
message_center::NOTIFICATION_TYPE_SIMPLE, kDataSaverNotificationId,
title, message, gfx::Image(), base::string16() /* display_source */,
GURL(),
message_center::NotifierId(
message_center::NotifierId::SYSTEM_COMPONENT, kNotifierDataSaver),
message_center::RichNotificationData(),
new message_center::HandleNotificationClickDelegate(
base::Bind(&NotificationClicked, "", kDataSaverExtensionUrl)),
kNotificationMobileDataIcon,
message_center::SystemNotificationWarningLevel::NORMAL);
notification->set_clickable(true);
NotificationDisplayService::GetForProfile(GetProfileForNotifications())
->Display(NotificationHandler::Type::TRANSIENT, *notification);
base::RecordAction(base::UserMetricsAction("DataSaverPrompt_Shown"));
if (DataSaverSwitchDemoMode()) {
SetDataSaverPromptsShown(0); // demo mode resets times shown counts.
SetShow3gPromoNotification(true);
} else {
SetDataSaverPromptsShown(times_shown + 1);
}
return true;
}