// Copyright (c) 2013 GitHub, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #include "atom/browser/api/atom_api_protocol.h" #include "atom/browser/atom_browser_client.h" #include "atom/browser/atom_browser_context.h" #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/net_converter.h" #include "atom/common/node_includes.h" #include "native_mate/dictionary.h" using content::BrowserThread; namespace atom { namespace api { Protocol::Protocol(AtomBrowserContext* browser_context) : request_context_getter_(browser_context->GetRequestContext()), job_factory_(browser_context->job_factory()) { CHECK(job_factory_); } mate::ObjectTemplateBuilder Protocol::GetObjectTemplateBuilder( v8::Isolate* isolate) { return mate::ObjectTemplateBuilder(isolate) .SetMethod("registerStandardSchemes", &Protocol::RegisterStandardSchemes) .SetMethod("registerServiceWorkerSchemes", &Protocol::RegisterServiceWorkerSchemes) .SetMethod("registerStringProtocol", &Protocol::RegisterProtocol) .SetMethod("registerBufferProtocol", &Protocol::RegisterProtocol) .SetMethod("registerFileProtocol", &Protocol::RegisterProtocol) .SetMethod("registerHttpProtocol", &Protocol::RegisterProtocol) .SetMethod("unregisterProtocol", &Protocol::UnregisterProtocol) .SetMethod("isProtocolHandled", &Protocol::IsProtocolHandled) .SetMethod("interceptStringProtocol", &Protocol::InterceptProtocol) .SetMethod("interceptBufferProtocol", &Protocol::InterceptProtocol) .SetMethod("interceptFileProtocol", &Protocol::InterceptProtocol) .SetMethod("interceptHttpProtocol", &Protocol::InterceptProtocol) .SetMethod("uninterceptProtocol", &Protocol::UninterceptProtocol); } void Protocol::RegisterStandardSchemes( const std::vector& schemes) { atom::AtomBrowserClient::SetCustomSchemes(schemes); } void Protocol::RegisterServiceWorkerSchemes( const std::vector& schemes) { atom::AtomBrowserClient::SetCustomServiceWorkerSchemes(schemes); } 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, base::Unretained(this), scheme), base::Bind(&Protocol::OnIOCompleted, base::Unretained(this), callback)); } Protocol::ProtocolError Protocol::UnregisterProtocolInIO( const std::string& scheme) { if (!job_factory_->HasProtocolHandler(scheme)) return PROTOCOL_NOT_REGISTERED; job_factory_->SetProtocolHandler(scheme, nullptr); return PROTOCOL_OK; } void Protocol::IsProtocolHandled(const std::string& scheme, const BooleanCallback& callback) { content::BrowserThread::PostTaskAndReplyWithResult( content::BrowserThread::IO, FROM_HERE, base::Bind(&Protocol::IsProtocolHandledInIO, base::Unretained(this), scheme), callback); } bool Protocol::IsProtocolHandledInIO(const std::string& scheme) { return job_factory_->IsHandledProtocol(scheme); } 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, base::Unretained(this), scheme), base::Bind(&Protocol::OnIOCompleted, base::Unretained(this), callback)); } Protocol::ProtocolError Protocol::UninterceptProtocolInIO( const std::string& scheme) { if (!original_protocols_.contains(scheme)) return PROTOCOL_NOT_INTERCEPTED; job_factory_->ReplaceProtocol(scheme, original_protocols_.take_and_erase(scheme)); return PROTOCOL_OK; } void Protocol::OnIOCompleted( const CompletionCallback& callback, ProtocolError error) { // The completion callback is optional. if (callback.is_null()) return; v8::Locker locker(isolate()); v8::HandleScope handle_scope(isolate()); if (error == PROTOCOL_OK) { callback.Run(v8::Null(isolate())); } else { std::string str = ErrorCodeToString(error); callback.Run(v8::Exception::Error(mate::StringToV8(isolate(), str))); } } 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"; } } // static mate::Handle Protocol::Create( v8::Isolate* isolate, AtomBrowserContext* browser_context) { return mate::CreateHandle(isolate, new Protocol(browser_context)); } } // namespace api } // namespace atom namespace { void Initialize(v8::Local exports, v8::Local unused, v8::Local context, void* priv) { v8::Isolate* isolate = context->GetIsolate(); mate::Dictionary dict(isolate, exports); auto browser_context = static_cast( atom::AtomBrowserMainParts::Get()->browser_context()); dict.Set("protocol", atom::api::Protocol::Create(isolate, browser_context)); } } // namespace NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_browser_protocol, Initialize)