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/browser/atom_browser_client.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2015-08-04 09:13:05 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include <shlobj.h>
|
|
|
|
#endif
|
|
|
|
|
2016-03-31 14:21:18 +00:00
|
|
|
#include "atom/browser/api/atom_api_app.h"
|
2014-08-13 04:12:43 +00:00
|
|
|
#include "atom/browser/atom_access_token_store.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/atom_browser_context.h"
|
|
|
|
#include "atom/browser/atom_browser_main_parts.h"
|
2015-05-12 12:22:30 +00:00
|
|
|
#include "atom/browser/atom_quota_permission_context.h"
|
2015-09-30 02:56:42 +00:00
|
|
|
#include "atom/browser/atom_resource_dispatcher_host_delegate.h"
|
2014-10-08 03:55:14 +00:00
|
|
|
#include "atom/browser/atom_speech_recognition_manager_delegate.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/native_window.h"
|
2016-01-23 13:29:47 +00:00
|
|
|
#include "atom/browser/web_contents_permission_helper.h"
|
2015-09-04 17:12:32 +00:00
|
|
|
#include "atom/browser/web_contents_preferences.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/window_list.h"
|
2014-10-25 12:52:42 +00:00
|
|
|
#include "atom/common/options_switches.h"
|
2014-10-24 10:44:15 +00:00
|
|
|
#include "base/command_line.h"
|
2015-06-10 11:34:30 +00:00
|
|
|
#include "base/files/file_util.h"
|
2015-08-11 07:39:17 +00:00
|
|
|
#include "base/stl_util.h"
|
2015-06-12 07:58:23 +00:00
|
|
|
#include "base/strings/string_util.h"
|
2015-06-26 02:48:36 +00:00
|
|
|
#include "base/strings/string_number_conversions.h"
|
2014-08-22 07:03:39 +00:00
|
|
|
#include "chrome/browser/printing/printing_message_filter.h"
|
2015-04-28 15:45:58 +00:00
|
|
|
#include "chrome/browser/renderer_host/pepper/chrome_browser_pepper_host_factory.h"
|
2015-12-16 10:06:38 +00:00
|
|
|
#include "chrome/browser/renderer_host/pepper/widevine_cdm_message_filter.h"
|
2014-10-07 13:27:15 +00:00
|
|
|
#include "chrome/browser/speech/tts_message_filter.h"
|
2015-04-28 15:45:58 +00:00
|
|
|
#include "content/public/browser/browser_ppapi_host.h"
|
2015-06-03 20:57:06 +00:00
|
|
|
#include "content/public/browser/client_certificate_delegate.h"
|
2014-01-30 13:57:01 +00:00
|
|
|
#include "content/public/browser/render_process_host.h"
|
2014-03-06 03:07:04 +00:00
|
|
|
#include "content/public/browser/render_view_host.h"
|
2015-09-29 12:17:26 +00:00
|
|
|
#include "content/public/browser/resource_dispatcher_host.h"
|
2014-01-31 02:30:16 +00:00
|
|
|
#include "content/public/browser/site_instance.h"
|
2014-01-30 13:57:01 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
2014-10-11 11:11:34 +00:00
|
|
|
#include "content/public/common/web_preferences.h"
|
2015-06-03 20:57:06 +00:00
|
|
|
#include "net/cert/x509_certificate.h"
|
|
|
|
#include "net/ssl/ssl_cert_request_info.h"
|
2015-04-28 15:45:58 +00:00
|
|
|
#include "ppapi/host/ppapi_host.h"
|
2014-05-29 07:21:15 +00:00
|
|
|
#include "ui/base/l10n/l10n_util.h"
|
2015-09-04 17:33:13 +00:00
|
|
|
#include "v8/include/v8.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2014-01-31 02:30:16 +00:00
|
|
|
namespace {
|
|
|
|
|
2015-05-11 06:40:40 +00:00
|
|
|
// Next navigation should not restart renderer process.
|
|
|
|
bool g_suppress_renderer_process_restart = false;
|
|
|
|
|
2015-06-12 07:58:23 +00:00
|
|
|
// Custom schemes to be registered to standard.
|
|
|
|
std::string g_custom_schemes = "";
|
2015-12-08 19:21:46 +00:00
|
|
|
// Custom schemes to be registered to handle service worker.
|
|
|
|
std::string g_custom_service_worker_schemes = "";
|
2015-06-12 07:58:23 +00:00
|
|
|
|
2015-06-03 20:57:06 +00:00
|
|
|
scoped_refptr<net::X509Certificate> ImportCertFromFile(
|
|
|
|
const base::FilePath& path) {
|
2015-06-26 02:48:36 +00:00
|
|
|
if (path.empty())
|
|
|
|
return nullptr;
|
|
|
|
|
2015-06-03 20:57:06 +00:00
|
|
|
std::string cert_data;
|
|
|
|
if (!base::ReadFileToString(path, &cert_data))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
net::CertificateList certs =
|
|
|
|
net::X509Certificate::CreateCertificateListFromBytes(
|
|
|
|
cert_data.data(), cert_data.size(),
|
|
|
|
net::X509Certificate::FORMAT_AUTO);
|
|
|
|
|
|
|
|
if (certs.empty())
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
return certs[0];
|
|
|
|
}
|
|
|
|
|
2014-01-31 02:30:16 +00:00
|
|
|
} // namespace
|
|
|
|
|
2015-05-11 06:40:40 +00:00
|
|
|
// static
|
|
|
|
void AtomBrowserClient::SuppressRendererProcessRestartForOnce() {
|
|
|
|
g_suppress_renderer_process_restart = true;
|
|
|
|
}
|
|
|
|
|
2015-06-12 07:58:23 +00:00
|
|
|
void AtomBrowserClient::SetCustomSchemes(
|
|
|
|
const std::vector<std::string>& schemes) {
|
2015-12-07 11:56:23 +00:00
|
|
|
g_custom_schemes = base::JoinString(schemes, ",");
|
2015-06-12 07:58:23 +00:00
|
|
|
}
|
|
|
|
|
2015-12-08 19:21:46 +00:00
|
|
|
void AtomBrowserClient::SetCustomServiceWorkerSchemes(
|
|
|
|
const std::vector<std::string>& schemes) {
|
|
|
|
g_custom_service_worker_schemes = base::JoinString(schemes, ",");
|
|
|
|
}
|
|
|
|
|
2015-11-18 02:07:03 +00:00
|
|
|
AtomBrowserClient::AtomBrowserClient() : delegate_(nullptr) {
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtomBrowserClient::~AtomBrowserClient() {
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:19:43 +00:00
|
|
|
void AtomBrowserClient::RenderProcessWillLaunch(
|
|
|
|
content::RenderProcessHost* host) {
|
2015-06-26 02:48:36 +00:00
|
|
|
int process_id = host->GetID();
|
|
|
|
host->AddFilter(new printing::PrintingMessageFilter(process_id));
|
|
|
|
host->AddFilter(new TtsMessageFilter(process_id, host->GetBrowserContext()));
|
2015-12-16 10:06:38 +00:00
|
|
|
host->AddFilter(
|
2015-12-29 08:41:44 +00:00
|
|
|
new WidevineCdmMessageFilter(process_id, host->GetBrowserContext()));
|
2014-08-21 13:19:43 +00:00
|
|
|
}
|
|
|
|
|
2014-10-08 03:55:14 +00:00
|
|
|
content::SpeechRecognitionManagerDelegate*
|
2015-03-10 22:56:40 +00:00
|
|
|
AtomBrowserClient::CreateSpeechRecognitionManagerDelegate() {
|
2014-10-08 03:55:14 +00:00
|
|
|
return new AtomSpeechRecognitionManagerDelegate;
|
|
|
|
}
|
|
|
|
|
2014-08-13 04:12:43 +00:00
|
|
|
content::AccessTokenStore* AtomBrowserClient::CreateAccessTokenStore() {
|
|
|
|
return new AtomAccessTokenStore;
|
|
|
|
}
|
|
|
|
|
2013-04-12 12:48:02 +00:00
|
|
|
void AtomBrowserClient::OverrideWebkitPrefs(
|
2015-06-03 05:45:06 +00:00
|
|
|
content::RenderViewHost* host, content::WebPreferences* prefs) {
|
2013-04-12 12:48:02 +00:00
|
|
|
prefs->javascript_enabled = true;
|
2014-03-04 13:23:18 +00:00
|
|
|
prefs->web_security_enabled = true;
|
2013-04-12 12:48:02 +00:00
|
|
|
prefs->javascript_can_open_windows_automatically = true;
|
2014-10-26 06:05:54 +00:00
|
|
|
prefs->plugins_enabled = true;
|
2013-04-12 12:48:02 +00:00
|
|
|
prefs->dom_paste_enabled = true;
|
|
|
|
prefs->allow_scripts_to_close_windows = true;
|
|
|
|
prefs->javascript_can_access_clipboard = true;
|
|
|
|
prefs->local_storage_enabled = true;
|
|
|
|
prefs->databases_enabled = true;
|
|
|
|
prefs->application_cache_enabled = true;
|
|
|
|
prefs->allow_universal_access_from_file_urls = true;
|
|
|
|
prefs->allow_file_access_from_file_urls = true;
|
2014-05-06 08:43:58 +00:00
|
|
|
prefs->experimental_webgl_enabled = true;
|
2015-01-07 04:53:25 +00:00
|
|
|
prefs->allow_displaying_insecure_content = false;
|
|
|
|
prefs->allow_running_insecure_content = false;
|
2014-03-06 03:07:04 +00:00
|
|
|
|
2014-12-18 02:13:39 +00:00
|
|
|
// Custom preferences of guest page.
|
2015-06-03 06:17:11 +00:00
|
|
|
auto web_contents = content::WebContents::FromRenderViewHost(host);
|
2015-09-05 02:43:30 +00:00
|
|
|
WebContentsPreferences::OverrideWebkitPrefs(web_contents, prefs);
|
2013-04-12 12:48:02 +00:00
|
|
|
}
|
|
|
|
|
2014-05-29 07:21:15 +00:00
|
|
|
std::string AtomBrowserClient::GetApplicationLocale() {
|
|
|
|
return l10n_util::GetApplicationLocale("");
|
|
|
|
}
|
|
|
|
|
2015-04-26 04:28:27 +00:00
|
|
|
void AtomBrowserClient::OverrideSiteInstanceForNavigation(
|
|
|
|
content::BrowserContext* browser_context,
|
|
|
|
content::SiteInstance* current_instance,
|
|
|
|
const GURL& url,
|
|
|
|
content::SiteInstance** new_instance) {
|
2015-05-11 06:40:40 +00:00
|
|
|
if (g_suppress_renderer_process_restart) {
|
|
|
|
g_suppress_renderer_process_restart = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-03 05:45:06 +00:00
|
|
|
// Restart renderer process for all navigations except "javacript:" scheme.
|
|
|
|
if (url.SchemeIs(url::kJavaScriptScheme))
|
|
|
|
return;
|
|
|
|
|
|
|
|
*new_instance = content::SiteInstance::CreateForURL(browser_context, url);
|
2015-08-11 07:39:17 +00:00
|
|
|
|
|
|
|
// Remember the original renderer process of the pending renderer process.
|
|
|
|
auto current_process = current_instance->GetProcess();
|
|
|
|
auto pending_process = (*new_instance)->GetProcess();
|
|
|
|
pending_processes_[pending_process->GetID()] = current_process->GetID();
|
|
|
|
// Clear the entry in map when process ends.
|
|
|
|
current_process->AddObserver(this);
|
2015-04-26 04:28:27 +00:00
|
|
|
}
|
|
|
|
|
2014-01-30 13:57:01 +00:00
|
|
|
void AtomBrowserClient::AppendExtraCommandLineSwitches(
|
2014-06-28 14:33:00 +00:00
|
|
|
base::CommandLine* command_line,
|
2015-06-03 05:45:06 +00:00
|
|
|
int process_id) {
|
2015-04-26 09:26:25 +00:00
|
|
|
std::string process_type = command_line->GetSwitchValueASCII("type");
|
|
|
|
if (process_type != "renderer")
|
|
|
|
return;
|
|
|
|
|
2015-08-04 09:13:05 +00:00
|
|
|
// The registered standard schemes.
|
2015-06-19 13:53:29 +00:00
|
|
|
if (!g_custom_schemes.empty())
|
|
|
|
command_line->AppendSwitchASCII(switches::kRegisterStandardSchemes,
|
|
|
|
g_custom_schemes);
|
2015-06-12 07:58:23 +00:00
|
|
|
|
2015-12-08 19:21:46 +00:00
|
|
|
// The registered service worker schemes.
|
|
|
|
if (!g_custom_service_worker_schemes.empty())
|
|
|
|
command_line->AppendSwitchASCII(switches::kRegisterServiceWorkerSchemes,
|
|
|
|
g_custom_service_worker_schemes);
|
|
|
|
|
2015-08-04 09:13:05 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
// Append --app-user-model-id.
|
|
|
|
PWSTR current_app_id;
|
|
|
|
if (SUCCEEDED(GetCurrentProcessExplicitAppUserModelID(¤t_app_id))) {
|
|
|
|
command_line->AppendSwitchNative(switches::kAppUserModelId, current_app_id);
|
|
|
|
CoTaskMemFree(current_app_id);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-08-11 07:39:17 +00:00
|
|
|
// If the process is a pending process, we should use the old one.
|
|
|
|
if (ContainsKey(pending_processes_, process_id))
|
|
|
|
process_id = pending_processes_[process_id];
|
|
|
|
|
2015-12-17 17:57:05 +00:00
|
|
|
// Certain render process will be created with no associated render view,
|
|
|
|
// for example: ServiceWorker.
|
|
|
|
content::WebContents* web_contents =
|
2016-03-09 12:34:51 +00:00
|
|
|
WebContentsPreferences::GetWebContentsFromProcessID(process_id);
|
2015-09-05 02:43:30 +00:00
|
|
|
if (!web_contents)
|
|
|
|
return;
|
|
|
|
|
|
|
|
WebContentsPreferences::AppendExtraCommandLineSwitches(
|
|
|
|
web_contents, command_line);
|
2014-01-30 13:57:01 +00:00
|
|
|
}
|
|
|
|
|
2015-04-28 15:45:58 +00:00
|
|
|
void AtomBrowserClient::DidCreatePpapiPlugin(
|
2015-06-26 02:48:36 +00:00
|
|
|
content::BrowserPpapiHost* host) {
|
2015-07-02 17:54:43 +00:00
|
|
|
host->GetPpapiHost()->AddHostFactoryFilter(
|
|
|
|
make_scoped_ptr(new chrome::ChromeBrowserPepperHostFactory(host)));
|
2015-04-28 15:45:58 +00:00
|
|
|
}
|
|
|
|
|
2015-05-12 12:22:30 +00:00
|
|
|
content::QuotaPermissionContext*
|
|
|
|
AtomBrowserClient::CreateQuotaPermissionContext() {
|
|
|
|
return new AtomQuotaPermissionContext;
|
|
|
|
}
|
|
|
|
|
2015-11-18 02:39:25 +00:00
|
|
|
void AtomBrowserClient::AllowCertificateError(
|
2016-03-08 14:28:53 +00:00
|
|
|
content::WebContents* web_contents,
|
2015-11-18 02:39:25 +00:00
|
|
|
int cert_error,
|
|
|
|
const net::SSLInfo& ssl_info,
|
|
|
|
const GURL& request_url,
|
|
|
|
content::ResourceType resource_type,
|
|
|
|
bool overridable,
|
|
|
|
bool strict_enforcement,
|
|
|
|
bool expired_previous_decision,
|
|
|
|
const base::Callback<void(bool)>& callback,
|
|
|
|
content::CertificateRequestResultType* request) {
|
|
|
|
if (delegate_) {
|
|
|
|
delegate_->AllowCertificateError(
|
2016-03-08 14:28:53 +00:00
|
|
|
web_contents, cert_error, ssl_info, request_url,
|
2015-11-18 02:39:25 +00:00
|
|
|
resource_type, overridable, strict_enforcement,
|
|
|
|
expired_previous_decision, callback, request);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-03 20:57:06 +00:00
|
|
|
void AtomBrowserClient::SelectClientCertificate(
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
net::SSLCertRequestInfo* cert_request_info,
|
|
|
|
scoped_ptr<content::ClientCertificateDelegate> delegate) {
|
2015-06-26 02:48:36 +00:00
|
|
|
// --client-certificate=`path`
|
|
|
|
auto cmd = base::CommandLine::ForCurrentProcess();
|
|
|
|
if (cmd->HasSwitch(switches::kClientCertificate)) {
|
|
|
|
auto cert_path = cmd->GetSwitchValuePath(switches::kClientCertificate);
|
|
|
|
auto certificate = ImportCertFromFile(cert_path);
|
|
|
|
if (certificate.get())
|
|
|
|
delegate->ContinueWithCertificate(certificate.get());
|
|
|
|
return;
|
|
|
|
}
|
2015-06-03 20:57:06 +00:00
|
|
|
|
2015-11-18 02:07:03 +00:00
|
|
|
if (!cert_request_info->client_certs.empty() && delegate_) {
|
|
|
|
delegate_->SelectClientCertificate(
|
2016-03-08 14:28:53 +00:00
|
|
|
web_contents, cert_request_info, std::move(delegate));
|
2015-11-18 02:07:03 +00:00
|
|
|
}
|
2015-06-03 20:57:06 +00:00
|
|
|
}
|
|
|
|
|
2015-09-29 12:17:26 +00:00
|
|
|
void AtomBrowserClient::ResourceDispatcherHostCreated() {
|
|
|
|
resource_dispatcher_host_delegate_.reset(
|
|
|
|
new AtomResourceDispatcherHostDelegate);
|
|
|
|
content::ResourceDispatcherHost::Get()->SetDelegate(
|
|
|
|
resource_dispatcher_host_delegate_.get());
|
|
|
|
}
|
|
|
|
|
2016-03-31 00:58:23 +00:00
|
|
|
bool AtomBrowserClient::CanCreateWindow(
|
|
|
|
const GURL& opener_url,
|
|
|
|
const GURL& opener_top_level_frame_url,
|
|
|
|
const GURL& source_origin,
|
|
|
|
WindowContainerType container_type,
|
|
|
|
const std::string& frame_name,
|
|
|
|
const GURL& target_url,
|
|
|
|
const content::Referrer& referrer,
|
|
|
|
WindowOpenDisposition disposition,
|
|
|
|
const blink::WebWindowFeatures& features,
|
|
|
|
bool user_gesture,
|
|
|
|
bool opener_suppressed,
|
|
|
|
content::ResourceContext* context,
|
|
|
|
int render_process_id,
|
|
|
|
int opener_render_view_id,
|
|
|
|
int opener_render_frame_id,
|
|
|
|
bool* no_javascript_access) {
|
2016-03-31 14:21:18 +00:00
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
|
|
|
|
|
2016-03-31 00:58:23 +00:00
|
|
|
if (delegate_) {
|
2016-03-31 14:21:18 +00:00
|
|
|
content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE,
|
|
|
|
base::Bind(&api::App::OnCreateWindow,
|
|
|
|
base::Unretained(static_cast<api::App*>(delegate_)),
|
|
|
|
target_url,
|
|
|
|
frame_name,
|
|
|
|
disposition,
|
|
|
|
render_process_id,
|
|
|
|
opener_render_frame_id));
|
2016-03-31 00:58:23 +00:00
|
|
|
}
|
2016-03-31 14:21:18 +00:00
|
|
|
|
|
|
|
return false;
|
2016-03-31 00:58:23 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
brightray::BrowserMainParts* AtomBrowserClient::OverrideCreateBrowserMainParts(
|
|
|
|
const content::MainFunctionParams&) {
|
2014-06-30 06:16:16 +00:00
|
|
|
v8::V8::Initialize(); // Init V8 before creating main parts.
|
2013-04-12 01:46:58 +00:00
|
|
|
return new AtomBrowserMainParts;
|
|
|
|
}
|
|
|
|
|
2016-01-25 16:37:15 +00:00
|
|
|
void AtomBrowserClient::WebNotificationAllowed(
|
|
|
|
int render_process_id,
|
|
|
|
const base::Callback<void(bool)>& callback) {
|
2016-03-13 22:23:39 +00:00
|
|
|
content::WebContents* web_contents =
|
|
|
|
WebContentsPreferences::GetWebContentsFromProcessID(render_process_id);
|
2016-01-23 13:29:47 +00:00
|
|
|
if (!web_contents) {
|
2016-01-30 11:19:18 +00:00
|
|
|
callback.Run(false);
|
2016-01-23 13:29:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto permission_helper =
|
|
|
|
WebContentsPermissionHelper::FromWebContents(web_contents);
|
|
|
|
if (!permission_helper) {
|
2016-01-30 11:19:18 +00:00
|
|
|
callback.Run(false);
|
2016-01-23 13:29:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
permission_helper->RequestWebNotificationPermission(callback);
|
|
|
|
}
|
|
|
|
|
2015-08-11 07:39:17 +00:00
|
|
|
void AtomBrowserClient::RenderProcessHostDestroyed(
|
|
|
|
content::RenderProcessHost* host) {
|
|
|
|
int process_id = host->GetID();
|
|
|
|
for (const auto& entry : pending_processes_) {
|
|
|
|
if (entry.first == process_id || entry.second == process_id) {
|
|
|
|
pending_processes_.erase(entry.first);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
} // namespace atom
|