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.
|
|
|
|
|
|
|
|
#include "atom/browser/atom_permission_manager.h"
|
|
|
|
|
2016-03-08 14:32:59 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2016-03-13 22:23:39 +00:00
|
|
|
#include "atom/browser/web_contents_preferences.h"
|
2016-01-30 13:31:10 +00:00
|
|
|
#include "content/public/browser/child_process_security_policy.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"
|
2016-01-30 11:19:18 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2016-02-01 09:43:49 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
bool WebContentsDestroyed(int process_id) {
|
2016-03-13 22:23:39 +00:00
|
|
|
auto contents =
|
|
|
|
WebContentsPreferences::GetWebContentsFromProcessID(process_id);
|
|
|
|
if (!contents)
|
|
|
|
return true;
|
|
|
|
return contents->IsBeingDestroyed();
|
2016-02-01 09:43:49 +00:00
|
|
|
}
|
|
|
|
|
2016-12-19 23:12:16 +00:00
|
|
|
void PermissionRequestResponseCallbackWrapper(
|
|
|
|
const AtomPermissionManager::StatusCallback& callback,
|
|
|
|
const std::vector<blink::mojom::PermissionStatus>& vector) {
|
|
|
|
callback.Run(vector[0]);
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
const StatusesCallback& callback)
|
|
|
|
: render_process_id_(render_frame_host->GetProcess()->GetID()),
|
|
|
|
callback_(callback),
|
|
|
|
results_(permissions.size(), blink::mojom::PermissionStatus::DENIED),
|
|
|
|
remaining_results_(permissions.size()) {}
|
|
|
|
|
|
|
|
void SetPermissionStatus(int permission_id,
|
|
|
|
blink::mojom::PermissionStatus status) {
|
|
|
|
DCHECK(!IsComplete());
|
|
|
|
|
|
|
|
results_[permission_id] = status;
|
|
|
|
--remaining_results_;
|
|
|
|
}
|
|
|
|
|
|
|
|
int render_process_id() const {
|
|
|
|
return render_process_id_;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsComplete() const {
|
|
|
|
return remaining_results_ == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void RunCallback() const {
|
|
|
|
callback_.Run(results_);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int render_process_id_;
|
|
|
|
const StatusesCallback callback_;
|
|
|
|
std::vector<blink::mojom::PermissionStatus> results_;
|
|
|
|
size_t remaining_results_;
|
|
|
|
};
|
|
|
|
|
|
|
|
AtomPermissionManager::AtomPermissionManager() {
|
2016-01-30 11:19:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtomPermissionManager::~AtomPermissionManager() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void AtomPermissionManager::SetPermissionRequestHandler(
|
|
|
|
const RequestHandler& handler) {
|
2016-12-19 23:12:16 +00:00
|
|
|
if (handler.is_null() && !pending_requests_.IsEmpty()) {
|
|
|
|
for (PendingRequestsMap::const_iterator iter(&pending_requests_);
|
|
|
|
!iter.IsAtEnd(); iter.Advance()) {
|
|
|
|
auto request = iter.GetCurrentValue();
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2016-12-19 23:12:16 +00:00
|
|
|
const StatusCallback& response_callback) {
|
|
|
|
return RequestPermissions(
|
|
|
|
std::vector<content::PermissionType>(1, permission),
|
|
|
|
render_frame_host,
|
|
|
|
requesting_origin,
|
|
|
|
user_gesture,
|
|
|
|
base::Bind(&PermissionRequestResponseCallbackWrapper, 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,
|
2016-12-19 23:12:16 +00:00
|
|
|
const StatusesCallback& response_callback) {
|
|
|
|
if (permissions.empty()) {
|
|
|
|
response_callback.Run(std::vector<blink::mojom::PermissionStatus>());
|
|
|
|
return kNoPendingOperation;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request_handler_.is_null()) {
|
|
|
|
std::vector<blink::mojom::PermissionStatus> statuses;
|
|
|
|
for (auto permission : permissions) {
|
|
|
|
if (permission == content::PermissionType::MIDI_SYSEX) {
|
|
|
|
content::ChildProcessSecurityPolicy::GetInstance()->
|
|
|
|
GrantSendMidiSysExMessage(render_frame_host->GetProcess()->GetID());
|
|
|
|
}
|
|
|
|
statuses.push_back(blink::mojom::PermissionStatus::GRANTED);
|
|
|
|
}
|
|
|
|
response_callback.Run(statuses);
|
|
|
|
return kNoPendingOperation;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto web_contents =
|
|
|
|
content::WebContents::FromRenderFrameHost(render_frame_host);
|
2017-04-04 04:50:44 +00:00
|
|
|
int request_id = pending_requests_.Add(base::MakeUnique<PendingRequest>(
|
2016-12-19 23:12:16 +00:00
|
|
|
render_frame_host, permissions, response_callback));
|
|
|
|
|
|
|
|
for (size_t i = 0; i < permissions.size(); ++i) {
|
|
|
|
auto permission = permissions[i];
|
2016-03-08 14:28:53 +00:00
|
|
|
if (permission == content::PermissionType::MIDI_SYSEX) {
|
|
|
|
content::ChildProcessSecurityPolicy::GetInstance()->
|
|
|
|
GrantSendMidiSysExMessage(render_frame_host->GetProcess()->GetID());
|
|
|
|
}
|
2016-12-19 23:12:16 +00:00
|
|
|
const auto callback =
|
|
|
|
base::Bind(&AtomPermissionManager::OnPermissionResponse,
|
|
|
|
base::Unretained(this), request_id, i);
|
|
|
|
request_handler_.Run(web_contents, permission, callback);
|
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) {
|
2016-12-19 23:12:16 +00:00
|
|
|
auto pending_request = pending_requests_.Lookup(request_id);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-01-30 11:19:18 +00:00
|
|
|
void AtomPermissionManager::CancelPermissionRequest(int request_id) {
|
2016-12-19 23:12:16 +00:00
|
|
|
auto pending_request = pending_requests_.Lookup(request_id);
|
|
|
|
if (!pending_request)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!WebContentsDestroyed(pending_request->render_process_id()))
|
|
|
|
pending_request->RunCallback();
|
|
|
|
pending_requests_.Remove(request_id);
|
2016-01-30 11:19:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AtomPermissionManager::ResetPermission(
|
|
|
|
content::PermissionType permission,
|
|
|
|
const GURL& requesting_origin,
|
|
|
|
const GURL& embedding_origin) {
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
const GURL& requesting_origin,
|
|
|
|
const GURL& embedding_origin,
|
2016-12-19 23:12:16 +00:00
|
|
|
const StatusCallback& callback) {
|
2016-01-30 11:19:18 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AtomPermissionManager::UnsubscribePermissionStatusChange(
|
|
|
|
int subscription_id) {
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace atom
|