2016-08-21 10:30:14 +00:00
|
|
|
/* eslint no-eval: "off" */
|
2017-02-20 13:59:39 +00:00
|
|
|
/* global binding, preloadPath, Buffer */
|
2016-08-21 10:30:14 +00:00
|
|
|
const events = require('events')
|
|
|
|
|
2017-02-27 17:14:36 +00:00
|
|
|
process.atomBinding = require('../common/atom-binding-setup')(binding.get, 'renderer')
|
2017-02-20 13:59:39 +00:00
|
|
|
|
2017-02-27 17:14:36 +00:00
|
|
|
const v8Util = process.atomBinding('v8_util')
|
|
|
|
// The `lib/renderer/api/ipc-renderer.js` module looks for the ipc object in the
|
|
|
|
// "ipc" hidden value
|
|
|
|
v8Util.setHiddenValue(global, 'ipc', new events.EventEmitter())
|
|
|
|
// The process object created by browserify is not an event emitter, fix it so
|
|
|
|
// the API is more compatible with non-sandboxed renderers.
|
|
|
|
for (let prop of Object.keys(events.EventEmitter.prototype)) {
|
|
|
|
if (process.hasOwnProperty(prop)) {
|
|
|
|
delete process[prop]
|
|
|
|
}
|
2016-08-21 10:30:14 +00:00
|
|
|
}
|
2017-02-27 17:14:36 +00:00
|
|
|
Object.setPrototypeOf(process, events.EventEmitter.prototype)
|
2016-08-21 10:30:14 +00:00
|
|
|
|
2017-02-27 17:14:36 +00:00
|
|
|
const electron = require('electron')
|
2016-08-21 10:30:14 +00:00
|
|
|
const preloadModules = new Map([
|
2017-02-27 17:14:36 +00:00
|
|
|
['electron', electron]
|
2016-08-21 10:30:14 +00:00
|
|
|
])
|
|
|
|
|
2017-02-27 17:14:36 +00:00
|
|
|
// Fetch the preload script. This needs to be done through the browser process
|
|
|
|
// since we may not have filesystem access in a sandboxed renderer.
|
|
|
|
let preloadSrc = electron.ipcRenderer.sendSync('ELECTRON_BROWSER_READ_FILE', preloadPath)
|
|
|
|
if (preloadSrc.err) {
|
|
|
|
throw new Error(preloadSrc.err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pass different process object to the preload script(which should not have
|
|
|
|
// access to things like `process.atomBinding`).
|
|
|
|
const preloadProcess = new events.EventEmitter()
|
|
|
|
process.on('exit', () => preloadProcess.emit('exit'))
|
|
|
|
|
|
|
|
// This is the `require` function that will be visible to the preload script
|
2016-08-21 10:30:14 +00:00
|
|
|
function preloadRequire (module) {
|
|
|
|
if (preloadModules.has(module)) {
|
|
|
|
return preloadModules.get(module)
|
|
|
|
}
|
|
|
|
throw new Error('module not found')
|
|
|
|
}
|
|
|
|
|
2017-02-27 17:14:36 +00:00
|
|
|
// Wrap the script into a function executed in global scope. It won't have
|
|
|
|
// access to the current scope, so we'll expose a few objects as arguments:
|
|
|
|
//
|
|
|
|
// - `require`: The `preloadRequire` function
|
|
|
|
// - `process`: The `preloadProcess` object
|
|
|
|
// - `Buffer`: Browserify `Buffer` implementation
|
|
|
|
// - `global`: The window object, which is aliased to `global` by browserify.
|
|
|
|
//
|
|
|
|
// Browserify bundles can make use of an external require function as explained
|
|
|
|
// in https://github.com/substack/node-browserify#multiple-bundles, so electron
|
|
|
|
// apps can use multi-module preload scripts in sandboxed renderers.
|
2016-08-21 10:30:14 +00:00
|
|
|
//
|
2017-02-27 17:14:36 +00:00
|
|
|
// For example, the user can create a bundle with:
|
2016-08-21 10:30:14 +00:00
|
|
|
//
|
|
|
|
// $ browserify -x electron preload.js > renderer.js
|
|
|
|
//
|
|
|
|
// and any `require('electron')` calls in `preload.js` will work as expected
|
2017-02-27 17:14:36 +00:00
|
|
|
// since browserify won't try to include `electron` in the bundle, falling back
|
|
|
|
// to the `preloadRequire` function above.
|
2016-08-21 10:30:14 +00:00
|
|
|
let preloadWrapperSrc = `(function(require, process, Buffer, global) {
|
|
|
|
${preloadSrc.data}
|
|
|
|
})`
|
|
|
|
|
2017-02-27 17:14:36 +00:00
|
|
|
// eval in window scope:
|
|
|
|
// http://www.ecma-international.org/ecma-262/5.1/#sec-10.4.2
|
|
|
|
const geval = eval
|
2016-08-21 10:30:14 +00:00
|
|
|
let preloadFn = geval(preloadWrapperSrc)
|
2017-02-27 17:14:36 +00:00
|
|
|
preloadFn(preloadRequire, preloadProcess, Buffer, global)
|