2021-02-26 19:10:27 +00:00
|
|
|
// Copyright (c) 2020 Microsoft, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "shell/browser/bluetooth/electron_bluetooth_delegate.h"
|
|
|
|
|
|
|
|
#include <memory>
|
2021-10-21 18:51:36 +00:00
|
|
|
#include <utility>
|
2021-02-26 19:10:27 +00:00
|
|
|
|
2022-09-26 14:19:58 +00:00
|
|
|
#include "base/strings/string_util.h"
|
2021-02-26 19:10:27 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
|
|
|
#include "build/build_config.h"
|
|
|
|
#include "content/public/browser/render_frame_host.h"
|
|
|
|
#include "content/public/browser/web_contents.h"
|
|
|
|
#include "device/bluetooth/bluetooth_device.h"
|
|
|
|
#include "device/bluetooth/public/cpp/bluetooth_uuid.h"
|
|
|
|
#include "shell/browser/api/electron_api_web_contents.h"
|
2022-09-26 14:19:58 +00:00
|
|
|
#include "shell/browser/electron_permission_manager.h"
|
2021-02-26 19:10:27 +00:00
|
|
|
#include "shell/browser/lib/bluetooth_chooser.h"
|
2022-09-26 14:19:58 +00:00
|
|
|
#include "shell/common/gin_converters/frame_converter.h"
|
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2021-02-26 19:10:27 +00:00
|
|
|
#include "third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h"
|
|
|
|
#include "third_party/blink/public/mojom/bluetooth/web_bluetooth.mojom.h"
|
|
|
|
|
|
|
|
using blink::WebBluetoothDeviceId;
|
|
|
|
using content::RenderFrameHost;
|
|
|
|
using content::WebContents;
|
|
|
|
using device::BluetoothUUID;
|
|
|
|
|
2022-09-26 14:19:58 +00:00
|
|
|
namespace gin {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct Converter<content::BluetoothDelegate::PairingKind> {
|
|
|
|
static v8::Local<v8::Value> ToV8(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
content::BluetoothDelegate::PairingKind pairing_kind) {
|
|
|
|
switch (pairing_kind) {
|
|
|
|
case content::BluetoothDelegate::PairingKind::kConfirmOnly:
|
|
|
|
return StringToV8(isolate, "confirm");
|
|
|
|
case content::BluetoothDelegate::PairingKind::kConfirmPinMatch:
|
|
|
|
return StringToV8(isolate, "confirmPin");
|
|
|
|
case content::BluetoothDelegate::PairingKind::kProvidePin:
|
|
|
|
return StringToV8(isolate, "providePin");
|
|
|
|
default:
|
|
|
|
return StringToV8(isolate, "unknown");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gin
|
|
|
|
|
2021-02-26 19:10:27 +00:00
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
ElectronBluetoothDelegate::ElectronBluetoothDelegate() = default;
|
|
|
|
|
|
|
|
ElectronBluetoothDelegate::~ElectronBluetoothDelegate() = default;
|
|
|
|
|
|
|
|
std::unique_ptr<content::BluetoothChooser>
|
|
|
|
ElectronBluetoothDelegate::RunBluetoothChooser(
|
|
|
|
content::RenderFrameHost* frame,
|
|
|
|
const content::BluetoothChooser::EventHandler& event_handler) {
|
|
|
|
auto* api_web_contents =
|
|
|
|
api::WebContents::From(content::WebContents::FromRenderFrameHost(frame));
|
|
|
|
return std::make_unique<BluetoothChooser>(api_web_contents, event_handler);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The following methods are not currently called in Electron.
|
|
|
|
std::unique_ptr<content::BluetoothScanningPrompt>
|
|
|
|
ElectronBluetoothDelegate::ShowBluetoothScanningPrompt(
|
|
|
|
content::RenderFrameHost* frame,
|
|
|
|
const content::BluetoothScanningPrompt::EventHandler& event_handler) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
WebBluetoothDeviceId ElectronBluetoothDelegate::GetWebBluetoothDeviceId(
|
|
|
|
RenderFrameHost* frame,
|
|
|
|
const std::string& device_address) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return WebBluetoothDeviceId::Create();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ElectronBluetoothDelegate::GetDeviceAddress(
|
|
|
|
RenderFrameHost* frame,
|
|
|
|
const WebBluetoothDeviceId& device_id) {
|
|
|
|
NOTIMPLEMENTED();
|
2023-04-26 14:09:54 +00:00
|
|
|
return "";
|
2021-02-26 19:10:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WebBluetoothDeviceId ElectronBluetoothDelegate::AddScannedDevice(
|
|
|
|
RenderFrameHost* frame,
|
|
|
|
const std::string& device_address) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return WebBluetoothDeviceId::Create();
|
|
|
|
}
|
|
|
|
|
|
|
|
WebBluetoothDeviceId ElectronBluetoothDelegate::GrantServiceAccessPermission(
|
|
|
|
RenderFrameHost* frame,
|
|
|
|
const device::BluetoothDevice* device,
|
|
|
|
const blink::mojom::WebBluetoothRequestDeviceOptions* options) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return WebBluetoothDeviceId::Create();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ElectronBluetoothDelegate::HasDevicePermission(
|
|
|
|
RenderFrameHost* frame,
|
|
|
|
const WebBluetoothDeviceId& device_id) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-03-25 01:39:03 +00:00
|
|
|
void ElectronBluetoothDelegate::RevokeDevicePermissionWebInitiated(
|
|
|
|
RenderFrameHost* frame,
|
|
|
|
const WebBluetoothDeviceId& device_id) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
}
|
|
|
|
|
2021-02-26 19:10:27 +00:00
|
|
|
bool ElectronBluetoothDelegate::IsAllowedToAccessService(
|
|
|
|
RenderFrameHost* frame,
|
|
|
|
const WebBluetoothDeviceId& device_id,
|
|
|
|
const BluetoothUUID& service) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ElectronBluetoothDelegate::IsAllowedToAccessAtLeastOneService(
|
|
|
|
RenderFrameHost* frame,
|
|
|
|
const WebBluetoothDeviceId& device_id) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ElectronBluetoothDelegate::IsAllowedToAccessManufacturerData(
|
|
|
|
RenderFrameHost* frame,
|
|
|
|
const WebBluetoothDeviceId& device_id,
|
|
|
|
uint16_t manufacturer_code) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ElectronBluetoothDelegate::AddFramePermissionObserver(
|
|
|
|
FramePermissionObserver* observer) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ElectronBluetoothDelegate::RemoveFramePermissionObserver(
|
|
|
|
FramePermissionObserver* observer) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<blink::mojom::WebBluetoothDevicePtr>
|
|
|
|
ElectronBluetoothDelegate::GetPermittedDevices(
|
|
|
|
content::RenderFrameHost* frame) {
|
|
|
|
std::vector<blink::mojom::WebBluetoothDevicePtr> permitted_devices;
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return permitted_devices;
|
|
|
|
}
|
|
|
|
|
2022-07-13 21:26:16 +00:00
|
|
|
void ElectronBluetoothDelegate::ShowDevicePairPrompt(
|
|
|
|
content::RenderFrameHost* frame,
|
2022-06-27 20:50:08 +00:00
|
|
|
const std::u16string& device_identifier,
|
2022-07-13 21:26:16 +00:00
|
|
|
PairPromptCallback callback,
|
2022-08-17 18:35:53 +00:00
|
|
|
PairingKind pairing_kind,
|
2024-01-10 22:23:35 +00:00
|
|
|
const std::optional<std::u16string>& pin) {
|
2022-09-26 14:19:58 +00:00
|
|
|
auto* web_contents = content::WebContents::FromRenderFrameHost(frame);
|
|
|
|
if (web_contents) {
|
|
|
|
auto* permission_manager = static_cast<ElectronPermissionManager*>(
|
|
|
|
web_contents->GetBrowserContext()->GetPermissionControllerDelegate());
|
|
|
|
|
|
|
|
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
|
|
|
|
v8::HandleScope scope(isolate);
|
2023-10-10 10:45:44 +00:00
|
|
|
auto details = gin_helper::Dictionary::CreateEmpty(isolate);
|
2022-09-26 14:19:58 +00:00
|
|
|
details.Set("deviceId", device_identifier);
|
|
|
|
details.Set("pairingKind", pairing_kind);
|
|
|
|
details.SetGetter("frame", frame);
|
|
|
|
if (pin.has_value()) {
|
|
|
|
details.Set("pin", pin.value());
|
|
|
|
}
|
|
|
|
|
|
|
|
permission_manager->CheckBluetoothDevicePair(
|
2023-05-18 21:01:44 +00:00
|
|
|
details,
|
|
|
|
base::BindOnce(&ElectronBluetoothDelegate::OnDevicePairPromptResponse,
|
|
|
|
weak_factory_.GetWeakPtr(), std::move(callback)));
|
2022-09-26 14:19:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ElectronBluetoothDelegate::OnDevicePairPromptResponse(
|
|
|
|
PairPromptCallback callback,
|
|
|
|
base::Value::Dict response) {
|
|
|
|
BluetoothDelegate::PairPromptResult result;
|
|
|
|
if (response.FindBool("confirmed").value_or(false)) {
|
|
|
|
result.result_code = BluetoothDelegate::PairPromptStatus::kSuccess;
|
|
|
|
} else {
|
|
|
|
result.result_code = BluetoothDelegate::PairPromptStatus::kCancelled;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string* pin = response.FindString("pin");
|
|
|
|
if (pin) {
|
|
|
|
std::u16string trimmed_input = base::UTF8ToUTF16(*pin);
|
|
|
|
base::TrimWhitespace(trimmed_input, base::TRIM_ALL, &trimmed_input);
|
|
|
|
result.pin = base::UTF16ToUTF8(trimmed_input);
|
|
|
|
}
|
|
|
|
std::move(callback).Run(result);
|
2022-06-27 20:50:08 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 19:10:27 +00:00
|
|
|
} // namespace electron
|