2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 09:46:58 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/renderer/atom_renderer_client.h"
|
2013-04-12 09:46:58 +08:00
|
|
|
|
2014-03-16 09:13:06 +08:00
|
|
|
#include <string>
|
2015-12-16 11:06:38 +01:00
|
|
|
#include <vector>
|
2014-01-09 22:13:06 +08:00
|
|
|
|
2015-10-06 21:03:14 +05:30
|
|
|
#include "atom/common/api/api_messages.h"
|
2015-01-23 20:43:38 -08:00
|
|
|
#include "atom/common/api/atom_bindings.h"
|
2016-02-02 23:47:19 +08:00
|
|
|
#include "atom/common/api/event_emitter_caller.h"
|
2016-04-02 20:35:57 +09:00
|
|
|
#include "atom/common/color_util.h"
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/common/node_bindings.h"
|
2015-09-07 11:12:42 +08:00
|
|
|
#include "atom/common/node_includes.h"
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/common/options_switches.h"
|
|
|
|
#include "atom/renderer/atom_render_view_observer.h"
|
2015-03-13 16:33:06 -07:00
|
|
|
#include "atom/renderer/guest_view_container.h"
|
2015-09-07 11:12:42 +08:00
|
|
|
#include "atom/renderer/node_array_buffer_bridge.h"
|
2015-05-22 15:01:13 +08:00
|
|
|
#include "base/command_line.h"
|
2015-12-16 11:06:38 +01:00
|
|
|
#include "chrome/renderer/media/chrome_key_systems.h"
|
2015-04-28 21:15:58 +05:30
|
|
|
#include "chrome/renderer/pepper/pepper_helper.h"
|
2014-08-21 16:14:22 +08:00
|
|
|
#include "chrome/renderer/printing/print_web_view_helper.h"
|
2014-10-07 21:27:15 +08:00
|
|
|
#include "chrome/renderer/tts_dispatcher.h"
|
2014-10-26 14:05:54 +08:00
|
|
|
#include "content/public/common/content_constants.h"
|
2015-05-22 15:24:34 +08:00
|
|
|
#include "content/public/renderer/render_frame.h"
|
2015-05-22 15:01:13 +08:00
|
|
|
#include "content/public/renderer/render_frame_observer.h"
|
2014-09-01 18:43:43 +08:00
|
|
|
#include "content/public/renderer/render_thread.h"
|
2016-03-14 19:24:04 +05:30
|
|
|
#include "content/public/renderer/render_view.h"
|
2015-10-06 21:03:14 +05:30
|
|
|
#include "ipc/ipc_message_macros.h"
|
2014-10-22 23:36:31 +08:00
|
|
|
#include "third_party/WebKit/public/web/WebCustomElement.h"
|
2015-05-22 15:24:34 +08:00
|
|
|
#include "third_party/WebKit/public/web/WebLocalFrame.h"
|
2014-10-26 14:05:54 +08:00
|
|
|
#include "third_party/WebKit/public/web/WebPluginParams.h"
|
2014-09-01 18:43:43 +08:00
|
|
|
#include "third_party/WebKit/public/web/WebKit.h"
|
2015-12-09 00:51:46 +05:30
|
|
|
#include "third_party/WebKit/public/web/WebSecurityPolicy.h"
|
2014-09-09 11:08:30 +08:00
|
|
|
#include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
|
2015-10-06 21:03:14 +05:30
|
|
|
#include "third_party/WebKit/public/web/WebView.h"
|
2013-12-11 15:48:19 +08:00
|
|
|
|
2016-05-06 14:57:43 +09:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
#include "base/mac/mac_util.h"
|
|
|
|
#include "base/strings/sys_string_conversions.h"
|
|
|
|
#endif
|
|
|
|
|
2015-07-09 16:48:02 -07:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include <shlobj.h>
|
|
|
|
#endif
|
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
namespace atom {
|
|
|
|
|
2014-01-31 10:41:20 +08:00
|
|
|
namespace {
|
|
|
|
|
2015-05-22 15:01:13 +08: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 23:44:33 +08:00
|
|
|
world_id_(-1),
|
2015-05-22 15:01:13 +08:00
|
|
|
renderer_client_(renderer_client) {}
|
|
|
|
|
|
|
|
// content::RenderFrameObserver:
|
2015-05-22 15:24:34 +08:00
|
|
|
void DidCreateScriptContext(v8::Handle<v8::Context> context,
|
|
|
|
int extension_group,
|
2016-02-02 23:38:49 +08:00
|
|
|
int world_id) override {
|
2016-02-03 00:05:27 +08:00
|
|
|
if (world_id_ != -1 && world_id_ != world_id)
|
2016-02-02 23:44:33 +08:00
|
|
|
return;
|
|
|
|
world_id_ = world_id;
|
|
|
|
renderer_client_->DidCreateScriptContext(context);
|
2015-05-22 15:01:13 +08:00
|
|
|
}
|
2016-02-02 23:38:49 +08:00
|
|
|
void WillReleaseScriptContext(v8::Local<v8::Context> context,
|
|
|
|
int world_id) override {
|
2016-02-02 23:44:33 +08:00
|
|
|
if (world_id_ != world_id)
|
|
|
|
return;
|
2016-02-02 23:38:49 +08:00
|
|
|
renderer_client_->WillReleaseScriptContext(context);
|
|
|
|
}
|
|
|
|
|
2015-05-22 15:01:13 +08:00
|
|
|
private:
|
2016-02-02 23:44:33 +08:00
|
|
|
int world_id_;
|
2015-05-22 15:01:13 +08:00
|
|
|
AtomRendererClient* renderer_client_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomRenderFrameObserver);
|
|
|
|
};
|
|
|
|
|
2014-01-31 10:41:20 +08:00
|
|
|
} // namespace
|
|
|
|
|
2013-04-20 11:13:06 +08:00
|
|
|
AtomRendererClient::AtomRendererClient()
|
2014-10-25 18:51:26 +08:00
|
|
|
: node_bindings_(NodeBindings::Create(false)),
|
2015-08-31 21:59:13 +08:00
|
|
|
atom_bindings_(new AtomBindings) {
|
2013-04-12 09:46:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
AtomRendererClient::~AtomRendererClient() {
|
|
|
|
}
|
|
|
|
|
2014-09-01 18:43:43 +08:00
|
|
|
void AtomRendererClient::WebKitInitialized() {
|
2014-10-22 23:36:31 +08:00
|
|
|
blink::WebCustomElement::addEmbedderCustomElementName("webview");
|
|
|
|
blink::WebCustomElement::addEmbedderCustomElementName("browserplugin");
|
|
|
|
|
2015-09-07 11:12:42 +08:00
|
|
|
OverrideNodeArrayBuffer();
|
2013-04-20 11:13:06 +08:00
|
|
|
}
|
|
|
|
|
2014-09-01 18:43:43 +08:00
|
|
|
void AtomRendererClient::RenderThreadStarted() {
|
|
|
|
content::RenderThread::Get()->AddObserver(this);
|
2015-07-14 03:23:19 +08:00
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
2016-05-06 14:57:43 +09:00
|
|
|
// Set ApplicationUserModelID in renderer process.
|
2015-07-14 03:23:19 +08:00
|
|
|
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
|
2016-05-06 14:57:43 +09:00
|
|
|
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
// Disable rubber banding by default.
|
|
|
|
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
if (!command_line->HasSwitch(switches::kScrollBounce)) {
|
|
|
|
base::ScopedCFTypeRef<CFStringRef> key(
|
|
|
|
base::SysUTF8ToCFStringRef("NSScrollViewRubberbanding"));
|
|
|
|
base::ScopedCFTypeRef<CFStringRef> value(
|
|
|
|
base::SysUTF8ToCFStringRef("false"));
|
|
|
|
CFPreferencesSetAppValue(key, value, kCFPreferencesCurrentApplication);
|
|
|
|
CFPreferencesAppSynchronize(kCFPreferencesCurrentApplication);
|
|
|
|
}
|
|
|
|
#endif
|
2014-09-01 18:43:43 +08:00
|
|
|
}
|
|
|
|
|
2015-04-28 21:15:58 +05:30
|
|
|
void AtomRendererClient::RenderFrameCreated(
|
|
|
|
content::RenderFrame* render_frame) {
|
|
|
|
new PepperHelper(render_frame);
|
2015-12-09 00:51:46 +05:30
|
|
|
|
2016-02-03 00:05:27 +08:00
|
|
|
// Allow file scheme to handle service worker by default.
|
|
|
|
blink::WebSecurityPolicy::registerURLSchemeAsAllowingServiceWorkers("file");
|
|
|
|
|
2016-02-02 23:44:33 +08:00
|
|
|
// Only insert node integration for the main frame.
|
|
|
|
if (!render_frame->IsMainFrame())
|
|
|
|
return;
|
|
|
|
|
|
|
|
new AtomRenderFrameObserver(render_frame, this);
|
2015-04-28 21:15:58 +05:30
|
|
|
}
|
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
void AtomRendererClient::RenderViewCreated(content::RenderView* render_view) {
|
2016-04-02 20:35:57 +09: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 19:24:04 +05:30
|
|
|
|
2014-08-21 16:14:22 +08:00
|
|
|
new printing::PrintWebViewHelper(render_view);
|
2013-04-20 11:13:06 +08:00
|
|
|
new AtomRenderViewObserver(render_view, this);
|
2013-04-12 09:46:58 +08:00
|
|
|
}
|
|
|
|
|
2014-10-07 21:18:44 +08:00
|
|
|
blink::WebSpeechSynthesizer* AtomRendererClient::OverrideSpeechSynthesizer(
|
|
|
|
blink::WebSpeechSynthesizerClient* client) {
|
2014-10-07 21:27:15 +08:00
|
|
|
return new TtsDispatcher(client);
|
2014-10-07 21:18:44 +08:00
|
|
|
}
|
|
|
|
|
2014-10-26 14:05:54 +08: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 15:24:34 +08:00
|
|
|
void AtomRendererClient::DidCreateScriptContext(
|
|
|
|
v8::Handle<v8::Context> context) {
|
2016-03-27 18:09:21 +09: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 22:08:45 +08:00
|
|
|
|
|
|
|
// Setup node environment for each window.
|
2014-01-09 21:35:29 +08:00
|
|
|
node::Environment* env = node_bindings_->CreateEnvironment(context);
|
2013-12-23 22:08:45 +08:00
|
|
|
|
|
|
|
// Add atom-shell extended APIs.
|
2015-01-21 15:02:09 -08:00
|
|
|
atom_bindings_->BindTo(env->isolate(), env->process_object());
|
2014-01-09 21:35:29 +08:00
|
|
|
|
2016-03-27 19:21:12 +09:00
|
|
|
// Load everything.
|
|
|
|
node_bindings_->LoadEnvironment(env);
|
|
|
|
|
2016-03-27 18:09:21 +09:00
|
|
|
if (first_time) {
|
|
|
|
// Make uv loop being wrapped by window context.
|
2014-01-09 22:13:06 +08:00
|
|
|
node_bindings_->set_uv_env(env);
|
2015-01-21 16:40:19 -08:00
|
|
|
|
2016-03-27 18:09:21 +09:00
|
|
|
// Give the node loop a run to make sure everything is ready.
|
|
|
|
node_bindings_->RunMessageLoop();
|
|
|
|
}
|
2015-01-21 15:35:43 -08:00
|
|
|
}
|
|
|
|
|
2016-02-02 23:38:49 +08:00
|
|
|
void AtomRendererClient::WillReleaseScriptContext(
|
|
|
|
v8::Handle<v8::Context> context) {
|
2016-02-02 23:47:19 +08:00
|
|
|
node::Environment* env = node::Environment::GetCurrent(context);
|
|
|
|
mate::EmitEvent(env->isolate(), env->process_object(), "exit");
|
2016-02-02 23:38:49 +08:00
|
|
|
}
|
|
|
|
|
2015-09-02 15:16:49 +08:00
|
|
|
bool AtomRendererClient::ShouldFork(blink::WebLocalFrame* frame,
|
2014-01-14 16:03:01 +08: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 14:45:30 +08: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 19:20:09 +05:30
|
|
|
*send_referrer = true;
|
2016-01-29 11:52:31 +08:00
|
|
|
return http_method == "GET";
|
2014-01-14 16:03:01 +08:00
|
|
|
}
|
|
|
|
|
2015-03-13 16:33:06 -07: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 11:06:38 +01:00
|
|
|
void AtomRendererClient::AddKeySystems(
|
2015-12-29 16:41:44 +08:00
|
|
|
std::vector<media::KeySystemInfo>* key_systems) {
|
2015-12-16 11:06:38 +01:00
|
|
|
AddChromeKeySystems(key_systems);
|
|
|
|
}
|
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
} // namespace atom
|