electron/atom/browser/api/atom_api_protocol.cc

217 lines
7.7 KiB
C++
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
2013-08-24 07:26:10 +00:00
// found in the LICENSE file.
2014-03-16 00:30:26 +00:00
#include "atom/browser/api/atom_api_protocol.h"
2013-08-24 07:26:10 +00:00
#include "atom/browser/atom_browser_client.h"
2015-06-18 08:59:03 +00:00
#include "atom/browser/atom_browser_main_parts.h"
#include "atom/browser/net/url_request_async_asar_job.h"
#include "atom/browser/net/url_request_buffer_job.h"
#include "atom/browser/net/url_request_fetch_job.h"
#include "atom/browser/net/url_request_string_job.h"
#include "atom/common/native_mate_converters/callback.h"
#include "atom/common/native_mate_converters/value_converter.h"
#include "atom/common/node_includes.h"
#include "atom/common/options_switches.h"
#include "base/command_line.h"
#include "base/strings/string_util.h"
2016-06-08 06:49:26 +00:00
#include "content/public/browser/child_process_security_policy.h"
#include "native_mate/dictionary.h"
#include "url/url_util.h"
2013-08-24 07:26:10 +00:00
2014-04-21 08:33:32 +00:00
using content::BrowserThread;
2013-08-24 07:26:10 +00:00
2014-04-21 08:33:32 +00:00
namespace atom {
2014-04-21 08:33:32 +00:00
namespace api {
2016-07-09 08:02:55 +00:00
namespace {
// Clear protocol handlers in IO thread.
void ClearJobFactoryInIO(
scoped_refptr<brightray::URLRequestContextGetter> request_context_getter) {
auto job_factory = static_cast<AtomURLRequestJobFactory*>(
request_context_getter->job_factory());
job_factory->Clear();
}
} // namespace
2016-05-08 11:14:14 +00:00
Protocol::Protocol(v8::Isolate* isolate, AtomBrowserContext* browser_context)
2016-06-15 12:11:42 +00:00
: request_context_getter_(static_cast<brightray::URLRequestContextGetter*>(
browser_context->GetRequestContext())),
weak_factory_(this) {
2016-05-08 11:14:14 +00:00
Init(isolate);
}
2016-07-09 08:02:55 +00:00
Protocol::~Protocol() {
content::BrowserThread::PostTask(
content::BrowserThread::IO, FROM_HERE,
base::Bind(ClearJobFactoryInIO, request_context_getter_));
}
void Protocol::RegisterServiceWorkerSchemes(
const std::vector<std::string>& schemes) {
atom::AtomBrowserClient::SetCustomServiceWorkerSchemes(schemes);
}
2015-08-13 11:26:18 +00:00
void Protocol::UnregisterProtocol(
const std::string& scheme, mate::Arguments* args) {
CompletionCallback callback;
args->GetNext(&callback);
content::BrowserThread::PostTaskAndReplyWithResult(
content::BrowserThread::IO, FROM_HERE,
base::Bind(&Protocol::UnregisterProtocolInIO,
2016-06-15 12:11:42 +00:00
request_context_getter_, scheme),
2015-08-13 11:26:18 +00:00
base::Bind(&Protocol::OnIOCompleted,
GetWeakPtr(), callback));
2015-08-13 11:26:18 +00:00
}
2016-06-15 12:11:42 +00:00
// static
2015-08-13 11:26:18 +00:00
Protocol::ProtocolError Protocol::UnregisterProtocolInIO(
2016-06-15 12:11:42 +00:00
scoped_refptr<brightray::URLRequestContextGetter> request_context_getter,
2015-08-13 11:26:18 +00:00
const std::string& scheme) {
2016-06-15 12:11:42 +00:00
auto job_factory = static_cast<AtomURLRequestJobFactory*>(
request_context_getter->job_factory());
if (!job_factory->HasProtocolHandler(scheme))
2015-08-13 11:26:18 +00:00
return PROTOCOL_NOT_REGISTERED;
2016-06-15 12:11:42 +00:00
job_factory->SetProtocolHandler(scheme, nullptr);
2015-08-13 11:26:18 +00:00
return PROTOCOL_OK;
}
void Protocol::IsProtocolHandled(const std::string& scheme,
const BooleanCallback& callback) {
2015-08-13 11:33:53 +00:00
content::BrowserThread::PostTaskAndReplyWithResult(
content::BrowserThread::IO, FROM_HERE,
base::Bind(&Protocol::IsProtocolHandledInIO,
2016-06-15 12:11:42 +00:00
request_context_getter_, scheme),
2015-08-13 11:33:53 +00:00
callback);
}
2016-06-15 12:11:42 +00:00
// static
bool Protocol::IsProtocolHandledInIO(
scoped_refptr<brightray::URLRequestContextGetter> request_context_getter,
const std::string& scheme) {
return request_context_getter->job_factory()->IsHandledProtocol(scheme);
2015-08-13 11:33:53 +00:00
}
2015-08-13 12:19:02 +00:00
void Protocol::UninterceptProtocol(
const std::string& scheme, mate::Arguments* args) {
CompletionCallback callback;
args->GetNext(&callback);
content::BrowserThread::PostTaskAndReplyWithResult(
content::BrowserThread::IO, FROM_HERE,
base::Bind(&Protocol::UninterceptProtocolInIO,
2016-06-15 12:11:42 +00:00
request_context_getter_, scheme),
2015-08-13 12:19:02 +00:00
base::Bind(&Protocol::OnIOCompleted,
GetWeakPtr(), callback));
2015-08-13 12:19:02 +00:00
}
2016-06-15 12:11:42 +00:00
// static
2015-08-13 12:19:02 +00:00
Protocol::ProtocolError Protocol::UninterceptProtocolInIO(
2016-06-15 12:11:42 +00:00
scoped_refptr<brightray::URLRequestContextGetter> request_context_getter,
2015-08-13 12:19:02 +00:00
const std::string& scheme) {
2016-06-15 12:11:42 +00:00
return static_cast<AtomURLRequestJobFactory*>(
request_context_getter->job_factory())->UninterceptProtocol(scheme) ?
PROTOCOL_OK : PROTOCOL_NOT_INTERCEPTED;
2015-08-13 12:19:02 +00:00
}
void Protocol::OnIOCompleted(
const CompletionCallback& callback, ProtocolError error) {
2015-08-12 13:32:52 +00:00
// The completion callback is optional.
if (callback.is_null())
return;
v8::Locker locker(isolate());
v8::HandleScope handle_scope(isolate());
2015-07-09 09:18:45 +00:00
if (error == PROTOCOL_OK) {
callback.Run(v8::Null(isolate()));
} else {
std::string str = ErrorCodeToString(error);
callback.Run(v8::Exception::Error(mate::StringToV8(isolate(), str)));
}
2013-08-30 02:15:15 +00:00
}
std::string Protocol::ErrorCodeToString(ProtocolError error) {
switch (error) {
case PROTOCOL_FAIL: return "Failed to manipulate protocol factory";
case PROTOCOL_REGISTERED: return "The scheme has been registred";
case PROTOCOL_NOT_REGISTERED: return "The scheme has not been registred";
case PROTOCOL_INTERCEPTED: return "The scheme has been intercepted";
case PROTOCOL_NOT_INTERCEPTED: return "The scheme has not been intercepted";
default: return "Unexpected error";
}
2013-08-30 02:15:15 +00:00
}
2016-06-15 12:11:42 +00:00
AtomURLRequestJobFactory* Protocol::GetJobFactoryInIO() const {
request_context_getter_->GetURLRequestContext(); // Force init.
return static_cast<AtomURLRequestJobFactory*>(
static_cast<brightray::URLRequestContextGetter*>(
request_context_getter_.get())->job_factory());
}
2013-08-24 07:26:10 +00:00
// static
2016-05-08 11:14:14 +00:00
mate::Handle<Protocol> Protocol::Create(
v8::Isolate* isolate, AtomBrowserContext* browser_context) {
return mate::CreateHandle(isolate, new Protocol(isolate, browser_context));
2016-04-25 01:17:54 +00:00
}
// static
void Protocol::BuildPrototype(
v8::Isolate* isolate, v8::Local<v8::ObjectTemplate> prototype) {
mate::ObjectTemplateBuilder(isolate, prototype)
.SetMethod("registerServiceWorkerSchemes",
&Protocol::RegisterServiceWorkerSchemes)
.SetMethod("registerStringProtocol",
&Protocol::RegisterProtocol<URLRequestStringJob>)
.SetMethod("registerBufferProtocol",
&Protocol::RegisterProtocol<URLRequestBufferJob>)
.SetMethod("registerFileProtocol",
&Protocol::RegisterProtocol<URLRequestAsyncAsarJob>)
.SetMethod("registerHttpProtocol",
&Protocol::RegisterProtocol<URLRequestFetchJob>)
.SetMethod("unregisterProtocol", &Protocol::UnregisterProtocol)
.SetMethod("isProtocolHandled", &Protocol::IsProtocolHandled)
.SetMethod("interceptStringProtocol",
&Protocol::InterceptProtocol<URLRequestStringJob>)
.SetMethod("interceptBufferProtocol",
&Protocol::InterceptProtocol<URLRequestBufferJob>)
.SetMethod("interceptFileProtocol",
&Protocol::InterceptProtocol<URLRequestAsyncAsarJob>)
.SetMethod("interceptHttpProtocol",
&Protocol::InterceptProtocol<URLRequestFetchJob>)
.SetMethod("uninterceptProtocol", &Protocol::UninterceptProtocol);
2013-08-24 07:26:10 +00:00
}
} // namespace api
2014-04-21 08:33:32 +00:00
} // namespace atom
namespace {
2016-05-08 11:14:14 +00:00
void RegisterStandardSchemes(
const std::vector<std::string>& schemes) {
2016-06-08 06:49:26 +00:00
auto policy = content::ChildProcessSecurityPolicy::GetInstance();
for (const auto& scheme : schemes) {
2016-05-08 11:14:14 +00:00
url::AddStandardScheme(scheme.c_str(), url::SCHEME_WITHOUT_PORT);
2016-06-08 06:49:26 +00:00
policy->RegisterWebSafeScheme(scheme);
}
auto command_line = base::CommandLine::ForCurrentProcess();
command_line->AppendSwitchASCII(atom::switches::kStandardSchemes,
base::JoinString(schemes, ","));
2016-05-08 11:14:14 +00:00
}
void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
v8::Local<v8::Context> context, void* priv) {
v8::Isolate* isolate = context->GetIsolate();
mate::Dictionary dict(isolate, exports);
2016-05-08 11:14:14 +00:00
dict.SetMethod("registerStandardSchemes", &RegisterStandardSchemes);
}
} // namespace
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_browser_protocol, Initialize)