2016-01-30 11:19:18 +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/atom_permission_manager.h"
|
2016-01-30 11:19:18 +00:00
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2019-05-13 22:50:56 +00:00
|
|
|
#include <utility>
|
2016-03-08 14:32:59 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2016-01-30 13:31:10 +00:00
|
|
|
#include "content/public/browser/child_process_security_policy.h"
|
2018-10-02 21:53:10 +00:00
|
|
|
#include "content/public/browser/permission_controller.h"
|
2016-01-30 11:19:18 +00:00
|
|
|
#include "content/public/browser/permission_type.h"
|
|
|
|
#include "content/public/browser/render_frame_host.h"
|
|
|
|
#include "content/public/browser/render_process_host.h"
|
2016-02-01 09:43:49 +00:00
|
|
|
#include "content/public/browser/render_view_host.h"
|
2016-01-31 21:35:34 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/atom_browser_client.h"
|
|
|
|
#include "shell/browser/atom_browser_main_parts.h"
|
|
|
|
#include "shell/browser/web_contents_preferences.h"
|
2016-01-30 11:19:18 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2016-01-30 11:19:18 +00:00
|
|
|
|
2016-02-01 09:43:49 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
bool WebContentsDestroyed(int process_id) {
|
2018-03-08 07:45:37 +00:00
|
|
|
content::WebContents* web_contents =
|
2018-04-18 01:55:30 +00:00
|
|
|
static_cast<AtomBrowserClient*>(AtomBrowserClient::Get())
|
|
|
|
->GetWebContentsFromProcessID(process_id);
|
2018-03-08 07:45:37 +00:00
|
|
|
if (!web_contents)
|
2016-03-13 22:23:39 +00:00
|
|
|
return true;
|
2018-03-08 07:45:37 +00:00
|
|
|
return web_contents->IsBeingDestroyed();
|
2016-02-01 09:43:49 +00:00
|
|
|
}
|
|
|
|
|
2016-12-19 23:12:16 +00:00
|
|
|
void PermissionRequestResponseCallbackWrapper(
|
2019-05-03 18:30:48 +00:00
|
|
|
AtomPermissionManager::StatusCallback callback,
|
2016-12-19 23:12:16 +00:00
|
|
|
const std::vector<blink::mojom::PermissionStatus>& vector) {
|
2019-05-03 18:30:48 +00:00
|
|
|
std::move(callback).Run(vector[0]);
|
2016-12-19 23:12:16 +00:00
|
|
|
}
|
|
|
|
|
2016-02-01 09:43:49 +00:00
|
|
|
} // namespace
|
|
|
|
|
2016-12-19 23:12:16 +00:00
|
|
|
class AtomPermissionManager::PendingRequest {
|
|
|
|
public:
|
|
|
|
PendingRequest(content::RenderFrameHost* render_frame_host,
|
|
|
|
const std::vector<content::PermissionType>& permissions,
|
2019-05-03 18:30:48 +00:00
|
|
|
StatusesCallback callback)
|
2016-12-19 23:12:16 +00:00
|
|
|
: render_process_id_(render_frame_host->GetProcess()->GetID()),
|
2019-05-03 18:30:48 +00:00
|
|
|
callback_(std::move(callback)),
|
2018-08-23 15:51:46 +00:00
|
|
|
permissions_(permissions),
|
2016-12-19 23:12:16 +00:00
|
|
|
results_(permissions.size(), blink::mojom::PermissionStatus::DENIED),
|
|
|
|
remaining_results_(permissions.size()) {}
|
|
|
|
|
|
|
|
void SetPermissionStatus(int permission_id,
|
|
|
|
blink::mojom::PermissionStatus status) {
|
|
|
|
DCHECK(!IsComplete());
|
|
|
|
|
2018-08-23 15:51:46 +00:00
|
|
|
if (status == blink::mojom::PermissionStatus::GRANTED) {
|
|
|
|
const auto permission = permissions_[permission_id];
|
|
|
|
if (permission == content::PermissionType::MIDI_SYSEX) {
|
|
|
|
content::ChildProcessSecurityPolicy::GetInstance()
|
|
|
|
->GrantSendMidiSysExMessage(render_process_id_);
|
|
|
|
} else if (permission == content::PermissionType::GEOLOCATION) {
|
|
|
|
AtomBrowserMainParts::Get()
|
|
|
|
->GetGeolocationControl()
|
|
|
|
->UserDidOptIntoLocationServices();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-19 23:12:16 +00:00
|
|
|
results_[permission_id] = status;
|
|
|
|
--remaining_results_;
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
int render_process_id() const { return render_process_id_; }
|
2016-12-19 23:12:16 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
bool IsComplete() const { return remaining_results_ == 0; }
|
2016-12-19 23:12:16 +00:00
|
|
|
|
2019-05-03 18:30:48 +00:00
|
|
|
void RunCallback() {
|
|
|
|
if (!callback_.is_null()) {
|
|
|
|
std::move(callback_).Run(results_);
|
|
|
|
}
|
|
|
|
}
|
2016-12-19 23:12:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int render_process_id_;
|
2019-05-03 18:30:48 +00:00
|
|
|
StatusesCallback callback_;
|
2018-08-23 15:51:46 +00:00
|
|
|
std::vector<content::PermissionType> permissions_;
|
2016-12-19 23:12:16 +00:00
|
|
|
std::vector<blink::mojom::PermissionStatus> results_;
|
|
|
|
size_t remaining_results_;
|
|
|
|
};
|
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
AtomPermissionManager::AtomPermissionManager() = default;
|
2016-01-30 11:19:18 +00:00
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
AtomPermissionManager::~AtomPermissionManager() = default;
|
2016-01-30 11:19:18 +00:00
|
|
|
|
|
|
|
void AtomPermissionManager::SetPermissionRequestHandler(
|
|
|
|
const RequestHandler& handler) {
|
2016-12-19 23:12:16 +00:00
|
|
|
if (handler.is_null() && !pending_requests_.IsEmpty()) {
|
2019-05-03 18:30:48 +00:00
|
|
|
for (PendingRequestsMap::iterator iter(&pending_requests_); !iter.IsAtEnd();
|
|
|
|
iter.Advance()) {
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* request = iter.GetCurrentValue();
|
2016-12-19 23:12:16 +00:00
|
|
|
if (!WebContentsDestroyed(request->render_process_id()))
|
|
|
|
request->RunCallback();
|
2016-02-01 09:43:49 +00:00
|
|
|
}
|
2016-12-19 23:12:16 +00:00
|
|
|
pending_requests_.Clear();
|
2016-01-30 11:19:18 +00:00
|
|
|
}
|
2016-01-31 21:35:34 +00:00
|
|
|
request_handler_ = handler;
|
2016-01-30 11:19:18 +00:00
|
|
|
}
|
|
|
|
|
2018-08-28 14:05:08 +00:00
|
|
|
void AtomPermissionManager::SetPermissionCheckHandler(
|
|
|
|
const CheckHandler& handler) {
|
|
|
|
check_handler_ = handler;
|
|
|
|
}
|
|
|
|
|
2016-01-30 11:19:18 +00:00
|
|
|
int AtomPermissionManager::RequestPermission(
|
|
|
|
content::PermissionType permission,
|
|
|
|
content::RenderFrameHost* render_frame_host,
|
|
|
|
const GURL& requesting_origin,
|
2016-11-30 07:30:03 +00:00
|
|
|
bool user_gesture,
|
2019-05-03 18:30:48 +00:00
|
|
|
StatusCallback response_callback) {
|
2018-04-18 01:55:30 +00:00
|
|
|
return RequestPermissionWithDetails(permission, render_frame_host,
|
|
|
|
requesting_origin, user_gesture, nullptr,
|
2019-05-03 18:30:48 +00:00
|
|
|
std::move(response_callback));
|
2017-11-11 03:27:30 +00:00
|
|
|
}
|
2017-11-11 03:44:57 +00:00
|
|
|
|
2017-11-11 03:27:30 +00:00
|
|
|
int AtomPermissionManager::RequestPermissionWithDetails(
|
|
|
|
content::PermissionType permission,
|
|
|
|
content::RenderFrameHost* render_frame_host,
|
|
|
|
const GURL& requesting_origin,
|
|
|
|
bool user_gesture,
|
|
|
|
const base::DictionaryValue* details,
|
2019-05-03 18:30:48 +00:00
|
|
|
StatusCallback response_callback) {
|
2017-11-11 03:27:30 +00:00
|
|
|
return RequestPermissionsWithDetails(
|
2018-04-18 01:55:30 +00:00
|
|
|
std::vector<content::PermissionType>(1, permission), render_frame_host,
|
|
|
|
requesting_origin, user_gesture, details,
|
2019-05-03 18:30:48 +00:00
|
|
|
base::BindOnce(PermissionRequestResponseCallbackWrapper,
|
|
|
|
std::move(response_callback)));
|
2016-01-30 11:19:18 +00:00
|
|
|
}
|
|
|
|
|
2016-03-08 14:28:53 +00:00
|
|
|
int AtomPermissionManager::RequestPermissions(
|
|
|
|
const std::vector<content::PermissionType>& permissions,
|
|
|
|
content::RenderFrameHost* render_frame_host,
|
|
|
|
const GURL& requesting_origin,
|
2016-11-30 07:30:03 +00:00
|
|
|
bool user_gesture,
|
2019-05-03 18:30:48 +00:00
|
|
|
StatusesCallback response_callback) {
|
2018-04-18 01:55:30 +00:00
|
|
|
return RequestPermissionsWithDetails(permissions, render_frame_host,
|
|
|
|
requesting_origin, user_gesture, nullptr,
|
2019-05-03 18:30:48 +00:00
|
|
|
std::move(response_callback));
|
2017-11-11 03:27:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int AtomPermissionManager::RequestPermissionsWithDetails(
|
|
|
|
const std::vector<content::PermissionType>& permissions,
|
|
|
|
content::RenderFrameHost* render_frame_host,
|
|
|
|
const GURL& requesting_origin,
|
|
|
|
bool user_gesture,
|
|
|
|
const base::DictionaryValue* details,
|
2019-05-03 18:30:48 +00:00
|
|
|
StatusesCallback response_callback) {
|
2016-12-19 23:12:16 +00:00
|
|
|
if (permissions.empty()) {
|
2019-05-03 18:30:48 +00:00
|
|
|
std::move(response_callback).Run({});
|
2018-10-02 22:08:12 +00:00
|
|
|
return content::PermissionController::kNoPendingOperation;
|
2016-12-19 23:12:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (request_handler_.is_null()) {
|
|
|
|
std::vector<blink::mojom::PermissionStatus> statuses;
|
|
|
|
for (auto permission : permissions) {
|
|
|
|
if (permission == content::PermissionType::MIDI_SYSEX) {
|
2018-04-18 01:55:30 +00:00
|
|
|
content::ChildProcessSecurityPolicy::GetInstance()
|
|
|
|
->GrantSendMidiSysExMessage(
|
|
|
|
render_frame_host->GetProcess()->GetID());
|
2018-08-23 15:51:46 +00:00
|
|
|
} else if (permission == content::PermissionType::GEOLOCATION) {
|
|
|
|
AtomBrowserMainParts::Get()
|
|
|
|
->GetGeolocationControl()
|
|
|
|
->UserDidOptIntoLocationServices();
|
2016-12-19 23:12:16 +00:00
|
|
|
}
|
|
|
|
statuses.push_back(blink::mojom::PermissionStatus::GRANTED);
|
|
|
|
}
|
2019-05-03 18:30:48 +00:00
|
|
|
std::move(response_callback).Run(statuses);
|
2018-10-02 22:08:12 +00:00
|
|
|
return content::PermissionController::kNoPendingOperation;
|
2016-12-19 23:12:16 +00:00
|
|
|
}
|
|
|
|
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* web_contents =
|
2016-12-19 23:12:16 +00:00
|
|
|
content::WebContents::FromRenderFrameHost(render_frame_host);
|
2018-04-12 12:48:32 +00:00
|
|
|
int request_id = pending_requests_.Add(std::make_unique<PendingRequest>(
|
2019-05-03 18:30:48 +00:00
|
|
|
render_frame_host, permissions, std::move(response_callback)));
|
2016-12-19 23:12:16 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < permissions.size(); ++i) {
|
|
|
|
auto permission = permissions[i];
|
|
|
|
const auto callback =
|
2019-05-03 18:30:48 +00:00
|
|
|
base::BindRepeating(&AtomPermissionManager::OnPermissionResponse,
|
|
|
|
base::Unretained(this), request_id, i);
|
2019-06-13 18:11:43 +00:00
|
|
|
auto mutable_details =
|
|
|
|
details == nullptr ? base::DictionaryValue() : details->Clone();
|
|
|
|
mutable_details.SetStringKey(
|
|
|
|
"requestingUrl", render_frame_host->GetLastCommittedURL().spec());
|
|
|
|
mutable_details.SetBoolKey("isMainFrame",
|
|
|
|
render_frame_host->GetParent() == nullptr);
|
|
|
|
request_handler_.Run(web_contents, permission, callback, mutable_details);
|
2016-03-08 14:28:53 +00:00
|
|
|
}
|
2016-12-19 23:12:16 +00:00
|
|
|
|
|
|
|
return request_id;
|
2016-03-08 14:28:53 +00:00
|
|
|
}
|
|
|
|
|
2016-01-31 21:35:34 +00:00
|
|
|
void AtomPermissionManager::OnPermissionResponse(
|
|
|
|
int request_id,
|
2016-12-19 23:12:16 +00:00
|
|
|
int permission_id,
|
2016-05-23 01:59:39 +00:00
|
|
|
blink::mojom::PermissionStatus status) {
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* pending_request = pending_requests_.Lookup(request_id);
|
2016-12-19 23:12:16 +00:00
|
|
|
if (!pending_request)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pending_request->SetPermissionStatus(permission_id, status);
|
|
|
|
if (pending_request->IsComplete()) {
|
|
|
|
pending_request->RunCallback();
|
|
|
|
pending_requests_.Remove(request_id);
|
2016-02-01 09:43:49 +00:00
|
|
|
}
|
2016-01-31 21:35:34 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void AtomPermissionManager::ResetPermission(content::PermissionType permission,
|
|
|
|
const GURL& requesting_origin,
|
|
|
|
const GURL& embedding_origin) {}
|
2016-01-30 11:19:18 +00:00
|
|
|
|
2016-05-23 01:59:39 +00:00
|
|
|
blink::mojom::PermissionStatus AtomPermissionManager::GetPermissionStatus(
|
2016-01-30 11:19:18 +00:00
|
|
|
content::PermissionType permission,
|
|
|
|
const GURL& requesting_origin,
|
|
|
|
const GURL& embedding_origin) {
|
2016-05-23 01:59:39 +00:00
|
|
|
return blink::mojom::PermissionStatus::GRANTED;
|
2016-01-30 11:19:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int AtomPermissionManager::SubscribePermissionStatusChange(
|
|
|
|
content::PermissionType permission,
|
2018-10-25 15:45:51 +00:00
|
|
|
content::RenderFrameHost* render_frame_host,
|
2016-01-30 11:19:18 +00:00
|
|
|
const GURL& requesting_origin,
|
2019-05-03 18:30:48 +00:00
|
|
|
base::RepeatingCallback<void(blink::mojom::PermissionStatus)> callback) {
|
2016-01-30 11:19:18 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AtomPermissionManager::UnsubscribePermissionStatusChange(
|
2018-04-18 01:55:30 +00:00
|
|
|
int subscription_id) {}
|
2016-01-30 11:19:18 +00:00
|
|
|
|
2018-08-28 14:05:08 +00:00
|
|
|
bool AtomPermissionManager::CheckPermissionWithDetails(
|
|
|
|
content::PermissionType permission,
|
|
|
|
content::RenderFrameHost* render_frame_host,
|
|
|
|
const GURL& requesting_origin,
|
|
|
|
const base::DictionaryValue* details) const {
|
|
|
|
if (check_handler_.is_null()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
auto* web_contents =
|
|
|
|
content::WebContents::FromRenderFrameHost(render_frame_host);
|
2019-06-13 18:11:43 +00:00
|
|
|
auto mutable_details =
|
|
|
|
details == nullptr ? base::DictionaryValue() : details->Clone();
|
|
|
|
mutable_details.SetStringKey("requestingUrl",
|
|
|
|
render_frame_host->GetLastCommittedURL().spec());
|
|
|
|
mutable_details.SetBoolKey("isMainFrame",
|
|
|
|
render_frame_host->GetParent() == nullptr);
|
2018-08-28 14:05:08 +00:00
|
|
|
return check_handler_.Run(web_contents, permission, requesting_origin,
|
2019-06-13 18:11:43 +00:00
|
|
|
mutable_details);
|
2018-08-28 14:05:08 +00:00
|
|
|
}
|
|
|
|
|
2018-07-21 15:48:43 +00:00
|
|
|
blink::mojom::PermissionStatus
|
|
|
|
AtomPermissionManager::GetPermissionStatusForFrame(
|
|
|
|
content::PermissionType permission,
|
|
|
|
content::RenderFrameHost* render_frame_host,
|
|
|
|
const GURL& requesting_origin) {
|
|
|
|
return blink::mojom::PermissionStatus::GRANTED;
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|