2016-03-24 20:15:04 +00:00
|
|
|
'use strict'
|
2016-01-13 03:55:49 +00:00
|
|
|
|
2019-03-18 19:37:06 +00:00
|
|
|
const features = process.electronBinding('features')
|
2018-09-13 16:10:51 +00:00
|
|
|
const { EventEmitter } = require('events')
|
2016-09-06 18:31:14 +00:00
|
|
|
const electron = require('electron')
|
2018-01-03 22:38:56 +00:00
|
|
|
const path = require('path')
|
|
|
|
const url = require('url')
|
2018-12-03 16:13:09 +00:00
|
|
|
const { app, ipcMain, session, deprecate } = electron
|
2016-06-01 05:57:35 +00:00
|
|
|
|
2019-12-16 01:30:25 +00:00
|
|
|
const { internalWindowOpen } = require('@electron/internal/browser/guest-window-manager')
|
2018-12-03 16:13:09 +00:00
|
|
|
const NavigationController = require('@electron/internal/browser/navigation-controller')
|
2019-02-04 22:49:53 +00:00
|
|
|
const { ipcMainInternal } = require('@electron/internal/browser/ipc-main-internal')
|
2019-03-13 19:03:17 +00:00
|
|
|
const ipcMainUtils = require('@electron/internal/browser/ipc-main-internal-utils')
|
2018-09-11 09:56:00 +00:00
|
|
|
|
2016-06-01 05:57:35 +00:00
|
|
|
// session is not used here, the purpose is to make sure session is initalized
|
|
|
|
// before the webContents module.
|
2017-11-23 21:42:48 +00:00
|
|
|
// eslint-disable-next-line
|
2016-06-01 05:57:35 +00:00
|
|
|
session
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-03-24 20:15:04 +00:00
|
|
|
let nextId = 0
|
2016-06-01 06:08:51 +00:00
|
|
|
const getNextId = function () {
|
2016-03-24 20:15:04 +00:00
|
|
|
return ++nextId
|
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-06-01 06:24:53 +00:00
|
|
|
// Stock page sizes
|
|
|
|
const PDFPageSizes = {
|
2016-01-12 02:40:23 +00:00
|
|
|
A5: {
|
2016-03-24 20:15:04 +00:00
|
|
|
custom_display_name: 'A5',
|
2016-01-12 02:40:23 +00:00
|
|
|
height_microns: 210000,
|
2016-03-24 20:15:04 +00:00
|
|
|
name: 'ISO_A5',
|
2016-01-12 02:40:23 +00:00
|
|
|
width_microns: 148000
|
|
|
|
},
|
|
|
|
A4: {
|
2016-03-24 20:15:04 +00:00
|
|
|
custom_display_name: 'A4',
|
2016-01-12 02:40:23 +00:00
|
|
|
height_microns: 297000,
|
2016-03-24 20:15:04 +00:00
|
|
|
name: 'ISO_A4',
|
|
|
|
is_default: 'true',
|
2016-01-12 02:40:23 +00:00
|
|
|
width_microns: 210000
|
|
|
|
},
|
|
|
|
A3: {
|
2016-03-24 20:15:04 +00:00
|
|
|
custom_display_name: 'A3',
|
2016-01-12 02:40:23 +00:00
|
|
|
height_microns: 420000,
|
2016-03-24 20:15:04 +00:00
|
|
|
name: 'ISO_A3',
|
2016-01-12 02:40:23 +00:00
|
|
|
width_microns: 297000
|
|
|
|
},
|
|
|
|
Legal: {
|
2016-03-24 20:15:04 +00:00
|
|
|
custom_display_name: 'Legal',
|
2016-01-12 02:40:23 +00:00
|
|
|
height_microns: 355600,
|
2016-03-24 20:15:04 +00:00
|
|
|
name: 'NA_LEGAL',
|
2016-01-12 02:40:23 +00:00
|
|
|
width_microns: 215900
|
|
|
|
},
|
|
|
|
Letter: {
|
2016-03-24 20:15:04 +00:00
|
|
|
custom_display_name: 'Letter',
|
2016-01-12 02:40:23 +00:00
|
|
|
height_microns: 279400,
|
2016-03-24 20:15:04 +00:00
|
|
|
name: 'NA_LETTER',
|
2016-01-12 02:40:23 +00:00
|
|
|
width_microns: 215900
|
|
|
|
},
|
|
|
|
Tabloid: {
|
|
|
|
height_microns: 431800,
|
2016-03-24 20:15:04 +00:00
|
|
|
name: 'NA_LEDGER',
|
2016-01-12 02:40:23 +00:00
|
|
|
width_microns: 279400,
|
2016-03-24 20:15:04 +00:00
|
|
|
custom_display_name: 'Tabloid'
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2016-03-24 20:15:04 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-06-01 06:24:53 +00:00
|
|
|
// Default printing setting
|
|
|
|
const defaultPrintingSetting = {
|
2020-01-28 20:47:24 +00:00
|
|
|
// Customizable.
|
|
|
|
pageRange: [],
|
2016-06-01 06:24:53 +00:00
|
|
|
mediaSize: {},
|
|
|
|
landscape: false,
|
|
|
|
headerFooterEnabled: false,
|
|
|
|
marginsType: 0,
|
2020-01-28 20:47:24 +00:00
|
|
|
scaleFactor: 100,
|
|
|
|
shouldPrintBackgrounds: false,
|
|
|
|
shouldPrintSelectionOnly: false,
|
|
|
|
// Non-customizable.
|
2016-06-01 06:24:53 +00:00
|
|
|
printWithCloudPrint: false,
|
|
|
|
printWithPrivet: false,
|
|
|
|
printWithExtension: false,
|
2019-01-27 16:02:56 +00:00
|
|
|
pagesPerSheet: 1,
|
2020-01-28 20:47:24 +00:00
|
|
|
isFirstRequest: false,
|
|
|
|
previewUIID: 0,
|
|
|
|
previewModifiable: true,
|
|
|
|
printToPDF: true,
|
2016-06-01 06:24:53 +00:00
|
|
|
deviceName: 'Save as PDF',
|
|
|
|
generateDraftData: true,
|
2017-08-22 04:54:49 +00:00
|
|
|
dpiHorizontal: 72,
|
|
|
|
dpiVertical: 72,
|
2017-01-31 08:41:05 +00:00
|
|
|
rasterizePDF: false,
|
2016-06-01 06:24:53 +00:00
|
|
|
duplex: 0,
|
|
|
|
copies: 1,
|
2020-01-28 20:47:24 +00:00
|
|
|
// 2 = color - see ColorModel in //printing/print_job_constants.h
|
|
|
|
color: 2,
|
|
|
|
collate: true
|
2016-06-01 06:24:53 +00:00
|
|
|
}
|
|
|
|
|
2016-08-02 11:52:07 +00:00
|
|
|
// JavaScript implementations of WebContents.
|
2019-03-18 19:37:06 +00:00
|
|
|
const binding = process.electronBinding('web_contents')
|
2018-09-13 16:10:51 +00:00
|
|
|
const { WebContents } = binding
|
2016-08-02 11:38:35 +00:00
|
|
|
|
2016-08-02 11:55:56 +00:00
|
|
|
Object.setPrototypeOf(NavigationController.prototype, EventEmitter.prototype)
|
|
|
|
Object.setPrototypeOf(WebContents.prototype, NavigationController.prototype)
|
2016-08-02 11:38:35 +00:00
|
|
|
|
2016-08-02 11:52:07 +00:00
|
|
|
// WebContents::send(channel, args..)
|
|
|
|
// WebContents::sendToAll(channel, args..)
|
|
|
|
WebContents.prototype.send = function (channel, ...args) {
|
2018-10-06 11:48:00 +00:00
|
|
|
if (typeof channel !== 'string') {
|
|
|
|
throw new Error('Missing required channel argument')
|
|
|
|
}
|
|
|
|
|
|
|
|
const internal = false
|
|
|
|
const sendToAll = false
|
|
|
|
|
|
|
|
return this._send(internal, sendToAll, channel, args)
|
2016-08-02 11:52:07 +00:00
|
|
|
}
|
2019-01-21 07:40:27 +00:00
|
|
|
|
2016-08-02 11:52:07 +00:00
|
|
|
WebContents.prototype.sendToAll = function (channel, ...args) {
|
2018-10-06 11:48:00 +00:00
|
|
|
if (typeof channel !== 'string') {
|
|
|
|
throw new Error('Missing required channel argument')
|
|
|
|
}
|
|
|
|
|
|
|
|
const internal = false
|
|
|
|
const sendToAll = true
|
|
|
|
|
|
|
|
return this._send(internal, sendToAll, channel, args)
|
|
|
|
}
|
|
|
|
|
|
|
|
WebContents.prototype._sendInternal = function (channel, ...args) {
|
|
|
|
if (typeof channel !== 'string') {
|
|
|
|
throw new Error('Missing required channel argument')
|
|
|
|
}
|
|
|
|
|
|
|
|
const internal = true
|
|
|
|
const sendToAll = false
|
|
|
|
|
|
|
|
return this._send(internal, sendToAll, channel, args)
|
|
|
|
}
|
|
|
|
WebContents.prototype._sendInternalToAll = function (channel, ...args) {
|
|
|
|
if (typeof channel !== 'string') {
|
|
|
|
throw new Error('Missing required channel argument')
|
|
|
|
}
|
|
|
|
|
|
|
|
const internal = true
|
|
|
|
const sendToAll = true
|
|
|
|
|
|
|
|
return this._send(internal, sendToAll, channel, args)
|
2016-08-02 11:52:07 +00:00
|
|
|
}
|
2019-01-22 19:24:46 +00:00
|
|
|
WebContents.prototype.sendToFrame = function (frameId, channel, ...args) {
|
|
|
|
if (typeof channel !== 'string') {
|
|
|
|
throw new Error('Missing required channel argument')
|
|
|
|
} else if (typeof frameId !== 'number') {
|
|
|
|
throw new Error('Missing required frameId argument')
|
|
|
|
}
|
|
|
|
|
|
|
|
const internal = false
|
|
|
|
const sendToAll = false
|
|
|
|
|
|
|
|
return this._sendToFrame(internal, sendToAll, frameId, channel, args)
|
|
|
|
}
|
2018-12-10 00:37:42 +00:00
|
|
|
WebContents.prototype._sendToFrameInternal = function (frameId, channel, ...args) {
|
|
|
|
if (typeof channel !== 'string') {
|
|
|
|
throw new Error('Missing required channel argument')
|
|
|
|
} else if (typeof frameId !== 'number') {
|
|
|
|
throw new Error('Missing required frameId argument')
|
|
|
|
}
|
|
|
|
|
|
|
|
const internal = true
|
|
|
|
const sendToAll = false
|
|
|
|
|
|
|
|
return this._sendToFrame(internal, sendToAll, frameId, channel, args)
|
|
|
|
}
|
2016-08-02 11:52:07 +00:00
|
|
|
|
2016-01-13 03:55:49 +00:00
|
|
|
// Following methods are mapped to webFrame.
|
|
|
|
const webFrameMethods = [
|
2016-12-19 23:50:47 +00:00
|
|
|
'insertCSS',
|
2016-01-13 03:55:49 +00:00
|
|
|
'insertText',
|
2019-06-17 15:39:36 +00:00
|
|
|
'removeInsertedCSS',
|
2018-02-20 13:57:48 +00:00
|
|
|
'setVisualZoomLevelLimits'
|
2016-03-24 20:15:04 +00:00
|
|
|
]
|
2017-11-18 08:51:14 +00:00
|
|
|
|
2016-08-02 11:52:07 +00:00
|
|
|
for (const method of webFrameMethods) {
|
|
|
|
WebContents.prototype[method] = function (...args) {
|
2019-06-17 09:10:02 +00:00
|
|
|
return ipcMainUtils.invokeInWebContents(this, false, 'ELECTRON_INTERNAL_RENDERER_WEB_FRAME_METHOD', method, ...args)
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2016-08-02 11:52:07 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2019-11-22 23:33:55 +00:00
|
|
|
const waitTillCanExecuteJavaScript = async (webContents) => {
|
|
|
|
if (webContents.getURL() && !webContents.isLoadingMainFrame()) return
|
|
|
|
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
webContents.once('did-stop-loading', () => {
|
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
})
|
2019-03-14 19:08:54 +00:00
|
|
|
}
|
|
|
|
|
2016-08-02 11:52:07 +00:00
|
|
|
// Make sure WebContents::executeJavaScript would run the code only when the
|
|
|
|
// WebContents has been loaded.
|
2019-11-22 23:33:55 +00:00
|
|
|
WebContents.prototype.executeJavaScript = async function (code, hasUserGesture) {
|
|
|
|
await waitTillCanExecuteJavaScript(this)
|
|
|
|
return ipcMainUtils.invokeInWebContents(this, false, 'ELECTRON_INTERNAL_RENDERER_WEB_FRAME_METHOD', 'executeJavaScript', code, hasUserGesture)
|
|
|
|
}
|
|
|
|
WebContents.prototype.executeJavaScriptInIsolatedWorld = async function (code, hasUserGesture) {
|
|
|
|
await waitTillCanExecuteJavaScript(this)
|
|
|
|
return ipcMainUtils.invokeInWebContents(this, false, 'ELECTRON_INTERNAL_RENDERER_WEB_FRAME_METHOD', 'executeJavaScriptInIsolatedWorld', code, hasUserGesture)
|
2016-08-02 11:52:07 +00:00
|
|
|
}
|
2016-08-02 03:02:55 +00:00
|
|
|
|
2016-08-02 11:52:07 +00:00
|
|
|
// Translate the options of printToPDF.
|
2019-02-11 19:20:04 +00:00
|
|
|
WebContents.prototype.printToPDF = function (options) {
|
2020-01-28 20:47:24 +00:00
|
|
|
const printSettings = {
|
2019-10-29 02:36:29 +00:00
|
|
|
...defaultPrintingSetting,
|
|
|
|
requestID: getNextId()
|
|
|
|
}
|
2020-01-28 20:47:24 +00:00
|
|
|
|
|
|
|
if (options.landscape !== undefined) {
|
|
|
|
if (typeof options.landscape !== 'boolean') {
|
|
|
|
const error = new Error('landscape must be a Boolean')
|
|
|
|
return Promise.reject(error)
|
|
|
|
}
|
|
|
|
printSettings.landscape = options.landscape
|
2016-08-02 11:52:07 +00:00
|
|
|
}
|
2020-01-28 20:47:24 +00:00
|
|
|
|
|
|
|
if (options.scaleFactor !== undefined) {
|
|
|
|
if (typeof options.scaleFactor !== 'number') {
|
|
|
|
const error = new Error('scaleFactor must be a Number')
|
|
|
|
return Promise.reject(error)
|
|
|
|
}
|
|
|
|
printSettings.scaleFactor = options.scaleFactor
|
2019-10-18 00:40:19 +00:00
|
|
|
}
|
2020-01-28 20:47:24 +00:00
|
|
|
|
|
|
|
if (options.marginsType !== undefined) {
|
|
|
|
if (typeof options.marginsType !== 'number') {
|
|
|
|
const error = new Error('marginsType must be a Number')
|
|
|
|
return Promise.reject(error)
|
|
|
|
}
|
|
|
|
printSettings.marginsType = options.marginsType
|
2019-10-18 00:40:19 +00:00
|
|
|
}
|
2020-01-28 20:47:24 +00:00
|
|
|
|
|
|
|
if (options.printSelectionOnly !== undefined) {
|
|
|
|
if (typeof options.printSelectionOnly !== 'boolean') {
|
|
|
|
const error = new Error('printSelectionOnly must be a Boolean')
|
|
|
|
return Promise.reject(error)
|
|
|
|
}
|
|
|
|
printSettings.shouldPrintSelectionOnly = options.printSelectionOnly
|
2016-08-02 11:52:07 +00:00
|
|
|
}
|
2020-01-28 20:47:24 +00:00
|
|
|
|
|
|
|
if (options.printBackground !== undefined) {
|
|
|
|
if (typeof options.printBackground !== 'boolean') {
|
|
|
|
const error = new Error('printBackground must be a Boolean')
|
|
|
|
return Promise.reject(error)
|
|
|
|
}
|
|
|
|
printSettings.shouldPrintBackgrounds = options.printBackground
|
2016-08-02 11:52:07 +00:00
|
|
|
}
|
2020-01-28 20:47:24 +00:00
|
|
|
|
|
|
|
if (options.pageRanges !== undefined) {
|
|
|
|
const pageRanges = options.pageRanges
|
|
|
|
if (!pageRanges.hasOwnProperty('from') || !pageRanges.hasOwnProperty('to')) {
|
|
|
|
const error = new Error(`pageRanges must be an Object with 'from' and 'to' properties`)
|
|
|
|
return Promise.reject(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof pageRanges.from !== 'number') {
|
|
|
|
const error = new Error('pageRanges.from must be a Number')
|
|
|
|
return Promise.reject(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof pageRanges.to !== 'number') {
|
|
|
|
const error = new Error('pageRanges.to must be a Number')
|
|
|
|
return Promise.reject(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chromium uses 1-based page ranges, so increment each by 1.
|
|
|
|
printSettings.pageRange = [{
|
|
|
|
from: pageRanges.from + 1,
|
|
|
|
to: pageRanges.to + 1
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.headerFooter !== undefined) {
|
|
|
|
const headerFooter = options.headerFooter
|
|
|
|
printSettings.headerFooterEnabled = true
|
|
|
|
if (typeof headerFooter === 'object') {
|
|
|
|
if (!headerFooter.url || !headerFooter.title) {
|
|
|
|
const error = new Error('url and title properties are required for headerFooter')
|
|
|
|
return Promise.reject(error)
|
|
|
|
}
|
|
|
|
if (typeof headerFooter.title !== 'string') {
|
|
|
|
const error = new Error('headerFooter.title must be a String')
|
|
|
|
return Promise.reject(error)
|
|
|
|
}
|
|
|
|
printSettings.title = headerFooter.title
|
|
|
|
|
|
|
|
if (typeof headerFooter.url !== 'string') {
|
|
|
|
const error = new Error('headerFooter.url must be a String')
|
|
|
|
return Promise.reject(error)
|
|
|
|
}
|
|
|
|
printSettings.url = headerFooter.url
|
|
|
|
} else {
|
|
|
|
const error = new Error('headerFooter must be an Object')
|
|
|
|
return Promise.reject(error)
|
|
|
|
}
|
2016-01-13 03:55:49 +00:00
|
|
|
}
|
|
|
|
|
2020-01-28 20:47:24 +00:00
|
|
|
// Optionally set size for PDF.
|
|
|
|
if (options.pageSize !== undefined) {
|
2016-08-02 11:52:07 +00:00
|
|
|
const pageSize = options.pageSize
|
|
|
|
if (typeof pageSize === 'object') {
|
|
|
|
if (!pageSize.height || !pageSize.width) {
|
2020-01-28 20:47:24 +00:00
|
|
|
const error = new Error('height and width properties are required for pageSize')
|
|
|
|
return Promise.reject(error)
|
2016-08-02 11:52:07 +00:00
|
|
|
}
|
|
|
|
// Dimensions in Microns
|
|
|
|
// 1 meter = 10^6 microns
|
2020-01-28 20:47:24 +00:00
|
|
|
printSettings.mediaSize = {
|
2016-08-02 11:52:07 +00:00
|
|
|
name: 'CUSTOM',
|
|
|
|
custom_display_name: 'Custom',
|
2017-05-06 23:19:31 +00:00
|
|
|
height_microns: Math.ceil(pageSize.height),
|
|
|
|
width_microns: Math.ceil(pageSize.width)
|
2016-08-02 11:52:07 +00:00
|
|
|
}
|
|
|
|
} else if (PDFPageSizes[pageSize]) {
|
2020-01-28 20:47:24 +00:00
|
|
|
printSettings.mediaSize = PDFPageSizes[pageSize]
|
2016-08-02 11:52:07 +00:00
|
|
|
} else {
|
2020-01-28 20:47:24 +00:00
|
|
|
const error = new Error(`Unsupported pageSize: ${pageSize}`)
|
|
|
|
return Promise.reject(error)
|
2016-08-02 03:02:55 +00:00
|
|
|
}
|
2016-08-02 11:52:07 +00:00
|
|
|
} else {
|
2020-01-28 20:47:24 +00:00
|
|
|
printSettings.mediaSize = PDFPageSizes['A4']
|
2016-03-24 20:15:04 +00:00
|
|
|
}
|
2016-02-22 14:00:21 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
// Chromium expects this in a 0-100 range number, not as float
|
2020-01-28 20:47:24 +00:00
|
|
|
printSettings.scaleFactor = Math.ceil(printSettings.scaleFactor) % 100
|
2019-10-28 22:12:35 +00:00
|
|
|
// PrinterType enum from //printing/print_job_constants.h
|
2020-01-28 20:47:24 +00:00
|
|
|
printSettings.printerType = 2
|
2018-11-09 03:42:34 +00:00
|
|
|
if (features.isPrintingEnabled()) {
|
2020-01-28 20:47:24 +00:00
|
|
|
return this._printToPDF(printSettings)
|
2018-11-09 03:42:34 +00:00
|
|
|
} else {
|
2020-01-28 20:47:24 +00:00
|
|
|
const error = new Error('Printing feature is disabled')
|
|
|
|
return Promise.reject(error)
|
2018-11-09 03:42:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-05 04:25:02 +00:00
|
|
|
WebContents.prototype.print = function (options = {}, callback) {
|
|
|
|
// TODO(codebytere): deduplicate argument sanitization by moving rest of
|
|
|
|
// print param logic into new file shared between printToPDF and print
|
|
|
|
if (typeof options === 'object') {
|
|
|
|
// Optionally set size for PDF.
|
|
|
|
if (options.pageSize !== undefined) {
|
|
|
|
const pageSize = options.pageSize
|
|
|
|
if (typeof pageSize === 'object') {
|
|
|
|
if (!pageSize.height || !pageSize.width) {
|
|
|
|
throw new Error('height and width properties are required for pageSize')
|
|
|
|
}
|
|
|
|
// Dimensions in Microns - 1 meter = 10^6 microns
|
|
|
|
options.mediaSize = {
|
|
|
|
name: 'CUSTOM',
|
|
|
|
custom_display_name: 'Custom',
|
|
|
|
height_microns: Math.ceil(pageSize.height),
|
|
|
|
width_microns: Math.ceil(pageSize.width)
|
|
|
|
}
|
|
|
|
} else if (PDFPageSizes[pageSize]) {
|
|
|
|
options.mediaSize = PDFPageSizes[pageSize]
|
|
|
|
} else {
|
|
|
|
throw new Error(`Unsupported pageSize: ${pageSize}`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-09 03:42:34 +00:00
|
|
|
if (features.isPrintingEnabled()) {
|
2020-02-05 04:25:02 +00:00
|
|
|
if (callback) {
|
|
|
|
this._print(options, callback)
|
|
|
|
} else {
|
|
|
|
this._print(options)
|
|
|
|
}
|
2018-11-09 03:42:34 +00:00
|
|
|
} else {
|
|
|
|
console.error('Error: Printing feature is disabled.')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WebContents.prototype.getPrinters = function () {
|
|
|
|
if (features.isPrintingEnabled()) {
|
|
|
|
return this._getPrinters()
|
|
|
|
} else {
|
|
|
|
console.error('Error: Printing feature is disabled.')
|
2019-12-06 20:36:35 +00:00
|
|
|
return []
|
2018-11-09 03:42:34 +00:00
|
|
|
}
|
2016-08-02 11:52:07 +00:00
|
|
|
}
|
|
|
|
|
2018-09-11 07:56:49 +00:00
|
|
|
WebContents.prototype.loadFile = function (filePath, options = {}) {
|
2018-01-03 22:38:56 +00:00
|
|
|
if (typeof filePath !== 'string') {
|
|
|
|
throw new Error('Must pass filePath as a string')
|
|
|
|
}
|
2018-09-13 16:10:51 +00:00
|
|
|
const { query, search, hash } = options
|
2018-09-11 07:56:49 +00:00
|
|
|
|
2018-01-03 22:38:56 +00:00
|
|
|
return this.loadURL(url.format({
|
|
|
|
protocol: 'file',
|
|
|
|
slashes: true,
|
2018-09-11 07:56:49 +00:00
|
|
|
pathname: path.resolve(app.getAppPath(), filePath),
|
|
|
|
query,
|
|
|
|
search,
|
|
|
|
hash
|
2018-01-03 22:38:56 +00:00
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2019-01-22 19:24:46 +00:00
|
|
|
const addReplyToEvent = (event) => {
|
|
|
|
event.reply = (...args) => {
|
|
|
|
event.sender.sendToFrame(event.frameId, ...args)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const addReplyInternalToEvent = (event) => {
|
|
|
|
Object.defineProperty(event, '_replyInternal', {
|
|
|
|
configurable: false,
|
|
|
|
enumerable: false,
|
|
|
|
value: (...args) => {
|
|
|
|
event.sender._sendToFrameInternal(event.frameId, ...args)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-01-23 16:24:57 +00:00
|
|
|
const addReturnValueToEvent = (event) => {
|
|
|
|
Object.defineProperty(event, 'returnValue', {
|
|
|
|
set: (value) => event.sendReply([value]),
|
|
|
|
get: () => {}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-08-02 11:52:07 +00:00
|
|
|
// Add JavaScript wrappers for WebContents class.
|
|
|
|
WebContents.prototype._init = function () {
|
2016-08-02 11:55:56 +00:00
|
|
|
// The navigation controller.
|
|
|
|
NavigationController.call(this, this)
|
|
|
|
|
2018-12-10 16:13:09 +00:00
|
|
|
// Every remote callback from renderer process would add a listener to the
|
2018-11-28 04:50:53 +00:00
|
|
|
// render-view-deleted event, so ignore the listeners warning.
|
2016-08-02 11:52:07 +00:00
|
|
|
this.setMaxListeners(0)
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Dispatch IPC messages to the ipc module.
|
2019-01-23 16:24:57 +00:00
|
|
|
this.on('-ipc-message', function (event, internal, channel, args) {
|
|
|
|
if (internal) {
|
|
|
|
addReplyInternalToEvent(event)
|
|
|
|
ipcMainInternal.emit(channel, event, ...args)
|
|
|
|
} else {
|
|
|
|
addReplyToEvent(event)
|
|
|
|
this.emit('ipc-message', event, channel, ...args)
|
|
|
|
ipcMain.emit(channel, event, ...args)
|
|
|
|
}
|
2018-10-06 11:48:00 +00:00
|
|
|
})
|
2018-11-28 04:50:53 +00:00
|
|
|
|
2019-08-23 22:45:50 +00:00
|
|
|
this.on('-ipc-invoke', function (event, internal, channel, args) {
|
2019-05-31 17:25:19 +00:00
|
|
|
event._reply = (result) => event.sendReply({ result })
|
|
|
|
event._throw = (error) => {
|
|
|
|
console.error(`Error occurred in handler for '${channel}':`, error)
|
|
|
|
event.sendReply({ error: error.toString() })
|
|
|
|
}
|
2019-08-23 22:45:50 +00:00
|
|
|
const target = internal ? ipcMainInternal : ipcMain
|
|
|
|
if (target._invokeHandlers.has(channel)) {
|
|
|
|
target._invokeHandlers.get(channel)(event, ...args)
|
2019-05-31 17:25:19 +00:00
|
|
|
} else {
|
|
|
|
event._throw(`No handler registered for '${channel}'`)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-01-23 16:24:57 +00:00
|
|
|
this.on('-ipc-message-sync', function (event, internal, channel, args) {
|
|
|
|
addReturnValueToEvent(event)
|
|
|
|
if (internal) {
|
|
|
|
addReplyInternalToEvent(event)
|
|
|
|
ipcMainInternal.emit(channel, event, ...args)
|
|
|
|
} else {
|
|
|
|
addReplyToEvent(event)
|
|
|
|
this.emit('ipc-message-sync', event, channel, ...args)
|
|
|
|
ipcMain.emit(channel, event, ...args)
|
|
|
|
}
|
2018-10-06 11:48:00 +00:00
|
|
|
})
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Handle context menu action request from pepper plugin.
|
2017-11-26 23:24:25 +00:00
|
|
|
this.on('pepper-context-menu', function (event, params, callback) {
|
2017-12-20 09:48:09 +00:00
|
|
|
// Access Menu via electron.Menu to prevent circular require.
|
2016-09-06 18:31:14 +00:00
|
|
|
const menu = electron.Menu.buildFromTemplate(params.menu)
|
2018-02-20 20:02:24 +00:00
|
|
|
menu.popup({
|
|
|
|
window: event.sender.getOwnerBrowserWindow(),
|
|
|
|
x: params.x,
|
|
|
|
y: params.y,
|
2018-02-21 01:20:11 +00:00
|
|
|
callback
|
2018-02-20 20:02:24 +00:00
|
|
|
})
|
2016-03-24 20:15:04 +00:00
|
|
|
})
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2019-03-11 23:17:24 +00:00
|
|
|
this.on('crashed', (event, ...args) => {
|
|
|
|
app.emit('renderer-process-crashed', event, this, ...args)
|
|
|
|
})
|
|
|
|
|
2016-04-12 07:36:12 +00:00
|
|
|
// The devtools requests the webContents to reload.
|
2016-08-02 11:38:35 +00:00
|
|
|
this.on('devtools-reload-page', function () {
|
|
|
|
this.reload()
|
2016-04-12 07:36:12 +00:00
|
|
|
})
|
|
|
|
|
2018-10-04 11:00:34 +00:00
|
|
|
// Handle window.open for BrowserWindow and BrowserView.
|
2019-01-31 05:07:08 +00:00
|
|
|
if (['browserView', 'window'].includes(this.getType())) {
|
2018-10-04 11:00:34 +00:00
|
|
|
// Make new windows requested by links behave like "window.open".
|
|
|
|
this.on('-new-window', (event, url, frameName, disposition,
|
|
|
|
additionalFeatures, postData,
|
|
|
|
referrer) => {
|
|
|
|
const options = {
|
|
|
|
show: true,
|
|
|
|
width: 800,
|
|
|
|
height: 600
|
|
|
|
}
|
2019-12-16 01:30:25 +00:00
|
|
|
internalWindowOpen(event, url, referrer, frameName, disposition, options, additionalFeatures, postData)
|
2018-10-04 11:00:34 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
// Create a new browser window for the native implementation of
|
|
|
|
// "window.open", used in sandbox and nativeWindowOpen mode.
|
|
|
|
this.on('-add-new-contents', (event, webContents, disposition,
|
|
|
|
userGesture, left, top, width, height, url, frameName) => {
|
|
|
|
if ((disposition !== 'foreground-tab' && disposition !== 'new-window' &&
|
|
|
|
disposition !== 'background-tab')) {
|
|
|
|
event.preventDefault()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
show: true,
|
|
|
|
x: left,
|
|
|
|
y: top,
|
|
|
|
width: width || 800,
|
|
|
|
height: height || 600,
|
|
|
|
webContents
|
|
|
|
}
|
|
|
|
const referrer = { url: '', policy: 'default' }
|
2019-12-16 01:30:25 +00:00
|
|
|
internalWindowOpen(event, url, referrer, frameName, disposition, options)
|
2018-10-04 11:00:34 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-11-11 17:47:01 +00:00
|
|
|
this.on('login', (event, ...args) => {
|
|
|
|
app.emit('login', event, this, ...args)
|
|
|
|
})
|
|
|
|
|
2019-07-29 20:54:37 +00:00
|
|
|
const event = process.electronBinding('event').createEmpty()
|
|
|
|
app.emit('web-contents-created', event, this)
|
2016-03-24 20:15:04 +00:00
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2019-07-03 15:57:10 +00:00
|
|
|
// Deprecations
|
|
|
|
deprecate.fnToProperty(WebContents.prototype, 'audioMuted', '_isAudioMuted', '_setAudioMuted')
|
|
|
|
deprecate.fnToProperty(WebContents.prototype, 'userAgent', '_getUserAgent', '_setUserAgent')
|
|
|
|
deprecate.fnToProperty(WebContents.prototype, 'zoomLevel', '_getZoomLevel', '_setZoomLevel')
|
|
|
|
deprecate.fnToProperty(WebContents.prototype, 'zoomFactor', '_getZoomFactor', '_setZoomFactor')
|
|
|
|
deprecate.fnToProperty(WebContents.prototype, 'frameRate', '_getFrameRate', '_setFrameRate')
|
|
|
|
|
2016-08-02 11:52:07 +00:00
|
|
|
// JavaScript wrapper of Debugger.
|
2019-03-18 19:37:06 +00:00
|
|
|
const { Debugger } = process.electronBinding('debugger')
|
2016-08-02 11:38:35 +00:00
|
|
|
Object.setPrototypeOf(Debugger.prototype, EventEmitter.prototype)
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-08-02 11:38:35 +00:00
|
|
|
// Public APIs.
|
2016-06-13 15:59:03 +00:00
|
|
|
module.exports = {
|
2016-06-13 16:06:42 +00:00
|
|
|
create (options = {}) {
|
2016-06-13 15:59:03 +00:00
|
|
|
return binding.create(options)
|
|
|
|
},
|
|
|
|
|
|
|
|
fromId (id) {
|
|
|
|
return binding.fromId(id)
|
2016-07-13 15:54:40 +00:00
|
|
|
},
|
2016-07-13 19:15:30 +00:00
|
|
|
|
|
|
|
getFocusedWebContents () {
|
|
|
|
let focused = null
|
2018-10-02 01:56:31 +00:00
|
|
|
for (const contents of binding.getAllWebContents()) {
|
2016-07-13 19:15:30 +00:00
|
|
|
if (!contents.isFocused()) continue
|
2016-07-13 21:49:25 +00:00
|
|
|
if (focused == null) focused = contents
|
2016-07-13 19:15:30 +00:00
|
|
|
// Return webview web contents which may be embedded inside another
|
|
|
|
// web contents that is also reporting as focused
|
|
|
|
if (contents.getType() === 'webview') return contents
|
|
|
|
}
|
|
|
|
return focused
|
2016-07-14 15:59:49 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getAllWebContents () {
|
|
|
|
return binding.getAllWebContents()
|
2016-06-13 15:59:03 +00:00
|
|
|
}
|
|
|
|
}
|