Merge pull request #11131 from hugomano/feature/isolated-world
Add Isolated World API
This commit is contained in:
commit
a02cb8009e
4 changed files with 149 additions and 1 deletions
|
@ -28,6 +28,32 @@
|
||||||
|
|
||||||
#include "atom/common/node_includes.h"
|
#include "atom/common/node_includes.h"
|
||||||
|
|
||||||
|
namespace mate {
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct Converter<blink::WebLocalFrame::ScriptExecutionType> {
|
||||||
|
static bool FromV8(v8::Isolate* isolate,
|
||||||
|
v8::Local<v8::Value> val,
|
||||||
|
blink::WebLocalFrame::ScriptExecutionType* out) {
|
||||||
|
std::string execution_type;
|
||||||
|
if (!ConvertFromV8(isolate, val, &execution_type))
|
||||||
|
return false;
|
||||||
|
if (execution_type == "asynchronous") {
|
||||||
|
*out = blink::WebLocalFrame::kAsynchronous;
|
||||||
|
} else if (execution_type ==
|
||||||
|
"asynchronousBlockingOnload") {
|
||||||
|
*out = blink::WebLocalFrame::kAsynchronousBlockingOnload;
|
||||||
|
} else if (execution_type == "synchronous") {
|
||||||
|
*out = blink::WebLocalFrame::kSynchronous;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace mate
|
||||||
|
|
||||||
namespace atom {
|
namespace atom {
|
||||||
|
|
||||||
namespace api {
|
namespace api {
|
||||||
|
@ -226,6 +252,69 @@ void WebFrame::ExecuteJavaScript(const base::string16& code,
|
||||||
callback.release());
|
callback.release());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void WebFrame::ExecuteJavaScriptInIsolatedWorld(
|
||||||
|
int world_id,
|
||||||
|
const std::vector<mate::Dictionary>& scripts,
|
||||||
|
mate::Arguments* args) {
|
||||||
|
std::vector<blink::WebScriptSource> sources;
|
||||||
|
|
||||||
|
for (const auto& script : scripts) {
|
||||||
|
base::string16 code;
|
||||||
|
base::string16 url;
|
||||||
|
int start_line = 1;
|
||||||
|
script.Get("url", &url);
|
||||||
|
script.Get("startLine", &start_line);
|
||||||
|
|
||||||
|
if (!script.Get("code", &code)) {
|
||||||
|
args->ThrowError("Invalid 'code'");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
sources.emplace_back(blink::WebScriptSource(
|
||||||
|
blink::WebString::FromUTF16(code),
|
||||||
|
blink::WebURL(GURL(url)), start_line));
|
||||||
|
}
|
||||||
|
|
||||||
|
bool has_user_gesture = false;
|
||||||
|
args->GetNext(&has_user_gesture);
|
||||||
|
|
||||||
|
blink::WebLocalFrame::ScriptExecutionType scriptExecutionType =
|
||||||
|
blink::WebLocalFrame::kSynchronous;
|
||||||
|
args->GetNext(&scriptExecutionType);
|
||||||
|
|
||||||
|
ScriptExecutionCallback::CompletionCallback completion_callback;
|
||||||
|
args->GetNext(&completion_callback);
|
||||||
|
std::unique_ptr<blink::WebScriptExecutionCallback> callback(
|
||||||
|
new ScriptExecutionCallback(completion_callback));
|
||||||
|
|
||||||
|
web_frame_->RequestExecuteScriptInIsolatedWorld(
|
||||||
|
world_id, &sources.front(), sources.size(), has_user_gesture,
|
||||||
|
scriptExecutionType, callback.release());
|
||||||
|
}
|
||||||
|
|
||||||
|
void WebFrame::SetIsolatedWorldSecurityOrigin(
|
||||||
|
int world_id,
|
||||||
|
const std::string& origin_url) {
|
||||||
|
web_frame_->SetIsolatedWorldSecurityOrigin(
|
||||||
|
world_id,
|
||||||
|
blink::WebSecurityOrigin::CreateFromString(
|
||||||
|
blink::WebString::FromUTF8(origin_url)));
|
||||||
|
}
|
||||||
|
|
||||||
|
void WebFrame::SetIsolatedWorldContentSecurityPolicy(
|
||||||
|
int world_id,
|
||||||
|
const std::string& security_policy) {
|
||||||
|
web_frame_->SetIsolatedWorldContentSecurityPolicy(
|
||||||
|
world_id, blink::WebString::FromUTF8(security_policy));
|
||||||
|
}
|
||||||
|
|
||||||
|
void WebFrame::SetIsolatedWorldHumanReadableName(
|
||||||
|
int world_id,
|
||||||
|
const std::string& name) {
|
||||||
|
web_frame_->SetIsolatedWorldHumanReadableName(
|
||||||
|
world_id, blink::WebString::FromUTF8(name));
|
||||||
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
mate::Handle<WebFrame> WebFrame::Create(v8::Isolate* isolate) {
|
mate::Handle<WebFrame> WebFrame::Create(v8::Isolate* isolate) {
|
||||||
return mate::CreateHandle(isolate, new WebFrame(isolate));
|
return mate::CreateHandle(isolate, new WebFrame(isolate));
|
||||||
|
@ -275,6 +364,14 @@ void WebFrame::BuildPrototype(
|
||||||
.SetMethod("insertText", &WebFrame::InsertText)
|
.SetMethod("insertText", &WebFrame::InsertText)
|
||||||
.SetMethod("insertCSS", &WebFrame::InsertCSS)
|
.SetMethod("insertCSS", &WebFrame::InsertCSS)
|
||||||
.SetMethod("executeJavaScript", &WebFrame::ExecuteJavaScript)
|
.SetMethod("executeJavaScript", &WebFrame::ExecuteJavaScript)
|
||||||
|
.SetMethod("executeJavaScriptInIsolatedWorld",
|
||||||
|
&WebFrame::ExecuteJavaScriptInIsolatedWorld)
|
||||||
|
.SetMethod("setIsolatedWorldSecurityOrigin",
|
||||||
|
&WebFrame::SetIsolatedWorldSecurityOrigin)
|
||||||
|
.SetMethod("setIsolatedWorldContentSecurityPolicy",
|
||||||
|
&WebFrame::SetIsolatedWorldContentSecurityPolicy)
|
||||||
|
.SetMethod("setIsolatedWorldHumanReadableName",
|
||||||
|
&WebFrame::SetIsolatedWorldHumanReadableName)
|
||||||
.SetMethod("getResourceUsage", &WebFrame::GetResourceUsage)
|
.SetMethod("getResourceUsage", &WebFrame::GetResourceUsage)
|
||||||
.SetMethod("clearCache", &WebFrame::ClearCache)
|
.SetMethod("clearCache", &WebFrame::ClearCache)
|
||||||
// TODO(kevinsawicki): Remove in 2.0, deprecate before then with warnings
|
// TODO(kevinsawicki): Remove in 2.0, deprecate before then with warnings
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "atom/renderer/guest_view_container.h"
|
#include "atom/renderer/guest_view_container.h"
|
||||||
#include "native_mate/handle.h"
|
#include "native_mate/handle.h"
|
||||||
|
@ -18,6 +19,7 @@ class WebLocalFrame;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace mate {
|
namespace mate {
|
||||||
|
class Dictionary;
|
||||||
class Arguments;
|
class Arguments;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,8 +73,21 @@ class WebFrame : public mate::Wrappable<WebFrame> {
|
||||||
void InsertText(const std::string& text);
|
void InsertText(const std::string& text);
|
||||||
void InsertCSS(const std::string& css);
|
void InsertCSS(const std::string& css);
|
||||||
|
|
||||||
// Excecuting scripts.
|
// Executing scripts.
|
||||||
void ExecuteJavaScript(const base::string16& code, mate::Arguments* args);
|
void ExecuteJavaScript(const base::string16& code, mate::Arguments* args);
|
||||||
|
void ExecuteJavaScriptInIsolatedWorld(
|
||||||
|
int world_id,
|
||||||
|
const std::vector<mate::Dictionary>& scripts,
|
||||||
|
mate::Arguments* args);
|
||||||
|
|
||||||
|
// Isolated world related methods
|
||||||
|
void SetIsolatedWorldSecurityOrigin(int world_id,
|
||||||
|
const std::string& origin_url);
|
||||||
|
void SetIsolatedWorldContentSecurityPolicy(
|
||||||
|
int world_id,
|
||||||
|
const std::string& security_policy);
|
||||||
|
void SetIsolatedWorldHumanReadableName(int world_id,
|
||||||
|
const std::string& name);
|
||||||
|
|
||||||
// Resource related methods
|
// Resource related methods
|
||||||
blink::WebCache::ResourceTypeStats GetResourceUsage(v8::Isolate* isolate);
|
blink::WebCache::ResourceTypeStats GetResourceUsage(v8::Isolate* isolate);
|
||||||
|
|
5
docs/api/structures/web-source.md
Normal file
5
docs/api/structures/web-source.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# WebSource Object
|
||||||
|
|
||||||
|
* `code` String
|
||||||
|
* `url` String (optional)
|
||||||
|
* `startLine` Integer (optional) - Default is 1.
|
|
@ -145,6 +145,37 @@ In the browser window some HTML APIs like `requestFullScreen` can only be
|
||||||
invoked by a gesture from the user. Setting `userGesture` to `true` will remove
|
invoked by a gesture from the user. Setting `userGesture` to `true` will remove
|
||||||
this limitation.
|
this limitation.
|
||||||
|
|
||||||
|
### `webFrame.executeJavaScriptInIsolatedWorld(worldId, scripts[, userGesture, callback])`
|
||||||
|
|
||||||
|
* `worldId` Integer
|
||||||
|
* `scripts` [WebSource[]](structures/web-source.md)
|
||||||
|
* `userGesture` Boolean (optional) - Default is `false`.
|
||||||
|
* `callback` Function (optional) - Called after script has been executed.
|
||||||
|
* `result` Any
|
||||||
|
|
||||||
|
Work like `executeJavaScript` but evaluates `scripts` in isolated context.
|
||||||
|
|
||||||
|
### `webFrame.setIsolatedWorldContentSecurityPolicy(worldId, csp)`
|
||||||
|
|
||||||
|
* `worldId` Integer
|
||||||
|
* `csp` String
|
||||||
|
|
||||||
|
Set the content security policy of the isolated world.
|
||||||
|
|
||||||
|
### `webFrame.setIsolatedWorldHumanReadableName(worldId, name)`
|
||||||
|
|
||||||
|
* `worldId` Integer
|
||||||
|
* `name` String
|
||||||
|
|
||||||
|
Set the name of the isolated world. Useful in devtools.
|
||||||
|
|
||||||
|
### `webFrame.setIsolatedWorldSecurityOrigin(worldId, securityOrigin)`
|
||||||
|
|
||||||
|
* `worldId` Integer
|
||||||
|
* `securityOrigin` String
|
||||||
|
|
||||||
|
Set the security origin of the isolated world.
|
||||||
|
|
||||||
### `webFrame.getResourceUsage()`
|
### `webFrame.getResourceUsage()`
|
||||||
|
|
||||||
Returns `Object`:
|
Returns `Object`:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue