123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- 'use strict'
- const {EventEmitter} = require('events')
- const electron = require('electron')
- const {app, ipcMain, session, NavigationController} = electron
- // session is not used here, the purpose is to make sure session is initalized
- // before the webContents module.
- session
- let nextId = 0
- const getNextId = function () {
- return ++nextId
- }
- // Stock page sizes
- const PDFPageSizes = {
- A5: {
- custom_display_name: 'A5',
- height_microns: 210000,
- name: 'ISO_A5',
- width_microns: 148000
- },
- A4: {
- custom_display_name: 'A4',
- height_microns: 297000,
- name: 'ISO_A4',
- is_default: 'true',
- width_microns: 210000
- },
- A3: {
- custom_display_name: 'A3',
- height_microns: 420000,
- name: 'ISO_A3',
- width_microns: 297000
- },
- Legal: {
- custom_display_name: 'Legal',
- height_microns: 355600,
- name: 'NA_LEGAL',
- width_microns: 215900
- },
- Letter: {
- custom_display_name: 'Letter',
- height_microns: 279400,
- name: 'NA_LETTER',
- width_microns: 215900
- },
- Tabloid: {
- height_microns: 431800,
- name: 'NA_LEDGER',
- width_microns: 279400,
- custom_display_name: 'Tabloid'
- }
- }
- // Default printing setting
- const defaultPrintingSetting = {
- pageRage: [],
- mediaSize: {},
- landscape: false,
- color: 2,
- headerFooterEnabled: false,
- marginsType: 0,
- isFirstRequest: false,
- requestID: getNextId(),
- previewModifiable: true,
- printToPDF: true,
- printWithCloudPrint: false,
- printWithPrivet: false,
- printWithExtension: false,
- deviceName: 'Save as PDF',
- generateDraftData: true,
- fitToPageEnabled: false,
- scaleFactor: 1,
- rasterizePDF: false,
- duplex: 0,
- copies: 1,
- collate: true,
- shouldPrintBackgrounds: false,
- shouldPrintSelectionOnly: false
- }
- // JavaScript implementations of WebContents.
- const binding = process.atomBinding('web_contents')
- const {WebContents} = binding
- Object.setPrototypeOf(NavigationController.prototype, EventEmitter.prototype)
- Object.setPrototypeOf(WebContents.prototype, NavigationController.prototype)
- // WebContents::send(channel, args..)
- // WebContents::sendToAll(channel, args..)
- WebContents.prototype.send = function (channel, ...args) {
- if (channel == null) throw new Error('Missing required channel argument')
- return this._send(false, channel, args)
- }
- WebContents.prototype.sendToAll = function (channel, ...args) {
- if (channel == null) throw new Error('Missing required channel argument')
- return this._send(true, channel, args)
- }
- // Following methods are mapped to webFrame.
- const webFrameMethods = [
- 'insertCSS',
- 'insertText',
- 'setLayoutZoomLevelLimits',
- 'setVisualZoomLevelLimits',
- // TODO(kevinsawicki): Remove in 2.0, deprecate before then with warnings
- 'setZoomLevelLimits'
- ]
- const webFrameMethodsWithResult = []
- const asyncWebFrameMethods = function (requestId, method, callback, ...args) {
- return new Promise((resolve, reject) => {
- this.send('ELECTRON_INTERNAL_RENDERER_ASYNC_WEB_FRAME_METHOD', requestId, method, args)
- ipcMain.once(`ELECTRON_INTERNAL_BROWSER_ASYNC_WEB_FRAME_RESPONSE_${requestId}`, function (event, error, result) {
- if (error == null) {
- if (typeof callback === 'function') callback(result)
- resolve(result)
- } else {
- reject(error)
- }
- })
- })
- }
- const syncWebFrameMethods = function (requestId, method, callback, ...args) {
- this.send('ELECTRON_INTERNAL_RENDERER_SYNC_WEB_FRAME_METHOD', requestId, method, args)
- ipcMain.once(`ELECTRON_INTERNAL_BROWSER_SYNC_WEB_FRAME_RESPONSE_${requestId}`, function (event, result) {
- if (callback) callback(result)
- })
- }
- for (const method of webFrameMethods) {
- WebContents.prototype[method] = function (...args) {
- this.send('ELECTRON_INTERNAL_RENDERER_WEB_FRAME_METHOD', method, args)
- }
- }
- for (const method of webFrameMethodsWithResult) {
- WebContents.prototype[method] = function (...args) {
- const callback = args[args.length - 1]
- const actualArgs = args.slice(0, args.length - 2)
- syncWebFrameMethods.call(this, getNextId(), method, callback, ...actualArgs)
- }
- }
- // Make sure WebContents::executeJavaScript would run the code only when the
- // WebContents has been loaded.
- WebContents.prototype.executeJavaScript = function (code, hasUserGesture, callback) {
- const requestId = getNextId()
- if (typeof hasUserGesture === 'function') {
- // Shift.
- callback = hasUserGesture
- hasUserGesture = null
- }
- if (hasUserGesture == null) {
- hasUserGesture = false
- }
- if (this.getURL() && !this.isLoadingMainFrame()) {
- return asyncWebFrameMethods.call(this, requestId, 'executeJavaScript', callback, code, hasUserGesture)
- } else {
- return new Promise((resolve, reject) => {
- this.once('did-finish-load', () => {
- asyncWebFrameMethods.call(this, requestId, 'executeJavaScript', callback, code, hasUserGesture).then(resolve).catch(reject)
- })
- })
- }
- }
- // Translate the options of printToPDF.
- WebContents.prototype.printToPDF = function (options, callback) {
- const printingSetting = Object.assign({}, defaultPrintingSetting)
- if (options.landscape) {
- printingSetting.landscape = options.landscape
- }
- if (options.marginsType) {
- printingSetting.marginsType = options.marginsType
- }
- if (options.printSelectionOnly) {
- printingSetting.shouldPrintSelectionOnly = options.printSelectionOnly
- }
- if (options.printBackground) {
- printingSetting.shouldPrintBackgrounds = options.printBackground
- }
- if (options.pageSize) {
- const pageSize = options.pageSize
- if (typeof pageSize === 'object') {
- if (!pageSize.height || !pageSize.width) {
- return callback(new Error('Must define height and width for pageSize'))
- }
- // Dimensions in Microns
- // 1 meter = 10^6 microns
- printingSetting.mediaSize = {
- name: 'CUSTOM',
- custom_display_name: 'Custom',
- height_microns: pageSize.height,
- width_microns: pageSize.width
- }
- } else if (PDFPageSizes[pageSize]) {
- printingSetting.mediaSize = PDFPageSizes[pageSize]
- } else {
- return callback(new Error(`Does not support pageSize with ${pageSize}`))
- }
- } else {
- printingSetting.mediaSize = PDFPageSizes['A4']
- }
- this._printToPDF(printingSetting, callback)
- }
- WebContents.prototype.getZoomLevel = function (callback) {
- if (typeof callback !== 'function') {
- throw new Error('Must pass function as an argument')
- }
- process.nextTick(() => {
- const zoomLevel = this._getZoomLevel()
- callback(zoomLevel)
- })
- }
- WebContents.prototype.getZoomFactor = function (callback) {
- if (typeof callback !== 'function') {
- throw new Error('Must pass function as an argument')
- }
- process.nextTick(() => {
- const zoomFactor = this._getZoomFactor()
- callback(zoomFactor)
- })
- }
- // Add JavaScript wrappers for WebContents class.
- WebContents.prototype._init = function () {
- // The navigation controller.
- NavigationController.call(this, this)
- // Every remote callback from renderer process would add a listenter to the
- // render-view-deleted event, so ignore the listenters warning.
- this.setMaxListeners(0)
- // Dispatch IPC messages to the ipc module.
- this.on('ipc-message', function (event, [channel, ...args]) {
- ipcMain.emit(channel, event, ...args)
- })
- this.on('ipc-message-sync', function (event, [channel, ...args]) {
- Object.defineProperty(event, 'returnValue', {
- set: function (value) {
- return event.sendReply(JSON.stringify(value))
- },
- get: function () {}
- })
- ipcMain.emit(channel, event, ...args)
- })
- // Handle context menu action request from pepper plugin.
- this.on('pepper-context-menu', function (event, params) {
- // Access Menu via electron.Menu to prevent circular require
- const menu = electron.Menu.buildFromTemplate(params.menu)
- menu.popup(event.sender.getOwnerBrowserWindow(), params.x, params.y)
- })
- // The devtools requests the webContents to reload.
- this.on('devtools-reload-page', function () {
- this.reload()
- })
- app.emit('web-contents-created', {}, this)
- }
- // JavaScript wrapper of Debugger.
- const {Debugger} = process.atomBinding('debugger')
- Object.setPrototypeOf(Debugger.prototype, EventEmitter.prototype)
- // Public APIs.
- module.exports = {
- create (options = {}) {
- return binding.create(options)
- },
- fromId (id) {
- return binding.fromId(id)
- },
- getFocusedWebContents () {
- let focused = null
- for (let contents of binding.getAllWebContents()) {
- if (!contents.isFocused()) continue
- if (focused == null) focused = contents
- // 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
- },
- getAllWebContents () {
- return binding.getAllWebContents()
- }
- }
|