blob: c7c0c296e0a107e1f71ec361c268163737c4963d [file] [log] [blame]
// Copyright 2017 The Chromium Authors
// 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/bluetooth_internals/bluetooth_internals_handler.h"
#include <string>
#include "base/functional/bind.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "build/chromeos_buildflags.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/web_contents.h"
#include "device/bluetooth/adapter.h"
#include "device/bluetooth/bluetooth_adapter_factory.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/self_owned_receiver.h"
#include "url/gurl.h"
#if BUILDFLAG(IS_CHROMEOS_ASH)
#include "chrome/browser/ash/bluetooth/debug_logs_manager.h"
#endif
#if BUILDFLAG(IS_ANDROID)
#include "components/permissions/android/android_permission_util.h"
#endif // BUILDFLAG(IS_ANDROID)
namespace {
using content::RenderFrameHost;
using content::WebContents;
} // namespace
BluetoothInternalsHandler::BluetoothInternalsHandler(
content::RenderFrameHost* render_frame_host,
mojo::PendingReceiver<mojom::BluetoothInternalsHandler> receiver)
: render_frame_host_(*render_frame_host),
receiver_(this, std::move(receiver)) {}
BluetoothInternalsHandler::~BluetoothInternalsHandler() = default;
void BluetoothInternalsHandler::GetAdapter(GetAdapterCallback callback) {
if (device::BluetoothAdapterFactory::IsBluetoothSupported()) {
device::BluetoothAdapterFactory::Get()->GetAdapter(
base::BindOnce(&BluetoothInternalsHandler::OnGetAdapter,
weak_ptr_factory_.GetWeakPtr(), std::move(callback)));
} else {
std::move(callback).Run(mojo::NullRemote() /* adapter */);
}
}
void BluetoothInternalsHandler::GetDebugLogsChangeHandler(
GetDebugLogsChangeHandlerCallback callback) {
mojo::PendingRemote<mojom::DebugLogsChangeHandler> handler_remote;
bool initial_toggle_value = false;
#if BUILDFLAG(IS_CHROMEOS_ASH)
using ash::bluetooth::DebugLogsManager;
// If no logs manager exists for this user, debug logs are not supported.
DebugLogsManager::DebugLogsState state =
debug_logs_manager_ ? debug_logs_manager_->GetDebugLogsState()
: DebugLogsManager::DebugLogsState::kNotSupported;
switch (state) {
case DebugLogsManager::DebugLogsState::kNotSupported:
// Leave |handler_remote| NullRemote and |initial_toggle_value| false.
break;
case DebugLogsManager::DebugLogsState::kSupportedAndEnabled:
initial_toggle_value = true;
[[fallthrough]];
case DebugLogsManager::DebugLogsState::kSupportedButDisabled:
handler_remote = debug_logs_manager_->GenerateRemote();
break;
}
#endif
std::move(callback).Run(std::move(handler_remote), initial_toggle_value);
}
void BluetoothInternalsHandler::OnGetAdapter(
GetAdapterCallback callback,
scoped_refptr<device::BluetoothAdapter> adapter) {
mojo::PendingRemote<bluetooth::mojom::Adapter> pending_adapter;
mojo::MakeSelfOwnedReceiver(std::make_unique<bluetooth::Adapter>(adapter),
pending_adapter.InitWithNewPipeAndPassReceiver());
std::move(callback).Run(std::move(pending_adapter));
}
void BluetoothInternalsHandler::CheckSystemPermissions(
CheckSystemPermissionsCallback callback) {
bool need_location_permission = false;
bool need_nearby_devices_permission = false;
bool need_location_services = false;
bool can_request_system_permissions = false;
#if BUILDFLAG(IS_ANDROID)
WebContents* web_contents =
content::WebContents::FromRenderFrameHost(&render_frame_host_.get());
need_location_permission =
permissions::NeedsLocationPermissionForBluetooth(web_contents);
need_nearby_devices_permission =
permissions::NeedsNearbyDevicesPermissionForBluetooth(web_contents);
need_location_services = permissions::NeedsLocationServicesForBluetooth();
can_request_system_permissions =
permissions::CanRequestSystemPermissionsForBluetooth(web_contents);
#endif // BUILDFLAG(IS_ANDROID)
std::move(callback).Run(
need_location_permission, need_nearby_devices_permission,
need_location_services, can_request_system_permissions);
}
void BluetoothInternalsHandler::RequestSystemPermissions(
RequestSystemPermissionsCallback callback) {
#if BUILDFLAG(IS_ANDROID)
WebContents* web_contents =
content::WebContents::FromRenderFrameHost(&render_frame_host_.get());
permissions::RequestSystemPermissionsForBluetooth(web_contents);
#endif // BUILDFLAG(IS_ANDROID)
std::move(callback).Run();
}
void BluetoothInternalsHandler::RequestLocationServices(
RequestLocationServicesCallback callback) {
#if BUILDFLAG(IS_ANDROID)
WebContents* web_contents =
content::WebContents::FromRenderFrameHost(&render_frame_host_.get());
permissions::RequestLocationServices(web_contents);
#endif // BUILDFLAG(IS_ANDROID)
std::move(callback).Run();
}