2016-09-26 20:40:45 +00:00
|
|
|
(function () {
|
2018-09-13 16:10:51 +00:00
|
|
|
const { setImmediate } = require('timers')
|
|
|
|
const { ipcRenderer } = require('electron')
|
2016-09-26 20:40:45 +00:00
|
|
|
window.ipcRenderer = ipcRenderer
|
2017-03-21 13:48:36 +00:00
|
|
|
window.setImmediate = setImmediate
|
2017-05-15 12:17:07 +00:00
|
|
|
window.require = require
|
2019-03-01 06:24:18 +00:00
|
|
|
|
|
|
|
function invoke (code) {
|
|
|
|
try {
|
|
|
|
return code()
|
|
|
|
} catch {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-26 20:40:45 +00:00
|
|
|
if (location.protocol === 'file:') {
|
|
|
|
window.test = 'preload'
|
|
|
|
window.process = process
|
2018-03-14 03:01:40 +00:00
|
|
|
if (process.env.sandboxmain) {
|
2018-07-30 01:13:42 +00:00
|
|
|
window.test = {
|
2019-03-01 06:24:18 +00:00
|
|
|
osSandbox: !process.argv.includes('--no-sandbox'),
|
|
|
|
hasCrash: typeof process.crash === 'function',
|
|
|
|
hasHang: typeof process.hang === 'function',
|
|
|
|
creationTime: invoke(() => process.getCreationTime()),
|
|
|
|
heapStatistics: invoke(() => process.getHeapStatistics()),
|
|
|
|
processMemoryInfo: invoke(() => process.getProcessMemoryInfo()),
|
|
|
|
systemMemoryInfo: invoke(() => process.getSystemMemoryInfo()),
|
|
|
|
systemVersion: invoke(() => process.getSystemVersion()),
|
|
|
|
cpuUsage: invoke(() => process.getCPUUsage()),
|
|
|
|
ioCounters: invoke(() => process.getIOCounters()),
|
2018-07-30 01:13:42 +00:00
|
|
|
env: process.env,
|
|
|
|
execPath: process.execPath,
|
2018-08-21 18:05:45 +00:00
|
|
|
pid: process.pid,
|
|
|
|
arch: process.arch,
|
|
|
|
platform: process.platform,
|
|
|
|
sandboxed: process.sandboxed,
|
|
|
|
type: process.type,
|
|
|
|
version: process.version,
|
|
|
|
versions: process.versions
|
2018-07-30 01:13:42 +00:00
|
|
|
}
|
2018-03-14 03:01:40 +00:00
|
|
|
}
|
2016-09-26 20:40:45 +00:00
|
|
|
} else if (location.href !== 'about:blank') {
|
|
|
|
addEventListener('DOMContentLoaded', () => {
|
2018-12-05 08:03:39 +00:00
|
|
|
ipcRenderer.on('touch-the-opener', () => {
|
|
|
|
let errorMessage = null
|
|
|
|
try {
|
|
|
|
const openerDoc = opener.document // eslint-disable-line no-unused-vars
|
|
|
|
} catch (error) {
|
|
|
|
errorMessage = error.message
|
|
|
|
}
|
|
|
|
ipcRenderer.send('answer', errorMessage)
|
|
|
|
})
|
2018-10-19 03:28:23 +00:00
|
|
|
ipcRenderer.send('child-loaded', window.opener == null, document.body.innerHTML, location.href)
|
2018-12-05 08:03:39 +00:00
|
|
|
})
|
2016-09-26 20:40:45 +00:00
|
|
|
}
|
|
|
|
})()
|