2016-01-23 06:29:47 -07: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.
|
|
|
|
|
2021-11-22 00:34:31 -07:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_WEB_CONTENTS_PERMISSION_HELPER_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_WEB_CONTENTS_PERMISSION_HELPER_H_
|
2016-01-23 06:29:47 -07:00
|
|
|
|
2023-05-11 14:07:39 -06:00
|
|
|
#include "base/memory/raw_ptr.h"
|
2021-07-26 10:02:16 -06:00
|
|
|
#include "base/values.h"
|
2019-01-21 09:28:04 -07:00
|
|
|
#include "content/public/browser/media_stream_request.h"
|
2016-01-23 06:29:47 -07:00
|
|
|
#include "content/public/browser/web_contents_user_data.h"
|
2019-01-21 09:28:04 -07:00
|
|
|
#include "third_party/blink/public/common/mediastream/media_stream_request.h"
|
2022-05-17 10:48:40 -06:00
|
|
|
#include "third_party/blink/public/common/permissions/permission_utils.h"
|
2016-01-23 06:29:47 -07:00
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
namespace electron {
|
2016-01-23 06:29:47 -07:00
|
|
|
|
|
|
|
// Applies the permission requested for WebContents.
|
|
|
|
class WebContentsPermissionHelper
|
|
|
|
: public content::WebContentsUserData<WebContentsPermissionHelper> {
|
|
|
|
public:
|
|
|
|
~WebContentsPermissionHelper() override;
|
|
|
|
|
2021-11-03 05:41:45 -06:00
|
|
|
// disable copy
|
|
|
|
WebContentsPermissionHelper(const WebContentsPermissionHelper&) = delete;
|
|
|
|
WebContentsPermissionHelper& operator=(const WebContentsPermissionHelper&) =
|
|
|
|
delete;
|
|
|
|
|
2016-02-01 02:43:49 -07:00
|
|
|
enum class PermissionType {
|
2022-05-17 10:48:40 -06:00
|
|
|
POINTER_LOCK = static_cast<int>(blink::PermissionType::NUM) + 1,
|
2016-04-20 10:55:15 -06:00
|
|
|
FULLSCREEN,
|
|
|
|
OPEN_EXTERNAL,
|
2021-09-23 05:00:11 -06:00
|
|
|
SERIAL,
|
2022-11-22 14:50:32 -07:00
|
|
|
HID,
|
2023-11-09 11:41:31 -07:00
|
|
|
USB,
|
|
|
|
KEYBOARD_LOCK
|
2016-02-01 02:43:49 -07:00
|
|
|
};
|
|
|
|
|
2018-08-28 08:05:08 -06:00
|
|
|
// Asynchronous Requests
|
2022-08-26 04:31:33 -06:00
|
|
|
void RequestFullscreenPermission(content::RenderFrameHost* requesting_frame,
|
|
|
|
base::OnceCallback<void(bool)> callback);
|
2018-10-15 23:59:45 -06:00
|
|
|
void RequestMediaAccessPermission(const content::MediaStreamRequest& request,
|
|
|
|
content::MediaResponseCallback callback);
|
2022-02-09 02:40:50 -07:00
|
|
|
void RequestPointerLockPermission(
|
|
|
|
bool user_gesture,
|
|
|
|
bool last_unlocked_by_target,
|
|
|
|
base::OnceCallback<void(content::WebContents*, bool, bool, bool)>
|
|
|
|
callback);
|
2023-11-09 11:41:31 -07:00
|
|
|
void RequestKeyboardLockPermission(
|
|
|
|
bool esc_key_locked,
|
|
|
|
base::OnceCallback<void(content::WebContents*, bool, bool)> callback);
|
2016-01-25 09:37:15 -07:00
|
|
|
void RequestWebNotificationPermission(
|
2022-08-26 04:31:33 -06:00
|
|
|
content::RenderFrameHost* requesting_frame,
|
2019-05-29 14:02:15 -06:00
|
|
|
base::OnceCallback<void(bool)> callback);
|
2022-08-26 04:31:33 -06:00
|
|
|
void RequestOpenExternalPermission(content::RenderFrameHost* requesting_frame,
|
|
|
|
base::OnceCallback<void(bool)> callback,
|
2019-05-29 14:02:15 -06:00
|
|
|
bool user_gesture,
|
|
|
|
const GURL& url);
|
2016-01-23 06:29:47 -07:00
|
|
|
|
2018-08-28 08:05:08 -06:00
|
|
|
// Synchronous Checks
|
|
|
|
bool CheckMediaAccessPermission(const GURL& security_origin,
|
2019-07-02 19:22:09 -06:00
|
|
|
blink::mojom::MediaStreamType type) const;
|
2020-09-28 10:22:03 -06:00
|
|
|
bool CheckSerialAccessPermission(const url::Origin& embedding_origin) const;
|
2018-08-28 08:05:08 -06:00
|
|
|
|
2016-01-23 06:29:47 -07:00
|
|
|
private:
|
2016-01-30 04:19:18 -07:00
|
|
|
explicit WebContentsPermissionHelper(content::WebContents* web_contents);
|
2016-01-23 06:29:47 -07:00
|
|
|
friend class content::WebContentsUserData<WebContentsPermissionHelper>;
|
|
|
|
|
2022-08-26 04:31:33 -06:00
|
|
|
void RequestPermission(content::RenderFrameHost* requesting_frame,
|
|
|
|
blink::PermissionType permission,
|
2019-05-29 14:02:15 -06:00
|
|
|
base::OnceCallback<void(bool)> callback,
|
2018-04-17 19:44:10 -06:00
|
|
|
bool user_gesture = false,
|
2022-06-29 11:09:48 -06:00
|
|
|
base::Value::Dict details = {});
|
2016-01-23 06:29:47 -07:00
|
|
|
|
2022-05-17 10:48:40 -06:00
|
|
|
bool CheckPermission(blink::PermissionType permission,
|
2022-06-29 11:09:48 -06:00
|
|
|
base::Value::Dict details) const;
|
2018-08-28 08:05:08 -06:00
|
|
|
|
2022-01-10 15:31:39 -07:00
|
|
|
// TODO(clavin): refactor to use the WebContents provided by the
|
|
|
|
// WebContentsUserData base class instead of storing a duplicate ref
|
2023-05-11 14:07:39 -06:00
|
|
|
raw_ptr<content::WebContents> web_contents_;
|
2016-01-23 06:29:47 -07:00
|
|
|
|
2019-01-21 09:56:54 -07:00
|
|
|
WEB_CONTENTS_USER_DATA_KEY_DECL();
|
2016-01-23 06:29:47 -07:00
|
|
|
};
|
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
} // namespace electron
|
2016-01-23 06:29:47 -07:00
|
|
|
|
2021-11-22 00:34:31 -07:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_WEB_CONTENTS_PERMISSION_HELPER_H_
|