blob: 4aeffeaf8b6afe4e07cfaddb2ebedcee65bfac36 [file] [log] [blame]
// Copyright (c) 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/chromeos/bluetooth_pairing_dialog.h"
#include <memory>
#include "ash/constants/ash_features.h"
#include "ash/public/cpp/bluetooth_config_service.h"
#include "base/check.h"
#include "base/json/json_writer.h"
#include "base/memory/ptr_util.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/webui/chromeos/bluetooth_shared_load_time_data_provider.h"
#include "chrome/browser/ui/webui/webui_util.h"
#include "chrome/common/url_constants.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/grit/bluetooth_pairing_dialog_resources.h"
#include "chrome/grit/bluetooth_pairing_dialog_resources_map.h"
#include "chrome/grit/generated_resources.h"
#include "components/session_manager/core/session_manager.h"
#include "components/strings/grit/components_strings.h"
#include "content/public/browser/web_ui.h"
#include "content/public/browser/web_ui_data_source.h"
#include "device/bluetooth/bluetooth_device.h"
#include "device/bluetooth/chromeos/bluetooth_utils.h"
#include "device/bluetooth/public/cpp/bluetooth_address.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/wm/core/shadow_types.h"
namespace chromeos {
namespace {
constexpr int kBluetoothPairingDialogHeight = 375;
constexpr int kBluetoothPairingDialogHeightWithFlag = 424;
void AddBluetoothStrings(content::WebUIDataSource* html_source) {
struct {
const char* name;
int id;
} localized_strings[] = {
{"bluetoothPairDeviceTitle", IDS_SETTINGS_BLUETOOTH_PAIR_DEVICE_TITLE},
{"ok", IDS_OK},
{"cancel", IDS_CANCEL},
{"close", IDS_CLOSE},
};
for (const auto& entry : localized_strings)
html_source->AddLocalizedString(entry.name, entry.id);
chromeos::bluetooth::AddLoadTimeData(html_source);
}
} // namespace
// static
SystemWebDialogDelegate* BluetoothPairingDialog::ShowDialog(
absl::optional<base::StringPiece> device_address) {
std::string dialog_id = chrome::kChromeUIBluetoothPairingURL;
absl::optional<std::string> canonical_device_address;
if (device_address.has_value()) {
canonical_device_address =
device::CanonicalizeBluetoothAddress(device_address.value());
if (canonical_device_address->empty()) {
LOG(ERROR) << "BluetoothPairingDialog: Invalid address: "
<< device_address.value();
return nullptr;
}
dialog_id = canonical_device_address.value();
}
SystemWebDialogDelegate* existing_dialog =
SystemWebDialogDelegate::FindInstance(dialog_id);
if (existing_dialog) {
existing_dialog->Focus();
return existing_dialog;
}
// This object manages its own lifetime so we don't bother wrapping in a
// std::unique_ptr to release quickly after.
BluetoothPairingDialog* dialog =
new BluetoothPairingDialog(dialog_id, canonical_device_address);
dialog->ShowSystemDialog();
return dialog;
}
BluetoothPairingDialog::BluetoothPairingDialog(
const std::string& dialog_id,
absl::optional<base::StringPiece> canonical_device_address)
: SystemWebDialogDelegate(GURL(chrome::kChromeUIBluetoothPairingURL),
/*title=*/std::u16string()),
dialog_id_(dialog_id) {
if (canonical_device_address.has_value()) {
device_data_.SetStringKey("address", canonical_device_address.value());
} else {
CHECK(ash::features::IsBluetoothRevampEnabled());
}
if (!ash::features::IsBluetoothRevampEnabled())
return;
device_data_.SetBoolKey(
"shouldOmitLinks",
session_manager::SessionManager::Get()->session_state() !=
session_manager::SessionState::ACTIVE);
}
BluetoothPairingDialog::~BluetoothPairingDialog() = default;
const std::string& BluetoothPairingDialog::Id() {
return dialog_id_;
}
void BluetoothPairingDialog::AdjustWidgetInitParams(
views::Widget::InitParams* params) {
if (!chromeos::features::IsBluetoothRevampEnabled()) {
return;
}
params->type = views::Widget::InitParams::Type::TYPE_WINDOW_FRAMELESS;
params->shadow_type = views::Widget::InitParams::ShadowType::kDrop;
params->shadow_elevation = wm::kShadowElevationActiveWindow;
}
void BluetoothPairingDialog::GetDialogSize(gfx::Size* size) const {
if (chromeos::features::IsBluetoothRevampEnabled()) {
size->SetSize(SystemWebDialogDelegate::kDialogWidth,
kBluetoothPairingDialogHeightWithFlag);
return;
}
size->SetSize(SystemWebDialogDelegate::kDialogWidth,
kBluetoothPairingDialogHeight);
}
std::string BluetoothPairingDialog::GetDialogArgs() const {
std::string data;
base::JSONWriter::Write(device_data_, &data);
return data;
}
// BluetoothPairingUI
BluetoothPairingDialogUI::BluetoothPairingDialogUI(content::WebUI* web_ui)
: ui::MojoWebDialogUI(web_ui) {
content::WebUIDataSource* source =
content::WebUIDataSource::Create(chrome::kChromeUIBluetoothPairingHost);
AddBluetoothStrings(source);
if (chromeos::features::IsBluetoothRevampEnabled()) {
source->AddLocalizedString("title", IDS_BLUETOOTH_PAIRING_PAIR_NEW_DEVICES);
} else {
source->AddLocalizedString("title",
IDS_SETTINGS_BLUETOOTH_PAIR_DEVICE_TITLE);
}
webui::SetupWebUIDataSource(
source,
base::make_span(kBluetoothPairingDialogResources,
kBluetoothPairingDialogResourcesSize),
IDR_BLUETOOTH_PAIRING_DIALOG_BLUETOOTH_PAIRING_DIALOG_CONTAINER_HTML);
content::WebUIDataSource::Add(Profile::FromWebUI(web_ui), source);
device::RecordUiSurfaceDisplayed(
device::BluetoothUiSurface::kStandalonePairingDialog);
}
BluetoothPairingDialogUI::~BluetoothPairingDialogUI() = default;
void BluetoothPairingDialogUI::BindInterface(
mojo::PendingReceiver<
chromeos::bluetooth_config::mojom::CrosBluetoothConfig> receiver) {
DCHECK(features::IsBluetoothRevampEnabled());
ash::GetBluetoothConfigService(std::move(receiver));
}
WEB_UI_CONTROLLER_TYPE_IMPL(BluetoothPairingDialogUI)
} // namespace chromeos