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