blob: 2c281c8121d555a49c27276c42e53c079309d756 [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.
#include "chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h"
#include <set>
#include "base/bind.h"
#include "base/command_line.h"
#include "base/message_loop/message_loop.h"
#include "base/prefs/pref_service.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/values.h"
#include "chrome/browser/local_discovery/privet_confirm_api_flow.h"
#include "chrome/browser/local_discovery/privet_constants.h"
#include "chrome/browser/local_discovery/privet_device_lister_impl.h"
#include "chrome/browser/local_discovery/privet_http_asynchronous_factory.h"
#include "chrome/browser/local_discovery/privet_http_impl.h"
#include "chrome/browser/local_discovery/service_discovery_shared_client.h"
#include "chrome/browser/printing/cloud_print/cloud_print_proxy_service.h"
#include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
#include "chrome/browser/signin/signin_manager_factory.h"
#include "chrome/browser/signin/signin_promo.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_tabstrip.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/pref_names.h"
#include "components/cloud_devices/common/cloud_devices_urls.h"
#include "components/signin/core/browser/profile_oauth2_token_service.h"
#include "components/signin/core/browser/signin_manager_base.h"
#include "content/public/browser/user_metrics.h"
#include "content/public/browser/web_ui.h"
#include "content/public/common/page_transition_types.h"
#include "grit/generated_resources.h"
#include "net/base/host_port_pair.h"
#include "net/base/net_util.h"
#include "net/base/url_util.h"
#include "net/http/http_status_code.h"
#include "ui/base/l10n/l10n_util.h"
#if defined(ENABLE_FULL_PRINTING) && !defined(OS_CHROMEOS)
#define CLOUD_PRINT_CONNECTOR_UI_AVAILABLE
#endif
namespace local_discovery {
namespace {
const char kDeviceTypePrinter[] = "printer";
int g_num_visible = 0;
} // namespace
LocalDiscoveryUIHandler::LocalDiscoveryUIHandler() : is_visible_(false) {
#if defined(CLOUD_PRINT_CONNECTOR_UI_AVAILABLE)
#if !defined(GOOGLE_CHROME_BUILD) && defined(OS_WIN)
// On Windows, we need the PDF plugin which is only guaranteed to exist on
// Google Chrome builds. Use a command-line switch for Windows non-Google
// Chrome builds.
cloud_print_connector_ui_enabled_ =
CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableCloudPrintProxy);
#else
// Always enabled for Linux and Google Chrome Windows builds.
// Never enabled for Chrome OS, we don't even need to indicate it.
cloud_print_connector_ui_enabled_ = true;
#endif
#endif // defined(CLOUD_PRINT_CONNECTOR_UI_AVAILABLE)
}
LocalDiscoveryUIHandler::~LocalDiscoveryUIHandler() {
Profile* profile = Profile::FromWebUI(web_ui());
SigninManagerBase* signin_manager =
SigninManagerFactory::GetInstance()->GetForProfile(profile);
if (signin_manager)
signin_manager->RemoveObserver(this);
ResetCurrentRegistration();
SetIsVisible(false);
}
// static
bool LocalDiscoveryUIHandler::GetHasVisible() {
return g_num_visible != 0;
}
void LocalDiscoveryUIHandler::RegisterMessages() {
web_ui()->RegisterMessageCallback("start", base::Bind(
&LocalDiscoveryUIHandler::HandleStart,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("isVisible", base::Bind(
&LocalDiscoveryUIHandler::HandleIsVisible,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("registerDevice", base::Bind(
&LocalDiscoveryUIHandler::HandleRegisterDevice,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("cancelRegistration", base::Bind(
&LocalDiscoveryUIHandler::HandleCancelRegistration,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("requestPrinterList", base::Bind(
&LocalDiscoveryUIHandler::HandleRequestPrinterList,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("openCloudPrintURL", base::Bind(
&LocalDiscoveryUIHandler::HandleOpenCloudPrintURL,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("showSyncUI", base::Bind(
&LocalDiscoveryUIHandler::HandleShowSyncUI,
base::Unretained(this)));
// Cloud print connector related messages
#if defined(CLOUD_PRINT_CONNECTOR_UI_AVAILABLE)
if (cloud_print_connector_ui_enabled_) {
web_ui()->RegisterMessageCallback(
"showCloudPrintSetupDialog",
base::Bind(&LocalDiscoveryUIHandler::ShowCloudPrintSetupDialog,
base::Unretained(this)));
web_ui()->RegisterMessageCallback(
"disableCloudPrintConnector",
base::Bind(&LocalDiscoveryUIHandler::HandleDisableCloudPrintConnector,
base::Unretained(this)));
}
#endif // defined(ENABLE_FULL_PRINTING)
}
void LocalDiscoveryUIHandler::HandleStart(const base::ListValue* args) {
Profile* profile = Profile::FromWebUI(web_ui());
// If privet_lister_ is already set, it is a mock used for tests or the result
// of a reload.
if (!privet_lister_) {
service_discovery_client_ = ServiceDiscoverySharedClient::GetInstance();
privet_lister_.reset(new PrivetDeviceListerImpl(
service_discovery_client_.get(), this));
privet_http_factory_ =
PrivetHTTPAsynchronousFactory::CreateInstance(
service_discovery_client_.get(), profile->GetRequestContext());
SigninManagerBase* signin_manager =
SigninManagerFactory::GetInstance()->GetForProfile(profile);
if (signin_manager)
signin_manager->AddObserver(this);
}
privet_lister_->Start();
privet_lister_->DiscoverNewDevices(false);
#if defined(CLOUD_PRINT_CONNECTOR_UI_AVAILABLE)
StartCloudPrintConnector();
#endif
CheckUserLoggedIn();
}
void LocalDiscoveryUIHandler::HandleIsVisible(const base::ListValue* args) {
bool is_visible = false;
bool rv = args->GetBoolean(0, &is_visible);
DCHECK(rv);
SetIsVisible(is_visible);
}
void LocalDiscoveryUIHandler::HandleRegisterDevice(
const base::ListValue* args) {
std::string device;
bool rv = args->GetString(0, &device);
DCHECK(rv);
privet_resolution_ = privet_http_factory_->CreatePrivetHTTP(
device,
device_descriptions_[device].address,
base::Bind(&LocalDiscoveryUIHandler::StartRegisterHTTP,
base::Unretained(this)));
privet_resolution_->Start();
}
void LocalDiscoveryUIHandler::HandleCancelRegistration(
const base::ListValue* args) {
ResetCurrentRegistration();
}
void LocalDiscoveryUIHandler::HandleRequestPrinterList(
const base::ListValue* args) {
Profile* profile = Profile::FromWebUI(web_ui());
ProfileOAuth2TokenService* token_service =
ProfileOAuth2TokenServiceFactory::GetForProfile(profile);
SigninManagerBase* signin_manager =
SigninManagerFactory::GetInstance()->GetForProfile(profile);
cloud_print_printer_list_.reset(
new CloudPrintPrinterList(profile->GetRequestContext(),
token_service,
signin_manager->GetAuthenticatedAccountId(),
this));
cloud_print_printer_list_->Start();
}
void LocalDiscoveryUIHandler::HandleOpenCloudPrintURL(
const base::ListValue* args) {
std::string id;
bool rv = args->GetString(0, &id);
DCHECK(rv);
Browser* browser = chrome::FindBrowserWithWebContents(
web_ui()->GetWebContents());
DCHECK(browser);
chrome::AddSelectedTabWithURL(browser,
cloud_devices::GetCloudPrintManageDeviceURL(id),
content::PAGE_TRANSITION_FROM_API);
}
void LocalDiscoveryUIHandler::HandleShowSyncUI(
const base::ListValue* args) {
Browser* browser = chrome::FindBrowserWithWebContents(
web_ui()->GetWebContents());
DCHECK(browser);
GURL url(signin::GetPromoURL(signin::SOURCE_DEVICES_PAGE,
true)); // auto close after success.
browser->OpenURL(
content::OpenURLParams(url, content::Referrer(), SINGLETON_TAB,
content::PAGE_TRANSITION_AUTO_BOOKMARK, false));
}
void LocalDiscoveryUIHandler::StartRegisterHTTP(
scoped_ptr<PrivetHTTPClient> http_client) {
current_http_client_.swap(http_client);
std::string user = GetSyncAccount();
if (!current_http_client_) {
SendRegisterError();
return;
}
current_register_operation_ =
current_http_client_->CreateRegisterOperation(user, this);
current_register_operation_->Start();
}
void LocalDiscoveryUIHandler::OnPrivetRegisterClaimToken(
PrivetRegisterOperation* operation,
const std::string& token,
const GURL& url) {
web_ui()->CallJavascriptFunction(
"local_discovery.onRegistrationConfirmedOnPrinter");
if (device_descriptions_.count(current_http_client_->GetName()) == 0) {
SendRegisterError();
return;
}
bool is_cloud_print =
device_descriptions_[current_http_client_->GetName()].type ==
kDeviceTypePrinter;
Profile* profile = Profile::FromWebUI(web_ui());
ProfileOAuth2TokenService* token_service =
ProfileOAuth2TokenServiceFactory::GetForProfile(profile);
if (!token_service) {
SendRegisterError();
return;
}
SigninManagerBase* signin_manager =
SigninManagerFactory::GetInstance()->GetForProfile(profile);
if (!signin_manager) {
SendRegisterError();
return;
}
confirm_api_call_flow_.reset(new PrivetConfirmApiCallFlow(
profile->GetRequestContext(),
token_service,
signin_manager->GetAuthenticatedAccountId(),
is_cloud_print,
token,
base::Bind(&LocalDiscoveryUIHandler::OnConfirmDone,
base::Unretained(this))));
confirm_api_call_flow_->Start();
}
void LocalDiscoveryUIHandler::OnPrivetRegisterError(
PrivetRegisterOperation* operation,
const std::string& action,
PrivetRegisterOperation::FailureReason reason,
int printer_http_code,
const base::DictionaryValue* json) {
std::string error;
if (reason == PrivetRegisterOperation::FAILURE_JSON_ERROR &&
json->GetString(kPrivetKeyError, &error)) {
if (error == kPrivetErrorTimeout) {
web_ui()->CallJavascriptFunction(
"local_discovery.onRegistrationTimeout");
return;
} else if (error == kPrivetErrorCancel) {
web_ui()->CallJavascriptFunction(
"local_discovery.onRegistrationCanceledPrinter");
return;
}
}
SendRegisterError();
}
void LocalDiscoveryUIHandler::OnPrivetRegisterDone(
PrivetRegisterOperation* operation,
const std::string& device_id) {
std::string name = operation->GetHTTPClient()->GetName();
current_register_operation_.reset();
current_http_client_.reset();
// HACK(noamsml): Generate network traffic so the Windows firewall doesn't
// block the printer's announcement.
privet_lister_->DiscoverNewDevices(false);
DeviceDescriptionMap::iterator found = device_descriptions_.find(name);
if (found == device_descriptions_.end()) {
// TODO(noamsml): Handle the case where a printer's record is not present at
// the end of registration.
SendRegisterError();
return;
}
SendRegisterDone(found->first, found->second);
}
void LocalDiscoveryUIHandler::OnConfirmDone(GCDBaseApiFlow::Status status) {
if (status == GCDBaseApiFlow::SUCCESS) {
confirm_api_call_flow_.reset();
current_register_operation_->CompleteRegistration();
} else {
SendRegisterError();
}
}
void LocalDiscoveryUIHandler::DeviceChanged(
bool added,
const std::string& name,
const DeviceDescription& description) {
device_descriptions_[name] = description;
base::DictionaryValue info;
base::StringValue service_name(name);
scoped_ptr<base::Value> null_value(base::Value::CreateNullValue());
if (description.id.empty()) {
info.SetString("service_name", name);
info.SetString("human_readable_name", description.name);
info.SetString("description", description.description);
web_ui()->CallJavascriptFunction(
"local_discovery.onUnregisteredDeviceUpdate",
service_name, info);
} else {
web_ui()->CallJavascriptFunction(
"local_discovery.onUnregisteredDeviceUpdate",
service_name, *null_value);
}
}
void LocalDiscoveryUIHandler::DeviceRemoved(const std::string& name) {
device_descriptions_.erase(name);
scoped_ptr<base::Value> null_value(base::Value::CreateNullValue());
base::StringValue name_value(name);
web_ui()->CallJavascriptFunction("local_discovery.onUnregisteredDeviceUpdate",
name_value, *null_value);
}
void LocalDiscoveryUIHandler::DeviceCacheFlushed() {
web_ui()->CallJavascriptFunction("local_discovery.onDeviceCacheFlushed");
privet_lister_->DiscoverNewDevices(false);
}
void LocalDiscoveryUIHandler::OnCloudPrintPrinterListReady() {
base::ListValue printer_object_list;
std::set<std::string> local_ids;
for (DeviceDescriptionMap::iterator i = device_descriptions_.begin();
i != device_descriptions_.end();
i++) {
std::string device_id = i->second.id;
if (!device_id.empty()) {
const CloudPrintPrinterList::PrinterDetails* details =
cloud_print_printer_list_->GetDetailsFor(device_id);
if (details) {
local_ids.insert(device_id);
printer_object_list.Append(CreatePrinterInfo(*details).release());
}
}
}
for (CloudPrintPrinterList::iterator i = cloud_print_printer_list_->begin();
i != cloud_print_printer_list_->end(); i++) {
if (local_ids.count(i->id) == 0) {
printer_object_list.Append(CreatePrinterInfo(*i).release());
}
}
web_ui()->CallJavascriptFunction(
"local_discovery.onCloudDeviceListAvailable", printer_object_list);
}
void LocalDiscoveryUIHandler::OnCloudPrintPrinterListUnavailable() {
web_ui()->CallJavascriptFunction(
"local_discovery.onCloudDeviceListUnavailable");
}
void LocalDiscoveryUIHandler::GoogleSigninSucceeded(
const std::string& username,
const std::string& password) {
CheckUserLoggedIn();
}
void LocalDiscoveryUIHandler::GoogleSignedOut(const std::string& username) {
CheckUserLoggedIn();
}
void LocalDiscoveryUIHandler::SendRegisterError() {
web_ui()->CallJavascriptFunction("local_discovery.onRegistrationFailed");
}
void LocalDiscoveryUIHandler::SendRegisterDone(
const std::string& service_name, const DeviceDescription& device) {
base::DictionaryValue printer_value;
printer_value.SetString("id", device.id);
printer_value.SetString("display_name", device.name);
printer_value.SetString("description", device.description);
printer_value.SetString("service_name", service_name);
web_ui()->CallJavascriptFunction("local_discovery.onRegistrationSuccess",
printer_value);
}
void LocalDiscoveryUIHandler::SetIsVisible(bool visible) {
if (visible != is_visible_) {
g_num_visible += visible ? 1 : -1;
is_visible_ = visible;
}
}
std::string LocalDiscoveryUIHandler::GetSyncAccount() {
Profile* profile = Profile::FromWebUI(web_ui());
SigninManagerBase* signin_manager =
SigninManagerFactory::GetForProfileIfExists(profile);
if (!signin_manager) {
return "";
}
return signin_manager->GetAuthenticatedUsername();
}
// TODO(noamsml): Create master object for registration flow.
void LocalDiscoveryUIHandler::ResetCurrentRegistration() {
if (current_register_operation_.get()) {
current_register_operation_->Cancel();
current_register_operation_.reset();
}
confirm_api_call_flow_.reset();
privet_resolution_.reset();
current_http_client_.reset();
}
scoped_ptr<base::DictionaryValue> LocalDiscoveryUIHandler::CreatePrinterInfo(
const CloudPrintPrinterList::PrinterDetails& description) {
scoped_ptr<base::DictionaryValue> return_value(new base::DictionaryValue);
return_value->SetString("id", description.id);
return_value->SetString("display_name", description.display_name);
return_value->SetString("description", description.description);
return return_value.Pass();
}
void LocalDiscoveryUIHandler::CheckUserLoggedIn() {
base::FundamentalValue logged_in_value(!GetSyncAccount().empty());
web_ui()->CallJavascriptFunction("local_discovery.setUserLoggedIn",
logged_in_value);
}
#if defined(CLOUD_PRINT_CONNECTOR_UI_AVAILABLE)
void LocalDiscoveryUIHandler::StartCloudPrintConnector() {
Profile* profile = Profile::FromWebUI(web_ui());
base::Closure cloud_print_callback = base::Bind(
&LocalDiscoveryUIHandler::OnCloudPrintPrefsChanged,
base::Unretained(this));
if (cloud_print_connector_email_.GetPrefName().empty()) {
cloud_print_connector_email_.Init(
prefs::kCloudPrintEmail, profile->GetPrefs(), cloud_print_callback);
}
if (cloud_print_connector_enabled_.GetPrefName().empty()) {
cloud_print_connector_enabled_.Init(
prefs::kCloudPrintProxyEnabled, profile->GetPrefs(),
cloud_print_callback);
}
if (cloud_print_connector_ui_enabled_) {
SetupCloudPrintConnectorSection();
RefreshCloudPrintStatusFromService();
} else {
RemoveCloudPrintConnectorSection();
}
}
void LocalDiscoveryUIHandler::OnCloudPrintPrefsChanged() {
if (cloud_print_connector_ui_enabled_)
SetupCloudPrintConnectorSection();
}
void LocalDiscoveryUIHandler::ShowCloudPrintSetupDialog(
const base::ListValue* args) {
content::RecordAction(
base::UserMetricsAction("Options_EnableCloudPrintProxy"));
// Open the connector enable page in the current tab.
Profile* profile = Profile::FromWebUI(web_ui());
content::OpenURLParams params(
cloud_devices::GetCloudPrintEnableURL(
CloudPrintProxyServiceFactory::GetForProfile(profile)->proxy_id()),
content::Referrer(),
CURRENT_TAB,
content::PAGE_TRANSITION_LINK,
false);
web_ui()->GetWebContents()->OpenURL(params);
}
void LocalDiscoveryUIHandler::HandleDisableCloudPrintConnector(
const base::ListValue* args) {
content::RecordAction(
base::UserMetricsAction("Options_DisableCloudPrintProxy"));
CloudPrintProxyServiceFactory::GetForProfile(Profile::FromWebUI(web_ui()))->
DisableForUser();
}
void LocalDiscoveryUIHandler::SetupCloudPrintConnectorSection() {
Profile* profile = Profile::FromWebUI(web_ui());
if (!CloudPrintProxyServiceFactory::GetForProfile(profile)) {
cloud_print_connector_ui_enabled_ = false;
RemoveCloudPrintConnectorSection();
return;
}
bool cloud_print_connector_allowed =
!cloud_print_connector_enabled_.IsManaged() ||
cloud_print_connector_enabled_.GetValue();
base::FundamentalValue allowed(cloud_print_connector_allowed);
std::string email;
if (profile->GetPrefs()->HasPrefPath(prefs::kCloudPrintEmail) &&
cloud_print_connector_allowed) {
email = profile->GetPrefs()->GetString(prefs::kCloudPrintEmail);
}
base::FundamentalValue disabled(email.empty());
base::string16 label_str;
if (email.empty()) {
label_str = l10n_util::GetStringFUTF16(
IDS_LOCAL_DISCOVERY_CLOUD_PRINT_CONNECTOR_DISABLED_LABEL,
l10n_util::GetStringUTF16(IDS_GOOGLE_CLOUD_PRINT));
} else {
label_str = l10n_util::GetStringFUTF16(
IDS_OPTIONS_CLOUD_PRINT_CONNECTOR_ENABLED_LABEL,
l10n_util::GetStringUTF16(IDS_GOOGLE_CLOUD_PRINT),
base::UTF8ToUTF16(email));
}
base::StringValue label(label_str);
web_ui()->CallJavascriptFunction(
"local_discovery.setupCloudPrintConnectorSection", disabled, label,
allowed);
}
void LocalDiscoveryUIHandler::RemoveCloudPrintConnectorSection() {
web_ui()->CallJavascriptFunction(
"local_discovery.removeCloudPrintConnectorSection");
}
void LocalDiscoveryUIHandler::RefreshCloudPrintStatusFromService() {
if (cloud_print_connector_ui_enabled_)
CloudPrintProxyServiceFactory::GetForProfile(Profile::FromWebUI(web_ui()))->
RefreshStatusFromService();
}
#endif // cloud print connector option stuff
} // namespace local_discovery