2016-03-25 19:57:17 +00:00
|
|
|
'use strict'
|
2016-01-13 03:55:49 +00:00
|
|
|
|
2016-03-25 19:57:17 +00:00
|
|
|
const events = require('events')
|
|
|
|
const path = require('path')
|
|
|
|
const Module = require('module')
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 19:10:12 +00:00
|
|
|
// We modified the original process.argv to let node.js load the
|
2017-03-08 09:58:54 +00:00
|
|
|
// init.js, we need to restore it here.
|
2016-03-25 19:57:17 +00:00
|
|
|
process.argv.splice(1, 1)
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Clear search paths.
|
2016-03-25 19:57:17 +00:00
|
|
|
require('../common/reset-search-paths')
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Import common settings.
|
2016-03-25 19:57:17 +00:00
|
|
|
require('../common/init')
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-03-25 19:57:17 +00:00
|
|
|
var globalPaths = Module.globalPaths
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Expose public APIs.
|
2016-03-25 19:57:17 +00:00
|
|
|
globalPaths.push(path.join(__dirname, 'api', 'exports'))
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// The global variable will be used by ipc for event dispatching
|
2016-03-25 19:57:17 +00:00
|
|
|
var v8Util = process.atomBinding('v8_util')
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-03-29 00:35:49 +00:00
|
|
|
v8Util.setHiddenValue(global, 'ipc', new events.EventEmitter())
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-13 03:55:49 +00:00
|
|
|
// Use electron module after everything is ready.
|
2018-08-28 18:38:11 +00:00
|
|
|
const {ipcRenderer} = require('electron')
|
2016-01-13 03:55:49 +00:00
|
|
|
|
2018-02-03 14:50:12 +00:00
|
|
|
const {
|
|
|
|
warnAboutNodeWithRemoteContent,
|
|
|
|
warnAboutDisabledWebSecurity,
|
|
|
|
warnAboutInsecureContentAllowed,
|
|
|
|
warnAboutExperimentalFeatures,
|
2018-05-23 21:01:34 +00:00
|
|
|
warnAboutEnableBlinkFeatures,
|
2018-02-03 14:50:12 +00:00
|
|
|
warnAboutInsecureResources,
|
|
|
|
warnAboutInsecureCSP,
|
|
|
|
warnAboutAllowedPopups,
|
|
|
|
shouldLogSecurityWarnings
|
|
|
|
} = require('./security-warnings')
|
|
|
|
|
2018-04-12 01:57:40 +00:00
|
|
|
require('./web-frame-init')()
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Process command line arguments.
|
2016-05-29 01:46:48 +00:00
|
|
|
let nodeIntegration = 'false'
|
2017-05-17 21:01:45 +00:00
|
|
|
let webviewTag = 'false'
|
2016-05-29 01:46:48 +00:00
|
|
|
let preloadScript = null
|
2017-12-05 06:59:15 +00:00
|
|
|
let preloadScripts = []
|
2016-05-29 01:46:48 +00:00
|
|
|
let isBackgroundPage = false
|
2017-04-04 00:36:01 +00:00
|
|
|
let appPath = null
|
2016-04-13 13:56:11 +00:00
|
|
|
for (let arg of process.argv) {
|
2016-01-12 02:40:23 +00:00
|
|
|
if (arg.indexOf('--guest-instance-id=') === 0) {
|
2016-01-14 18:35:29 +00:00
|
|
|
// This is a guest web view.
|
2016-03-25 19:57:17 +00:00
|
|
|
process.guestInstanceId = parseInt(arg.substr(arg.indexOf('=') + 1))
|
2016-01-12 02:40:23 +00:00
|
|
|
} else if (arg.indexOf('--opener-id=') === 0) {
|
2016-01-14 18:35:29 +00:00
|
|
|
// This is a guest BrowserWindow.
|
2016-03-25 19:57:17 +00:00
|
|
|
process.openerId = parseInt(arg.substr(arg.indexOf('=') + 1))
|
2016-01-12 02:40:23 +00:00
|
|
|
} else if (arg.indexOf('--node-integration=') === 0) {
|
2016-03-25 19:57:17 +00:00
|
|
|
nodeIntegration = arg.substr(arg.indexOf('=') + 1)
|
2016-01-12 02:40:23 +00:00
|
|
|
} else if (arg.indexOf('--preload=') === 0) {
|
2016-03-25 19:57:17 +00:00
|
|
|
preloadScript = arg.substr(arg.indexOf('=') + 1)
|
2016-05-29 01:46:48 +00:00
|
|
|
} else if (arg === '--background-page') {
|
|
|
|
isBackgroundPage = true
|
2017-04-04 00:36:01 +00:00
|
|
|
} else if (arg.indexOf('--app-path=') === 0) {
|
|
|
|
appPath = arg.substr(arg.indexOf('=') + 1)
|
2017-05-17 20:09:24 +00:00
|
|
|
} else if (arg.indexOf('--webview-tag=') === 0) {
|
|
|
|
webviewTag = arg.substr(arg.indexOf('=') + 1)
|
2017-12-05 06:59:15 +00:00
|
|
|
} else if (arg.indexOf('--preload-scripts') === 0) {
|
|
|
|
preloadScripts = arg.substr(arg.indexOf('=') + 1).split(path.delimiter)
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-05 06:59:15 +00:00
|
|
|
// The webContents preload script is loaded after the session preload scripts.
|
|
|
|
if (preloadScript) {
|
|
|
|
preloadScripts.push(preloadScript)
|
|
|
|
}
|
|
|
|
|
2016-03-30 21:07:27 +00:00
|
|
|
if (window.location.protocol === 'chrome-devtools:') {
|
2016-01-14 18:35:29 +00:00
|
|
|
// Override some inspector APIs.
|
2016-03-25 19:57:17 +00:00
|
|
|
require('./inspector')
|
2017-04-24 17:25:40 +00:00
|
|
|
nodeIntegration = 'false'
|
2017-01-18 13:58:20 +00:00
|
|
|
} else if (window.location.protocol === 'chrome-extension:') {
|
2016-01-14 18:35:29 +00:00
|
|
|
// Add implementations of chrome API.
|
2016-05-29 01:46:48 +00:00
|
|
|
require('./chrome-api').injectTo(window.location.hostname, isBackgroundPage, window)
|
2016-05-28 12:46:53 +00:00
|
|
|
nodeIntegration = 'false'
|
2017-02-04 14:49:01 +00:00
|
|
|
} else if (window.location.protocol === 'chrome:') {
|
|
|
|
// Disable node integration for chrome UI scheme.
|
|
|
|
nodeIntegration = 'false'
|
2016-01-12 02:40:23 +00:00
|
|
|
} else {
|
2016-01-14 18:35:29 +00:00
|
|
|
// Override default web functions.
|
2016-03-25 19:57:17 +00:00
|
|
|
require('./override')
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-05-27 01:29:57 +00:00
|
|
|
// Inject content scripts.
|
|
|
|
require('./content-scripts-injector')
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Load webview tag implementation.
|
2017-05-17 20:09:24 +00:00
|
|
|
if (webviewTag === 'true' && process.guestInstanceId == null) {
|
2016-03-25 19:57:17 +00:00
|
|
|
require('./web-view/web-view')
|
|
|
|
require('./web-view/web-view-attributes')
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-31 15:26:11 +00:00
|
|
|
if (nodeIntegration === 'true') {
|
2016-01-14 18:35:29 +00:00
|
|
|
// Export node bindings to global.
|
2016-03-25 19:57:17 +00:00
|
|
|
global.require = require
|
|
|
|
global.module = module
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Set the __filename to the path of html file if it is file: protocol.
|
2016-01-12 02:40:23 +00:00
|
|
|
if (window.location.protocol === 'file:') {
|
2018-03-15 02:45:13 +00:00
|
|
|
const location = window.location
|
|
|
|
let pathname = location.pathname
|
|
|
|
|
|
|
|
if (process.platform === 'win32') {
|
|
|
|
if (pathname[0] === '/') pathname = pathname.substr(1)
|
|
|
|
|
|
|
|
const isWindowsNetworkSharePath = location.hostname.length > 0 && globalPaths[0].startsWith('\\')
|
|
|
|
if (isWindowsNetworkSharePath) {
|
|
|
|
pathname = `//${location.host}/${pathname}`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-25 19:57:17 +00:00
|
|
|
global.__filename = path.normalize(decodeURIComponent(pathname))
|
|
|
|
global.__dirname = path.dirname(global.__filename)
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Set module's filename so relative require can work as expected.
|
2016-03-25 19:57:17 +00:00
|
|
|
module.filename = global.__filename
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Also search for module under the html file.
|
2016-03-25 19:57:17 +00:00
|
|
|
module.paths = module.paths.concat(Module._nodeModulePaths(global.__dirname))
|
2016-01-12 02:40:23 +00:00
|
|
|
} else {
|
2016-03-25 19:57:17 +00:00
|
|
|
global.__filename = __filename
|
|
|
|
global.__dirname = __dirname
|
2017-04-03 11:12:02 +00:00
|
|
|
|
2017-04-04 00:36:01 +00:00
|
|
|
if (appPath) {
|
2017-04-03 13:11:29 +00:00
|
|
|
// Search for module under the app directory
|
2017-04-04 00:36:01 +00:00
|
|
|
module.paths = module.paths.concat(Module._nodeModulePaths(appPath))
|
2017-04-03 13:11:29 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Redirect window.onerror to uncaughtException.
|
2016-03-25 19:57:17 +00:00
|
|
|
window.onerror = function (message, filename, lineno, colno, error) {
|
2016-01-12 02:40:23 +00:00
|
|
|
if (global.process.listeners('uncaughtException').length > 0) {
|
2016-03-25 19:57:17 +00:00
|
|
|
global.process.emit('uncaughtException', error)
|
|
|
|
return true
|
2016-01-12 02:40:23 +00:00
|
|
|
} else {
|
2016-03-25 19:57:17 +00:00
|
|
|
return false
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2016-03-25 19:57:17 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
} else {
|
2016-01-14 18:35:29 +00:00
|
|
|
// Delete Node's symbols after the Environment has been loaded.
|
2016-03-25 19:57:17 +00:00
|
|
|
process.once('loaded', function () {
|
|
|
|
delete global.process
|
2017-02-13 16:48:39 +00:00
|
|
|
delete global.Buffer
|
2016-03-25 19:57:17 +00:00
|
|
|
delete global.setImmediate
|
|
|
|
delete global.clearImmediate
|
2016-09-08 17:20:39 +00:00
|
|
|
delete global.global
|
2016-03-25 19:57:17 +00:00
|
|
|
})
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
|
2017-12-05 06:59:15 +00:00
|
|
|
// Load the preload scripts.
|
|
|
|
for (const preloadScript of preloadScripts) {
|
2016-01-12 02:40:23 +00:00
|
|
|
try {
|
2016-03-25 19:57:17 +00:00
|
|
|
require(preloadScript)
|
2016-01-14 22:20:06 +00:00
|
|
|
} catch (error) {
|
2016-05-18 22:02:42 +00:00
|
|
|
console.error('Unable to load preload script: ' + preloadScript)
|
|
|
|
console.error(error.stack || error.message)
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
}
|
2018-02-03 14:50:12 +00:00
|
|
|
|
|
|
|
// Warn about security issues
|
|
|
|
window.addEventListener('load', function loadHandler () {
|
|
|
|
if (shouldLogSecurityWarnings()) {
|
|
|
|
if (nodeIntegration === 'true') {
|
|
|
|
warnAboutNodeWithRemoteContent()
|
|
|
|
}
|
|
|
|
|
|
|
|
warnAboutDisabledWebSecurity()
|
|
|
|
warnAboutInsecureResources()
|
|
|
|
warnAboutInsecureContentAllowed()
|
|
|
|
warnAboutExperimentalFeatures()
|
2018-05-23 21:01:34 +00:00
|
|
|
warnAboutEnableBlinkFeatures()
|
2018-02-03 14:50:12 +00:00
|
|
|
warnAboutInsecureCSP()
|
|
|
|
warnAboutAllowedPopups()
|
|
|
|
}
|
|
|
|
|
|
|
|
window.removeEventListener('load', loadHandler)
|
|
|
|
})
|
2018-08-28 18:38:11 +00:00
|
|
|
|
|
|
|
// Report focus/blur events of webview to browser.
|
|
|
|
// Note that while Chromium content APIs have observer for focus/blur, they
|
|
|
|
// unfortunately do not work for webview.
|
|
|
|
if (process.guestInstanceId) {
|
|
|
|
window.addEventListener('focus', () => {
|
|
|
|
ipcRenderer.send('ELECTRON_GUEST_VIEW_MANAGER_FOCUS_CHANGE', true, process.guestInstanceId)
|
|
|
|
})
|
|
|
|
window.addEventListener('blur', () => {
|
|
|
|
ipcRenderer.send('ELECTRON_GUEST_VIEW_MANAGER_FOCUS_CHANGE', false, process.guestInstanceId)
|
|
|
|
})
|
|
|
|
}
|