commit
f3c7965cea
8 changed files with 49 additions and 125 deletions
|
@ -28,6 +28,33 @@ Protocol::Protocol(AtomBrowserContext* browser_context)
|
||||||
CHECK(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<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);
|
||||||
|
}
|
||||||
|
|
||||||
void Protocol::RegisterStandardSchemes(
|
void Protocol::RegisterStandardSchemes(
|
||||||
const std::vector<std::string>& schemes) {
|
const std::vector<std::string>& schemes) {
|
||||||
atom::AtomBrowserClient::SetCustomSchemes(schemes);
|
atom::AtomBrowserClient::SetCustomSchemes(schemes);
|
||||||
|
@ -126,34 +153,21 @@ mate::Handle<Protocol> Protocol::Create(
|
||||||
return mate::CreateHandle(isolate, new Protocol(browser_context));
|
return mate::CreateHandle(isolate, new Protocol(browser_context));
|
||||||
}
|
}
|
||||||
|
|
||||||
// static
|
|
||||||
void Protocol::BuildPrototype(v8::Isolate* isolate,
|
|
||||||
v8::Local<v8::ObjectTemplate> prototype) {
|
|
||||||
mate::ObjectTemplateBuilder(isolate, prototype)
|
|
||||||
.SetMethod("registerStandardSchemes", &Protocol::RegisterStandardSchemes)
|
|
||||||
.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);
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace api
|
} // namespace api
|
||||||
|
|
||||||
} // namespace atom
|
} // namespace atom
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
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);
|
||||||
|
auto browser_context = static_cast<atom::AtomBrowserContext*>(
|
||||||
|
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)
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "atom/browser/api/trackable_object.h"
|
|
||||||
#include "atom/browser/net/atom_url_request_job_factory.h"
|
#include "atom/browser/net/atom_url_request_job_factory.h"
|
||||||
#include "base/callback.h"
|
#include "base/callback.h"
|
||||||
#include "base/containers/scoped_ptr_hash_map.h"
|
#include "base/containers/scoped_ptr_hash_map.h"
|
||||||
|
@ -31,7 +30,7 @@ class AtomURLRequestJobFactory;
|
||||||
|
|
||||||
namespace api {
|
namespace api {
|
||||||
|
|
||||||
class Protocol : public mate::TrackableObject<Protocol> {
|
class Protocol : public mate::Wrappable {
|
||||||
public:
|
public:
|
||||||
using Handler =
|
using Handler =
|
||||||
base::Callback<void(const net::URLRequest*, v8::Local<v8::Value>)>;
|
base::Callback<void(const net::URLRequest*, v8::Local<v8::Value>)>;
|
||||||
|
@ -41,13 +40,13 @@ class Protocol : public mate::TrackableObject<Protocol> {
|
||||||
static mate::Handle<Protocol> Create(
|
static mate::Handle<Protocol> Create(
|
||||||
v8::Isolate* isolate, AtomBrowserContext* browser_context);
|
v8::Isolate* isolate, AtomBrowserContext* browser_context);
|
||||||
|
|
||||||
// mate::TrackableObject:
|
|
||||||
static void BuildPrototype(v8::Isolate* isolate,
|
|
||||||
v8::Local<v8::ObjectTemplate> prototype);
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
explicit Protocol(AtomBrowserContext* browser_context);
|
explicit Protocol(AtomBrowserContext* browser_context);
|
||||||
|
|
||||||
|
// mate::Wrappable implementations:
|
||||||
|
virtual mate::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
||||||
|
v8::Isolate* isolate);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Possible errors.
|
// Possible errors.
|
||||||
enum ProtocolError {
|
enum ProtocolError {
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
|
|
||||||
#include "atom/browser/api/atom_api_cookies.h"
|
#include "atom/browser/api/atom_api_cookies.h"
|
||||||
#include "atom/browser/api/atom_api_download_item.h"
|
#include "atom/browser/api/atom_api_download_item.h"
|
||||||
#include "atom/browser/api/atom_api_protocol.h"
|
|
||||||
#include "atom/browser/api/atom_api_web_contents.h"
|
#include "atom/browser/api/atom_api_web_contents.h"
|
||||||
#include "atom/browser/api/atom_api_web_request.h"
|
#include "atom/browser/api/atom_api_web_request.h"
|
||||||
#include "atom/browser/api/save_page_handler.h"
|
#include "atom/browser/api/save_page_handler.h"
|
||||||
|
@ -444,14 +443,6 @@ v8::Local<v8::Value> Session::Cookies(v8::Isolate* isolate) {
|
||||||
return v8::Local<v8::Value>::New(isolate, cookies_);
|
return v8::Local<v8::Value>::New(isolate, cookies_);
|
||||||
}
|
}
|
||||||
|
|
||||||
v8::Local<v8::Value> Session::Protocol(v8::Isolate* isolate) {
|
|
||||||
if (protocol_.IsEmpty()) {
|
|
||||||
auto handle = atom::api::Protocol::Create(isolate, browser_context());
|
|
||||||
protocol_.Reset(isolate, handle.ToV8());
|
|
||||||
}
|
|
||||||
return v8::Local<v8::Value>::New(isolate, protocol_);
|
|
||||||
}
|
|
||||||
|
|
||||||
v8::Local<v8::Value> Session::WebRequest(v8::Isolate* isolate) {
|
v8::Local<v8::Value> Session::WebRequest(v8::Isolate* isolate) {
|
||||||
if (web_request_.IsEmpty()) {
|
if (web_request_.IsEmpty()) {
|
||||||
auto handle = atom::api::WebRequest::Create(isolate, browser_context());
|
auto handle = atom::api::WebRequest::Create(isolate, browser_context());
|
||||||
|
@ -499,7 +490,6 @@ void Session::BuildPrototype(v8::Isolate* isolate,
|
||||||
&Session::SetPermissionRequestHandler)
|
&Session::SetPermissionRequestHandler)
|
||||||
.SetMethod("clearHostResolverCache", &Session::ClearHostResolverCache)
|
.SetMethod("clearHostResolverCache", &Session::ClearHostResolverCache)
|
||||||
.SetProperty("cookies", &Session::Cookies)
|
.SetProperty("cookies", &Session::Cookies)
|
||||||
.SetProperty("protocol", &Session::Protocol)
|
|
||||||
.SetProperty("webRequest", &Session::WebRequest);
|
.SetProperty("webRequest", &Session::WebRequest);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -80,12 +80,10 @@ class Session: public mate::TrackableObject<Session>,
|
||||||
mate::Arguments* args);
|
mate::Arguments* args);
|
||||||
void ClearHostResolverCache(mate::Arguments* args);
|
void ClearHostResolverCache(mate::Arguments* args);
|
||||||
v8::Local<v8::Value> Cookies(v8::Isolate* isolate);
|
v8::Local<v8::Value> Cookies(v8::Isolate* isolate);
|
||||||
v8::Local<v8::Value> Protocol(v8::Isolate* isolate);
|
|
||||||
v8::Local<v8::Value> WebRequest(v8::Isolate* isolate);
|
v8::Local<v8::Value> WebRequest(v8::Isolate* isolate);
|
||||||
|
|
||||||
// Cached object.
|
// Cached object.
|
||||||
v8::Global<v8::Value> cookies_;
|
v8::Global<v8::Value> cookies_;
|
||||||
v8::Global<v8::Value> protocol_;
|
|
||||||
v8::Global<v8::Value> web_request_;
|
v8::Global<v8::Value> web_request_;
|
||||||
|
|
||||||
scoped_refptr<AtomBrowserContext> browser_context_;
|
scoped_refptr<AtomBrowserContext> browser_context_;
|
||||||
|
|
|
@ -4,10 +4,7 @@ if (!app.isReady()) {
|
||||||
throw new Error('Can not initialize protocol module before app is ready');
|
throw new Error('Can not initialize protocol module before app is ready');
|
||||||
}
|
}
|
||||||
|
|
||||||
const session = require('electron').session;
|
const protocol = process.atomBinding('protocol').protocol;
|
||||||
|
|
||||||
// Returns the protocol property for default session.
|
|
||||||
const protocol = session.defaultSession.protocol;
|
|
||||||
|
|
||||||
// Warn about removed APIs.
|
// Warn about removed APIs.
|
||||||
var logAndThrow = function(callback, message) {
|
var logAndThrow = function(callback, message) {
|
||||||
|
|
|
@ -41,6 +41,7 @@ REFERENCE_MODULE(atom_browser_download_item);
|
||||||
REFERENCE_MODULE(atom_browser_menu);
|
REFERENCE_MODULE(atom_browser_menu);
|
||||||
REFERENCE_MODULE(atom_browser_power_monitor);
|
REFERENCE_MODULE(atom_browser_power_monitor);
|
||||||
REFERENCE_MODULE(atom_browser_power_save_blocker);
|
REFERENCE_MODULE(atom_browser_power_save_blocker);
|
||||||
|
REFERENCE_MODULE(atom_browser_protocol);
|
||||||
REFERENCE_MODULE(atom_browser_global_shortcut);
|
REFERENCE_MODULE(atom_browser_global_shortcut);
|
||||||
REFERENCE_MODULE(atom_browser_session);
|
REFERENCE_MODULE(atom_browser_session);
|
||||||
REFERENCE_MODULE(atom_browser_tray);
|
REFERENCE_MODULE(atom_browser_tray);
|
||||||
|
|
|
@ -523,25 +523,3 @@ The `listener` will be called with `listener(details)` when an error occurs.
|
||||||
* `timestamp` Double
|
* `timestamp` Double
|
||||||
* `fromCache` Boolean
|
* `fromCache` Boolean
|
||||||
* `error` String - The error description.
|
* `error` String - The error description.
|
||||||
|
|
||||||
#### `ses.protocol`
|
|
||||||
|
|
||||||
Returns an instance of [protocol](protocol.md) module for this session.
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
const electron = require('electron');
|
|
||||||
const app = electron.app;
|
|
||||||
const session = electron.session;
|
|
||||||
const path = require('path');
|
|
||||||
|
|
||||||
app.on('ready', function() {
|
|
||||||
const protocol = session.fromPartition(partitionName).protocol;
|
|
||||||
protocol.registerFileProtocol('atom', function(request, callback) {
|
|
||||||
var url = request.url.substr(7);
|
|
||||||
callback({path: path.normalize(__dirname + '/' + url)});
|
|
||||||
}, function (error) {
|
|
||||||
if (error)
|
|
||||||
console.error('Failed to register protocol')
|
|
||||||
});
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
|
@ -3,9 +3,7 @@ const http = require('http');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const qs = require('querystring');
|
const qs = require('querystring');
|
||||||
const remote = require('electron').remote;
|
const remote = require('electron').remote;
|
||||||
const BrowserWindow = remote.require('electron').BrowserWindow;
|
|
||||||
const protocol = remote.require('electron').protocol;
|
const protocol = remote.require('electron').protocol;
|
||||||
const session = remote.require('electron').session;
|
|
||||||
|
|
||||||
describe('protocol module', function() {
|
describe('protocol module', function() {
|
||||||
var protocolName = 'sp';
|
var protocolName = 'sp';
|
||||||
|
@ -816,55 +814,4 @@ describe('protocol module', function() {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('protocol.fromPartition', function() {
|
|
||||||
var partitionName = 'temp';
|
|
||||||
var tempProtocol = session.fromPartition(partitionName).protocol;
|
|
||||||
var w = null;
|
|
||||||
|
|
||||||
beforeEach(function() {
|
|
||||||
if (w != null) {
|
|
||||||
w.destroy();
|
|
||||||
}
|
|
||||||
w = new BrowserWindow({
|
|
||||||
show: false,
|
|
||||||
width: 400,
|
|
||||||
height: 400,
|
|
||||||
webPreferences: {
|
|
||||||
partition: partitionName
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
afterEach(function() {
|
|
||||||
if (w != null) {
|
|
||||||
w.destroy();
|
|
||||||
}
|
|
||||||
w = null;
|
|
||||||
});
|
|
||||||
|
|
||||||
it('handles requests from a partition', function(done) {
|
|
||||||
var handler = function(error, callback) {
|
|
||||||
callback({
|
|
||||||
data: text
|
|
||||||
});
|
|
||||||
};
|
|
||||||
tempProtocol.registerStringProtocol(protocolName, handler, function(error) {
|
|
||||||
if (error) {
|
|
||||||
return done(error);
|
|
||||||
}
|
|
||||||
|
|
||||||
protocol.isProtocolHandled(protocolName, function(result) {
|
|
||||||
assert.equal(result, false);
|
|
||||||
});
|
|
||||||
tempProtocol.isProtocolHandled(protocolName, function(result) {
|
|
||||||
assert.equal(result, true);
|
|
||||||
w.webContents.on('did-finish-load', function() {
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
w.loadURL(protocolName + "://fake-host");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue