2016-01-23 13:29:47 +00:00
|
|
|
// Copyright (c) 2016 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/web_contents_permission_helper.h"
|
2016-01-23 13:29:47 +00:00
|
|
|
|
2018-09-13 01:57:23 +00:00
|
|
|
#include <memory>
|
2016-01-23 13:29:47 +00:00
|
|
|
#include <string>
|
2018-09-13 01:57:23 +00:00
|
|
|
#include <utility>
|
2016-01-23 13:29:47 +00:00
|
|
|
|
2016-01-31 19:13:29 +00:00
|
|
|
#include "content/public/browser/browser_context.h"
|
2016-01-30 11:19:18 +00:00
|
|
|
#include "content/public/browser/render_process_host.h"
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/browser/electron_permission_manager.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/media/media_stream_devices_controller.h"
|
2016-01-23 13:29:47 +00:00
|
|
|
|
2018-08-28 14:05:08 +00:00
|
|
|
namespace {
|
|
|
|
|
2019-07-03 01:22:09 +00:00
|
|
|
std::string MediaStreamTypeToString(blink::mojom::MediaStreamType type) {
|
2018-08-28 14:05:08 +00:00
|
|
|
switch (type) {
|
2019-07-03 01:22:09 +00:00
|
|
|
case blink::mojom::MediaStreamType::DEVICE_AUDIO_CAPTURE:
|
2018-08-28 14:05:08 +00:00
|
|
|
return "audio";
|
2019-07-03 01:22:09 +00:00
|
|
|
case blink::mojom::MediaStreamType::DEVICE_VIDEO_CAPTURE:
|
2018-08-28 14:05:08 +00:00
|
|
|
return "video";
|
|
|
|
default:
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2016-01-23 13:29:47 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void MediaAccessAllowed(const content::MediaStreamRequest& request,
|
2018-10-02 18:09:25 +00:00
|
|
|
content::MediaResponseCallback callback,
|
2018-04-18 01:55:30 +00:00
|
|
|
bool allowed) {
|
2018-10-19 18:51:43 +00:00
|
|
|
MediaStreamDevicesController controller(request, std::move(callback));
|
2016-02-01 12:15:53 +00:00
|
|
|
if (allowed)
|
2016-02-11 23:37:06 +00:00
|
|
|
controller.TakeAction();
|
2016-02-01 12:15:53 +00:00
|
|
|
else
|
2019-06-04 03:44:12 +00:00
|
|
|
controller.Deny(blink::mojom::MediaStreamRequestResult::PERMISSION_DENIED);
|
2016-01-23 13:29:47 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 09:43:49 +00:00
|
|
|
void OnPointerLockResponse(content::WebContents* web_contents, bool allowed) {
|
2020-03-14 20:54:14 +00:00
|
|
|
if (web_contents) {
|
|
|
|
if (allowed)
|
|
|
|
web_contents->GotResponseToLockMouseRequest(
|
|
|
|
blink::mojom::PointerLockResult::kSuccess);
|
|
|
|
else
|
|
|
|
web_contents->GotResponseToLockMouseRequest(
|
|
|
|
blink::mojom::PointerLockResult::kPermissionDenied);
|
|
|
|
}
|
2016-02-01 09:43:49 +00:00
|
|
|
}
|
|
|
|
|
2019-05-29 20:02:15 +00:00
|
|
|
void OnPermissionResponse(base::OnceCallback<void(bool)> callback,
|
2016-05-23 03:28:59 +00:00
|
|
|
blink::mojom::PermissionStatus status) {
|
|
|
|
if (status == blink::mojom::PermissionStatus::GRANTED)
|
2019-05-29 20:02:15 +00:00
|
|
|
std::move(callback).Run(true);
|
2016-01-31 21:35:34 +00:00
|
|
|
else
|
2019-05-29 20:02:15 +00:00
|
|
|
std::move(callback).Run(false);
|
2016-01-31 21:35:34 +00:00
|
|
|
}
|
|
|
|
|
2016-01-23 13:29:47 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
WebContentsPermissionHelper::WebContentsPermissionHelper(
|
2016-01-30 11:19:18 +00:00
|
|
|
content::WebContents* web_contents)
|
2018-04-18 01:55:30 +00:00
|
|
|
: web_contents_(web_contents) {}
|
2016-01-23 13:29:47 +00:00
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
WebContentsPermissionHelper::~WebContentsPermissionHelper() = default;
|
2016-01-23 13:29:47 +00:00
|
|
|
|
2016-01-30 11:19:18 +00:00
|
|
|
void WebContentsPermissionHelper::RequestPermission(
|
2017-11-11 03:27:30 +00:00
|
|
|
content::PermissionType permission,
|
2019-05-29 20:02:15 +00:00
|
|
|
base::OnceCallback<void(bool)> callback,
|
2017-11-11 03:27:30 +00:00
|
|
|
bool user_gesture,
|
|
|
|
const base::DictionaryValue* details) {
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* rfh = web_contents_->GetMainFrame();
|
2020-02-04 20:19:40 +00:00
|
|
|
auto* permission_manager = static_cast<ElectronPermissionManager*>(
|
2018-10-02 21:53:10 +00:00
|
|
|
web_contents_->GetBrowserContext()->GetPermissionControllerDelegate());
|
2016-01-30 11:19:18 +00:00
|
|
|
auto origin = web_contents_->GetLastCommittedURL();
|
2017-11-11 03:27:30 +00:00
|
|
|
permission_manager->RequestPermissionWithDetails(
|
2017-12-20 01:25:31 +00:00
|
|
|
permission, rfh, origin, false, details,
|
2019-05-29 20:02:15 +00:00
|
|
|
base::BindOnce(&OnPermissionResponse, std::move(callback)));
|
2016-01-30 11:19:18 +00:00
|
|
|
}
|
|
|
|
|
2018-08-28 14:05:08 +00:00
|
|
|
bool WebContentsPermissionHelper::CheckPermission(
|
|
|
|
content::PermissionType permission,
|
|
|
|
const base::DictionaryValue* details) const {
|
|
|
|
auto* rfh = web_contents_->GetMainFrame();
|
2020-02-04 20:19:40 +00:00
|
|
|
auto* permission_manager = static_cast<ElectronPermissionManager*>(
|
2018-10-02 21:53:10 +00:00
|
|
|
web_contents_->GetBrowserContext()->GetPermissionControllerDelegate());
|
2018-08-28 14:05:08 +00:00
|
|
|
auto origin = web_contents_->GetLastCommittedURL();
|
|
|
|
return permission_manager->CheckPermissionWithDetails(permission, rfh, origin,
|
|
|
|
details);
|
|
|
|
}
|
|
|
|
|
2016-02-01 10:03:38 +00:00
|
|
|
void WebContentsPermissionHelper::RequestFullscreenPermission(
|
2019-05-29 20:02:15 +00:00
|
|
|
base::OnceCallback<void(bool)> callback) {
|
2017-03-31 18:09:13 +00:00
|
|
|
RequestPermission(
|
|
|
|
static_cast<content::PermissionType>(PermissionType::FULLSCREEN),
|
2019-05-29 20:02:15 +00:00
|
|
|
std::move(callback));
|
2016-02-01 10:03:38 +00:00
|
|
|
}
|
|
|
|
|
2016-01-23 13:29:47 +00:00
|
|
|
void WebContentsPermissionHelper::RequestMediaAccessPermission(
|
|
|
|
const content::MediaStreamRequest& request,
|
2018-10-02 18:09:25 +00:00
|
|
|
content::MediaResponseCallback response_callback) {
|
|
|
|
auto callback = base::AdaptCallbackForRepeating(base::BindOnce(
|
|
|
|
&MediaAccessAllowed, request, std::move(response_callback)));
|
2018-09-13 01:57:23 +00:00
|
|
|
|
|
|
|
base::DictionaryValue details;
|
|
|
|
std::unique_ptr<base::ListValue> media_types(new base::ListValue);
|
2018-09-19 11:10:26 +00:00
|
|
|
if (request.audio_type ==
|
2019-07-03 01:22:09 +00:00
|
|
|
blink::mojom::MediaStreamType::DEVICE_AUDIO_CAPTURE) {
|
2018-09-13 01:57:23 +00:00
|
|
|
media_types->AppendString("audio");
|
|
|
|
}
|
2018-09-19 11:10:26 +00:00
|
|
|
if (request.video_type ==
|
2019-07-03 01:22:09 +00:00
|
|
|
blink::mojom::MediaStreamType::DEVICE_VIDEO_CAPTURE) {
|
2018-09-13 01:57:23 +00:00
|
|
|
media_types->AppendString("video");
|
|
|
|
}
|
|
|
|
details.SetList("mediaTypes", std::move(media_types));
|
|
|
|
|
2016-01-31 21:35:34 +00:00
|
|
|
// The permission type doesn't matter here, AUDIO_CAPTURE/VIDEO_CAPTURE
|
|
|
|
// are presented as same type in content_converter.h.
|
2018-10-02 18:09:25 +00:00
|
|
|
RequestPermission(content::PermissionType::AUDIO_CAPTURE, std::move(callback),
|
|
|
|
false, &details);
|
2016-01-23 13:29:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WebContentsPermissionHelper::RequestWebNotificationPermission(
|
2019-05-29 20:02:15 +00:00
|
|
|
base::OnceCallback<void(bool)> callback) {
|
|
|
|
RequestPermission(content::PermissionType::NOTIFICATIONS,
|
|
|
|
std::move(callback));
|
2016-01-23 13:29:47 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 09:43:49 +00:00
|
|
|
void WebContentsPermissionHelper::RequestPointerLockPermission(
|
|
|
|
bool user_gesture) {
|
2017-03-31 18:09:13 +00:00
|
|
|
RequestPermission(
|
|
|
|
static_cast<content::PermissionType>(PermissionType::POINTER_LOCK),
|
2019-05-29 20:02:15 +00:00
|
|
|
base::BindOnce(&OnPointerLockResponse, web_contents_), user_gesture);
|
2016-02-01 09:43:49 +00:00
|
|
|
}
|
|
|
|
|
2016-04-20 16:55:15 +00:00
|
|
|
void WebContentsPermissionHelper::RequestOpenExternalPermission(
|
2019-05-29 20:02:15 +00:00
|
|
|
base::OnceCallback<void(bool)> callback,
|
2017-11-11 03:27:30 +00:00
|
|
|
bool user_gesture,
|
|
|
|
const GURL& url) {
|
|
|
|
base::DictionaryValue details;
|
2017-12-20 01:25:31 +00:00
|
|
|
details.SetString("externalURL", url.spec());
|
2017-12-20 01:49:49 +00:00
|
|
|
RequestPermission(
|
2017-03-31 18:09:13 +00:00
|
|
|
static_cast<content::PermissionType>(PermissionType::OPEN_EXTERNAL),
|
2019-05-29 20:02:15 +00:00
|
|
|
std::move(callback), user_gesture, &details);
|
2016-04-20 16:55:15 +00:00
|
|
|
}
|
|
|
|
|
2018-08-28 14:05:08 +00:00
|
|
|
bool WebContentsPermissionHelper::CheckMediaAccessPermission(
|
|
|
|
const GURL& security_origin,
|
2019-07-03 01:22:09 +00:00
|
|
|
blink::mojom::MediaStreamType type) const {
|
2018-08-28 14:05:08 +00:00
|
|
|
base::DictionaryValue details;
|
|
|
|
details.SetString("securityOrigin", security_origin.spec());
|
|
|
|
details.SetString("mediaType", MediaStreamTypeToString(type));
|
|
|
|
// The permission type doesn't matter here, AUDIO_CAPTURE/VIDEO_CAPTURE
|
|
|
|
// are presented as same type in content_converter.h.
|
|
|
|
return CheckPermission(content::PermissionType::AUDIO_CAPTURE, &details);
|
|
|
|
}
|
|
|
|
|
2019-01-21 16:56:54 +00:00
|
|
|
WEB_CONTENTS_USER_DATA_KEY_IMPL(WebContentsPermissionHelper)
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|