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"
|
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"
|
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),
|
|
|
|
renderer_client_(renderer_client) {}
|
|
|
|
|
|
|
|
// content::RenderFrameObserver:
|
2015-05-22 07:24:34 +00:00
|
|
|
void DidCreateScriptContext(v8::Handle<v8::Context> context,
|
|
|
|
int extension_group,
|
2015-05-22 07:01:13 +00:00
|
|
|
int world_id) {
|
2015-05-22 07:24:34 +00:00
|
|
|
renderer_client_->DidCreateScriptContext(
|
|
|
|
render_frame()->GetWebFrame(), context);
|
2015-05-22 07:01:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
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();
|
2015-08-11 04:31:41 +00:00
|
|
|
|
2013-04-20 03:13:06 +00:00
|
|
|
node_bindings_->Initialize();
|
2013-12-15 06:20:28 +00:00
|
|
|
node_bindings_->PrepareMessageLoop();
|
2013-04-20 03:13:06 +00:00
|
|
|
|
2013-12-15 06:20:28 +00:00
|
|
|
DCHECK(!global_env);
|
2013-04-20 03:13:06 +00:00
|
|
|
|
2013-12-15 06:20:28 +00:00
|
|
|
// Create a default empty environment which would be used when we need to
|
|
|
|
// run V8 code out of a window context (like running a uv callback).
|
2014-09-01 10:43:43 +00:00
|
|
|
v8::Isolate* isolate = blink::mainThreadIsolate();
|
2014-06-28 14:33:00 +00:00
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
v8::Local<v8::Context> context = v8::Context::New(isolate);
|
2014-12-07 21:09:50 +00:00
|
|
|
global_env = node::Environment::New(context, uv_default_loop());
|
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-05-22 07:59:06 +00:00
|
|
|
new AtomRenderFrameObserver(render_frame, this);
|
2015-12-08 19:21:46 +00:00
|
|
|
|
|
|
|
// Allow file scheme to handle service worker by default.
|
|
|
|
blink::WebSecurityPolicy::registerURLSchemeAsAllowingServiceWorkers("file");
|
2015-04-28 15:45:58 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
void AtomRendererClient::RenderViewCreated(content::RenderView* render_view) {
|
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(
|
|
|
|
blink::WebFrame* frame,
|
|
|
|
v8::Handle<v8::Context> context) {
|
2015-08-31 13:59:13 +00:00
|
|
|
// Only insert node integration for the main frame.
|
|
|
|
if (frame->parent())
|
2015-08-31 13:38:18 +00:00
|
|
|
return;
|
2015-01-21 23:42:57 +00:00
|
|
|
|
2013-12-23 14:08:45 +00:00
|
|
|
// Give the node loop a run to make sure everything is ready.
|
|
|
|
node_bindings_->RunMessageLoop();
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
|
|
// Make uv loop being wrapped by window context.
|
2015-01-21 23:35:43 +00:00
|
|
|
if (node_bindings_->uv_env() == nullptr)
|
2014-01-09 14:13:06 +00:00
|
|
|
node_bindings_->set_uv_env(env);
|
2015-01-22 00:40:19 +00:00
|
|
|
|
|
|
|
// Load everything.
|
|
|
|
node_bindings_->LoadEnvironment(env);
|
2015-01-21 23:35:43 +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;
|
2015-12-24 20:49:56 +00:00
|
|
|
return http_method == "GET" && !is_server_redirect;
|
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
|