2014-10-31 18:17:05 +00:00
|
|
|
// 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-04-12 01:46:58 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/renderer/atom_renderer_client.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2014-03-16 01:13:06 +00:00
|
|
|
#include <string>
|
2015-12-16 10:06:38 +00:00
|
|
|
#include <vector>
|
2014-01-09 14:13:06 +00:00
|
|
|
|
2015-10-06 15:33:14 +00:00
|
|
|
#include "atom/common/api/api_messages.h"
|
2015-01-24 04:43:38 +00:00
|
|
|
#include "atom/common/api/atom_bindings.h"
|
2016-02-02 15:47:19 +00:00
|
|
|
#include "atom/common/api/event_emitter_caller.h"
|
2016-04-02 11:35:57 +00:00
|
|
|
#include "atom/common/color_util.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/common/node_bindings.h"
|
2015-09-07 03:12:42 +00:00
|
|
|
#include "atom/common/node_includes.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/common/options_switches.h"
|
|
|
|
#include "atom/renderer/atom_render_view_observer.h"
|
2015-03-13 23:33:06 +00:00
|
|
|
#include "atom/renderer/guest_view_container.h"
|
2015-09-07 03:12:42 +00:00
|
|
|
#include "atom/renderer/node_array_buffer_bridge.h"
|
2015-05-22 07:01:13 +00:00
|
|
|
#include "base/command_line.h"
|
2015-12-16 10:06:38 +00:00
|
|
|
#include "chrome/renderer/media/chrome_key_systems.h"
|
2015-04-28 15:45:58 +00:00
|
|
|
#include "chrome/renderer/pepper/pepper_helper.h"
|
2014-08-21 08:14:22 +00:00
|
|
|
#include "chrome/renderer/printing/print_web_view_helper.h"
|
2014-10-07 13:27:15 +00:00
|
|
|
#include "chrome/renderer/tts_dispatcher.h"
|
2014-10-26 06:05:54 +00:00
|
|
|
#include "content/public/common/content_constants.h"
|
2015-05-22 07:24:34 +00:00
|
|
|
#include "content/public/renderer/render_frame.h"
|
2015-05-22 07:01:13 +00:00
|
|
|
#include "content/public/renderer/render_frame_observer.h"
|
2014-09-01 10:43:43 +00:00
|
|
|
#include "content/public/renderer/render_thread.h"
|
2016-03-14 13:54:04 +00:00
|
|
|
#include "content/public/renderer/render_view.h"
|
2015-10-06 15:33:14 +00:00
|
|
|
#include "ipc/ipc_message_macros.h"
|
2014-10-22 15:36:31 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebCustomElement.h"
|
2015-05-22 07:24:34 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebLocalFrame.h"
|
2014-10-26 06:05:54 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebPluginParams.h"
|
2014-09-01 10:43:43 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebKit.h"
|
2015-12-08 19:21:46 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebSecurityPolicy.h"
|
2014-09-09 03:08:30 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
|
2015-10-06 15:33:14 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebView.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2015-07-09 23:48:02 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include <shlobj.h>
|
|
|
|
#endif
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2014-01-31 02:41:20 +00:00
|
|
|
namespace {
|
|
|
|
|
2015-05-22 07:01:13 +00:00
|
|
|
// Helper class to forward the messages to the client.
|
|
|
|
class AtomRenderFrameObserver : public content::RenderFrameObserver {
|
|
|
|
public:
|
|
|
|
AtomRenderFrameObserver(content::RenderFrame* frame,
|
|
|
|
AtomRendererClient* renderer_client)
|
|
|
|
: content::RenderFrameObserver(frame),
|
2016-02-02 15:44:33 +00:00
|
|
|
world_id_(-1),
|
2015-05-22 07:01:13 +00:00
|
|
|
renderer_client_(renderer_client) {}
|
|
|
|
|
|
|
|
// content::RenderFrameObserver:
|
2015-05-22 07:24:34 +00:00
|
|
|
void DidCreateScriptContext(v8::Handle<v8::Context> context,
|
|
|
|
int extension_group,
|
2016-02-02 15:38:49 +00:00
|
|
|
int world_id) override {
|
2016-02-02 16:05:27 +00:00
|
|
|
if (world_id_ != -1 && world_id_ != world_id)
|
2016-02-02 15:44:33 +00:00
|
|
|
return;
|
|
|
|
world_id_ = world_id;
|
|
|
|
renderer_client_->DidCreateScriptContext(context);
|
2015-05-22 07:01:13 +00:00
|
|
|
}
|
2016-02-02 15:38:49 +00:00
|
|
|
void WillReleaseScriptContext(v8::Local<v8::Context> context,
|
|
|
|
int world_id) override {
|
2016-02-02 15:44:33 +00:00
|
|
|
if (world_id_ != world_id)
|
|
|
|
return;
|
2016-02-02 15:38:49 +00:00
|
|
|
renderer_client_->WillReleaseScriptContext(context);
|
|
|
|
}
|
|
|
|
|
2015-05-22 07:01:13 +00:00
|
|
|
private:
|
2016-02-02 15:44:33 +00:00
|
|
|
int world_id_;
|
2015-05-22 07:01:13 +00:00
|
|
|
AtomRendererClient* renderer_client_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomRenderFrameObserver);
|
|
|
|
};
|
|
|
|
|
2014-01-31 02:41:20 +00:00
|
|
|
} // namespace
|
|
|
|
|
2013-04-20 03:13:06 +00:00
|
|
|
AtomRendererClient::AtomRendererClient()
|
2014-10-25 10:51:26 +00:00
|
|
|
: node_bindings_(NodeBindings::Create(false)),
|
2015-08-31 13:59:13 +00:00
|
|
|
atom_bindings_(new AtomBindings) {
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtomRendererClient::~AtomRendererClient() {
|
|
|
|
}
|
|
|
|
|
2014-09-01 10:43:43 +00:00
|
|
|
void AtomRendererClient::WebKitInitialized() {
|
2014-10-22 15:36:31 +00:00
|
|
|
blink::WebCustomElement::addEmbedderCustomElementName("webview");
|
|
|
|
blink::WebCustomElement::addEmbedderCustomElementName("browserplugin");
|
|
|
|
|
2015-09-07 03:12:42 +00:00
|
|
|
OverrideNodeArrayBuffer();
|
2013-04-20 03:13:06 +00:00
|
|
|
}
|
|
|
|
|
2014-09-01 10:43:43 +00:00
|
|
|
void AtomRendererClient::RenderThreadStarted() {
|
|
|
|
content::RenderThread::Get()->AddObserver(this);
|
2015-07-13 19:23:19 +00:00
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
base::string16 app_id =
|
|
|
|
command_line->GetSwitchValueNative(switches::kAppUserModelId);
|
|
|
|
if (!app_id.empty()) {
|
|
|
|
SetCurrentProcessExplicitAppUserModelID(app_id.c_str());
|
|
|
|
}
|
|
|
|
#endif
|
2014-09-01 10:43:43 +00:00
|
|
|
}
|
|
|
|
|
2015-04-28 15:45:58 +00:00
|
|
|
void AtomRendererClient::RenderFrameCreated(
|
|
|
|
content::RenderFrame* render_frame) {
|
|
|
|
new PepperHelper(render_frame);
|
2015-12-08 19:21:46 +00:00
|
|
|
|
2016-02-02 16:05:27 +00:00
|
|
|
// Allow file scheme to handle service worker by default.
|
|
|
|
blink::WebSecurityPolicy::registerURLSchemeAsAllowingServiceWorkers("file");
|
|
|
|
|
2016-02-02 15:44:33 +00:00
|
|
|
// Only insert node integration for the main frame.
|
|
|
|
if (!render_frame->IsMainFrame())
|
|
|
|
return;
|
|
|
|
|
|
|
|
new AtomRenderFrameObserver(render_frame, this);
|
2015-04-28 15:45:58 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
void AtomRendererClient::RenderViewCreated(content::RenderView* render_view) {
|
2016-04-02 11:35:57 +00:00
|
|
|
base::CommandLine* cmd = base::CommandLine::ForCurrentProcess();
|
|
|
|
if (cmd->HasSwitch(switches::kGuestInstanceID)) { // webview.
|
|
|
|
// Set transparent background.
|
|
|
|
render_view->GetWebView()->setBaseBackgroundColor(SK_ColorTRANSPARENT);
|
|
|
|
} else { // normal window.
|
|
|
|
// If backgroundColor is specified then use it.
|
|
|
|
std::string name = cmd->GetSwitchValueASCII(switches::kBackgroundColor);
|
|
|
|
// Otherwise use white background.
|
|
|
|
SkColor color = name.empty() ? SK_ColorWHITE : ParseHexColor(name);
|
|
|
|
render_view->GetWebView()->setBaseBackgroundColor(color);
|
|
|
|
}
|
2016-03-14 13:54:04 +00:00
|
|
|
|
2014-08-21 08:14:22 +00:00
|
|
|
new printing::PrintWebViewHelper(render_view);
|
2013-04-20 03:13:06 +00:00
|
|
|
new AtomRenderViewObserver(render_view, this);
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
2014-10-07 13:18:44 +00:00
|
|
|
blink::WebSpeechSynthesizer* AtomRendererClient::OverrideSpeechSynthesizer(
|
|
|
|
blink::WebSpeechSynthesizerClient* client) {
|
2014-10-07 13:27:15 +00:00
|
|
|
return new TtsDispatcher(client);
|
2014-10-07 13:18:44 +00:00
|
|
|
}
|
|
|
|
|
2014-10-26 06:05:54 +00:00
|
|
|
bool AtomRendererClient::OverrideCreatePlugin(
|
|
|
|
content::RenderFrame* render_frame,
|
|
|
|
blink::WebLocalFrame* frame,
|
|
|
|
const blink::WebPluginParams& params,
|
|
|
|
blink::WebPlugin** plugin) {
|
|
|
|
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
if (params.mimeType.utf8() == content::kBrowserPluginMimeType ||
|
|
|
|
command_line->HasSwitch(switches::kEnablePlugins))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*plugin = nullptr;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-22 07:24:34 +00:00
|
|
|
void AtomRendererClient::DidCreateScriptContext(
|
|
|
|
v8::Handle<v8::Context> context) {
|
2016-03-27 09:09:21 +00:00
|
|
|
// Whether the node binding has been initialized.
|
|
|
|
bool first_time = node_bindings_->uv_env() == nullptr;
|
|
|
|
|
|
|
|
// Prepare the node bindings.
|
|
|
|
if (first_time) {
|
|
|
|
node_bindings_->Initialize();
|
|
|
|
node_bindings_->PrepareMessageLoop();
|
|
|
|
}
|
2013-12-23 14:08:45 +00:00
|
|
|
|
|
|
|
// Setup node environment for each window.
|
2014-01-09 13:35:29 +00:00
|
|
|
node::Environment* env = node_bindings_->CreateEnvironment(context);
|
2013-12-23 14:08:45 +00:00
|
|
|
|
|
|
|
// Add atom-shell extended APIs.
|
2015-01-21 23:02:09 +00:00
|
|
|
atom_bindings_->BindTo(env->isolate(), env->process_object());
|
2014-01-09 13:35:29 +00:00
|
|
|
|
2016-03-27 10:21:12 +00:00
|
|
|
// Load everything.
|
|
|
|
node_bindings_->LoadEnvironment(env);
|
|
|
|
|
2016-03-27 09:09:21 +00:00
|
|
|
if (first_time) {
|
|
|
|
// Make uv loop being wrapped by window context.
|
2014-01-09 14:13:06 +00:00
|
|
|
node_bindings_->set_uv_env(env);
|
2015-01-22 00:40:19 +00:00
|
|
|
|
2016-03-27 09:09:21 +00:00
|
|
|
// Give the node loop a run to make sure everything is ready.
|
|
|
|
node_bindings_->RunMessageLoop();
|
|
|
|
}
|
2015-01-21 23:35:43 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 15:38:49 +00:00
|
|
|
void AtomRendererClient::WillReleaseScriptContext(
|
|
|
|
v8::Handle<v8::Context> context) {
|
2016-02-02 15:47:19 +00:00
|
|
|
node::Environment* env = node::Environment::GetCurrent(context);
|
|
|
|
mate::EmitEvent(env->isolate(), env->process_object(), "exit");
|
2016-02-02 15:38:49 +00:00
|
|
|
}
|
|
|
|
|
2015-09-02 07:16:49 +00:00
|
|
|
bool AtomRendererClient::ShouldFork(blink::WebLocalFrame* frame,
|
2014-01-14 08:03:01 +00:00
|
|
|
const GURL& url,
|
|
|
|
const std::string& http_method,
|
|
|
|
bool is_initial_navigation,
|
|
|
|
bool is_server_redirect,
|
|
|
|
bool* send_referrer) {
|
|
|
|
// Handle all the navigations and reloads in browser.
|
2014-05-13 06:45:30 +00:00
|
|
|
// FIXME We only support GET here because http method will be ignored when
|
|
|
|
// the OpenURLFromTab is triggered, which means form posting would not work,
|
|
|
|
// we should solve this by patching Chromium in future.
|
2015-08-29 13:50:09 +00:00
|
|
|
*send_referrer = true;
|
2016-01-29 03:52:31 +00:00
|
|
|
return http_method == "GET";
|
2014-01-14 08:03:01 +00:00
|
|
|
}
|
|
|
|
|
2015-03-13 23:33:06 +00:00
|
|
|
content::BrowserPluginDelegate* AtomRendererClient::CreateBrowserPluginDelegate(
|
|
|
|
content::RenderFrame* render_frame,
|
|
|
|
const std::string& mime_type,
|
|
|
|
const GURL& original_url) {
|
|
|
|
if (mime_type == content::kBrowserPluginMimeType) {
|
|
|
|
return new GuestViewContainer(render_frame);
|
|
|
|
} else {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-16 10:06:38 +00:00
|
|
|
void AtomRendererClient::AddKeySystems(
|
2015-12-29 08:41:44 +00:00
|
|
|
std::vector<media::KeySystemInfo>* key_systems) {
|
2015-12-16 10:06:38 +00:00
|
|
|
AddChromeKeySystems(key_systems);
|
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
} // namespace atom
|