electron/lib/browser/guest-view-manager.js

424 lines
14 KiB
JavaScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
'use strict';
2016-03-18 18:51:02 +00:00
2020-03-20 20:28:31 +00:00
const { webContents } = require('electron');
const { ipcMainInternal } = require('@electron/internal/browser/ipc-main-internal');
const ipcMainUtils = require('@electron/internal/browser/ipc-main-internal-utils');
const { parseWebViewWebPreferences } = require('@electron/internal/common/parse-features-string');
2020-03-20 20:28:31 +00:00
const { syncMethods, asyncMethods, properties } = require('@electron/internal/common/web-view-methods');
const { serialize } = require('@electron/internal/common/type-utils');
2016-01-12 02:40:23 +00:00
2016-01-14 18:35:29 +00:00
// Doesn't exist in early initialization.
2020-03-20 20:28:31 +00:00
let webViewManager = null;
2016-01-12 02:40:23 +00:00
2016-06-07 17:29:24 +00:00
const supportedWebViewEvents = [
2016-01-25 16:37:15 +00:00
'load-commit',
'did-attach',
2016-01-25 16:37:15 +00:00
'did-finish-load',
'did-fail-load',
'did-frame-finish-load',
'did-start-loading',
'did-stop-loading',
'dom-ready',
'console-message',
'context-menu',
2016-01-25 16:37:15 +00:00
'devtools-opened',
'devtools-closed',
'devtools-focused',
'will-navigate',
'did-start-navigation',
2016-01-25 16:37:15 +00:00
'did-navigate',
'did-frame-navigate',
2016-01-25 16:37:15 +00:00
'did-navigate-in-page',
'focus-change',
2016-01-25 16:37:15 +00:00
'close',
'crashed',
'render-process-gone',
2016-01-25 16:37:15 +00:00
'plugin-crashed',
'destroyed',
'page-title-updated',
'page-favicon-updated',
'enter-html-full-screen',
'leave-html-full-screen',
'media-started-playing',
'media-paused',
'found-in-page',
2016-06-07 06:56:19 +00:00
'did-change-theme-color',
'update-target-url'
2020-03-20 20:28:31 +00:00
];
2016-01-12 02:40:23 +00:00
2020-03-20 20:28:31 +00:00
const guestInstances = {};
const embedderElementsMap = {};
2016-01-12 02:40:23 +00:00
refactor: use v8 serialization for ipc (#20214) * refactor: use v8 serialization for ipc * cloning process.env doesn't work * serialize host objects by enumerating key/values * new serialization can handle NaN, Infinity, and undefined correctly * can't allocate v8 objects during GC * backport microtasks fix * fix compile * fix node_stream_loader reentrancy * update subframe spec to expect undefined instead of null * write undefined instead of crashing when serializing host objects * fix webview spec * fix download spec * buffers are transformed into uint8arrays * can't serialize promises * fix chrome.i18n.getMessage * fix devtools tests * fix zoom test * fix debug build * fix lint * update ipcRenderer tests * fix printToPDF test * update patch * remove accidentally re-added remote-side spec * wip * don't attempt to serialize host objects * jump through different hoops to set options.webContents sometimes * whoops * fix lint * clean up error-handling logic * fix memory leak * fix lint * convert host objects using old base::Value serialization * fix lint more * fall back to base::Value-based serialization * remove commented-out code * add docs to breaking-changes.md * Update breaking-changes.md * update ipcRenderer and WebContents docs * lint * use named values for format tag * save a memcpy for ~30% speedup * get rid of calls to ShallowClone * extra debugging for paranoia * d'oh, use the correct named tags * apparently msstl doesn't like this DCHECK * funny story about that DCHECK * disable remote-related functions when enable_remote_module = false * nits * use EnableIf to disable remote methods in mojom * fix include * review comments
2019-10-09 17:59:08 +00:00
function sanitizeOptionsForGuest (options) {
2020-03-20 20:28:31 +00:00
const ret = { ...options };
refactor: use v8 serialization for ipc (#20214) * refactor: use v8 serialization for ipc * cloning process.env doesn't work * serialize host objects by enumerating key/values * new serialization can handle NaN, Infinity, and undefined correctly * can't allocate v8 objects during GC * backport microtasks fix * fix compile * fix node_stream_loader reentrancy * update subframe spec to expect undefined instead of null * write undefined instead of crashing when serializing host objects * fix webview spec * fix download spec * buffers are transformed into uint8arrays * can't serialize promises * fix chrome.i18n.getMessage * fix devtools tests * fix zoom test * fix debug build * fix lint * update ipcRenderer tests * fix printToPDF test * update patch * remove accidentally re-added remote-side spec * wip * don't attempt to serialize host objects * jump through different hoops to set options.webContents sometimes * whoops * fix lint * clean up error-handling logic * fix memory leak * fix lint * convert host objects using old base::Value serialization * fix lint more * fall back to base::Value-based serialization * remove commented-out code * add docs to breaking-changes.md * Update breaking-changes.md * update ipcRenderer and WebContents docs * lint * use named values for format tag * save a memcpy for ~30% speedup * get rid of calls to ShallowClone * extra debugging for paranoia * d'oh, use the correct named tags * apparently msstl doesn't like this DCHECK * funny story about that DCHECK * disable remote-related functions when enable_remote_module = false * nits * use EnableIf to disable remote methods in mojom * fix include * review comments
2019-10-09 17:59:08 +00:00
// WebContents values can't be sent over IPC.
2020-03-20 20:28:31 +00:00
delete ret.webContents;
return ret;
refactor: use v8 serialization for ipc (#20214) * refactor: use v8 serialization for ipc * cloning process.env doesn't work * serialize host objects by enumerating key/values * new serialization can handle NaN, Infinity, and undefined correctly * can't allocate v8 objects during GC * backport microtasks fix * fix compile * fix node_stream_loader reentrancy * update subframe spec to expect undefined instead of null * write undefined instead of crashing when serializing host objects * fix webview spec * fix download spec * buffers are transformed into uint8arrays * can't serialize promises * fix chrome.i18n.getMessage * fix devtools tests * fix zoom test * fix debug build * fix lint * update ipcRenderer tests * fix printToPDF test * update patch * remove accidentally re-added remote-side spec * wip * don't attempt to serialize host objects * jump through different hoops to set options.webContents sometimes * whoops * fix lint * clean up error-handling logic * fix memory leak * fix lint * convert host objects using old base::Value serialization * fix lint more * fall back to base::Value-based serialization * remove commented-out code * add docs to breaking-changes.md * Update breaking-changes.md * update ipcRenderer and WebContents docs * lint * use named values for format tag * save a memcpy for ~30% speedup * get rid of calls to ShallowClone * extra debugging for paranoia * d'oh, use the correct named tags * apparently msstl doesn't like this DCHECK * funny story about that DCHECK * disable remote-related functions when enable_remote_module = false * nits * use EnableIf to disable remote methods in mojom * fix include * review comments
2019-10-09 17:59:08 +00:00
}
2016-01-14 18:35:29 +00:00
// Create a new guest instance.
2016-06-07 17:29:24 +00:00
const createGuest = function (embedder, params) {
2016-01-12 02:40:23 +00:00
if (webViewManager == null) {
webViewManager = process._linkedBinding('electron_browser_web_view_manager');
2016-01-12 02:40:23 +00:00
}
2016-06-07 17:24:48 +00:00
const guest = webContents.create({
type: 'webview',
2016-01-12 02:40:23 +00:00
partition: params.partition,
embedder: embedder
2020-03-20 20:28:31 +00:00
});
const guestInstanceId = guest.id;
guestInstances[guestInstanceId] = {
2016-01-12 02:40:23 +00:00
guest: guest,
embedder: embedder
2020-03-20 20:28:31 +00:00
};
2016-01-12 02:40:23 +00:00
// Clear the guest from map when it is destroyed.
guest.once('destroyed', () => {
if (Object.prototype.hasOwnProperty.call(guestInstances, guestInstanceId)) {
2020-03-20 20:28:31 +00:00
detachGuest(embedder, guestInstanceId);
}
2020-03-20 20:28:31 +00:00
});
2016-01-12 02:40:23 +00:00
2016-01-14 18:35:29 +00:00
// Init guest web view after attached.
guest.once('did-attach', function (event) {
2020-03-20 20:28:31 +00:00
params = this.attachParams;
delete this.attachParams;
2020-03-20 20:28:31 +00:00
const previouslyAttached = this.viewInstanceId != null;
this.viewInstanceId = params.instanceId;
// Only load URL and set size on first attach
if (previouslyAttached) {
2020-03-20 20:28:31 +00:00
return;
}
2016-01-12 02:40:23 +00:00
if (params.src) {
2020-03-20 20:28:31 +00:00
const opts = {};
2016-01-12 02:40:23 +00:00
if (params.httpreferrer) {
2020-03-20 20:28:31 +00:00
opts.httpReferrer = params.httpreferrer;
2016-01-12 02:40:23 +00:00
}
if (params.useragent) {
2020-03-20 20:28:31 +00:00
opts.userAgent = params.useragent;
2016-01-12 02:40:23 +00:00
}
2020-03-20 20:28:31 +00:00
this.loadURL(params.src, opts);
2016-01-12 02:40:23 +00:00
}
2020-03-20 20:28:31 +00:00
embedder.emit('did-attach-webview', event, guest);
});
2016-01-12 02:40:23 +00:00
2016-11-03 17:39:40 +00:00
const sendToEmbedder = (channel, ...args) => {
if (!embedder.isDestroyed()) {
2020-03-20 20:28:31 +00:00
embedder._sendInternal(`${channel}-${guest.viewInstanceId}`, ...args);
2016-11-03 17:39:40 +00:00
}
2020-03-20 20:28:31 +00:00
};
2016-11-03 17:39:40 +00:00
2016-01-14 18:35:29 +00:00
// Dispatch events to embedder.
2016-06-07 17:24:48 +00:00
const fn = function (event) {
guest.on(event, function (_, ...args) {
2020-03-20 20:28:31 +00:00
sendToEmbedder('ELECTRON_GUEST_VIEW_INTERNAL_DISPATCH_EVENT', event, ...args);
});
};
2016-06-07 17:24:48 +00:00
for (const event of supportedWebViewEvents) {
2020-03-20 20:28:31 +00:00
fn(event);
2016-01-12 02:40:23 +00:00
}
refactor: use v8 serialization for ipc (#20214) * refactor: use v8 serialization for ipc * cloning process.env doesn't work * serialize host objects by enumerating key/values * new serialization can handle NaN, Infinity, and undefined correctly * can't allocate v8 objects during GC * backport microtasks fix * fix compile * fix node_stream_loader reentrancy * update subframe spec to expect undefined instead of null * write undefined instead of crashing when serializing host objects * fix webview spec * fix download spec * buffers are transformed into uint8arrays * can't serialize promises * fix chrome.i18n.getMessage * fix devtools tests * fix zoom test * fix debug build * fix lint * update ipcRenderer tests * fix printToPDF test * update patch * remove accidentally re-added remote-side spec * wip * don't attempt to serialize host objects * jump through different hoops to set options.webContents sometimes * whoops * fix lint * clean up error-handling logic * fix memory leak * fix lint * convert host objects using old base::Value serialization * fix lint more * fall back to base::Value-based serialization * remove commented-out code * add docs to breaking-changes.md * Update breaking-changes.md * update ipcRenderer and WebContents docs * lint * use named values for format tag * save a memcpy for ~30% speedup * get rid of calls to ShallowClone * extra debugging for paranoia * d'oh, use the correct named tags * apparently msstl doesn't like this DCHECK * funny story about that DCHECK * disable remote-related functions when enable_remote_module = false * nits * use EnableIf to disable remote methods in mojom * fix include * review comments
2019-10-09 17:59:08 +00:00
guest.on('new-window', function (event, url, frameName, disposition, options, additionalFeatures, referrer) {
sendToEmbedder('ELECTRON_GUEST_VIEW_INTERNAL_DISPATCH_EVENT', 'new-window', url,
frameName, disposition, sanitizeOptionsForGuest(options),
2020-03-20 20:28:31 +00:00
additionalFeatures, referrer);
});
refactor: use v8 serialization for ipc (#20214) * refactor: use v8 serialization for ipc * cloning process.env doesn't work * serialize host objects by enumerating key/values * new serialization can handle NaN, Infinity, and undefined correctly * can't allocate v8 objects during GC * backport microtasks fix * fix compile * fix node_stream_loader reentrancy * update subframe spec to expect undefined instead of null * write undefined instead of crashing when serializing host objects * fix webview spec * fix download spec * buffers are transformed into uint8arrays * can't serialize promises * fix chrome.i18n.getMessage * fix devtools tests * fix zoom test * fix debug build * fix lint * update ipcRenderer tests * fix printToPDF test * update patch * remove accidentally re-added remote-side spec * wip * don't attempt to serialize host objects * jump through different hoops to set options.webContents sometimes * whoops * fix lint * clean up error-handling logic * fix memory leak * fix lint * convert host objects using old base::Value serialization * fix lint more * fall back to base::Value-based serialization * remove commented-out code * add docs to breaking-changes.md * Update breaking-changes.md * update ipcRenderer and WebContents docs * lint * use named values for format tag * save a memcpy for ~30% speedup * get rid of calls to ShallowClone * extra debugging for paranoia * d'oh, use the correct named tags * apparently msstl doesn't like this DCHECK * funny story about that DCHECK * disable remote-related functions when enable_remote_module = false * nits * use EnableIf to disable remote methods in mojom * fix include * review comments
2019-10-09 17:59:08 +00:00
2016-01-14 18:35:29 +00:00
// Dispatch guest's IPC messages to embedder.
guest.on('ipc-message-host', function (_, channel, args) {
2020-03-20 20:28:31 +00:00
sendToEmbedder('ELECTRON_GUEST_VIEW_INTERNAL_IPC_MESSAGE', channel, ...args);
});
2016-01-12 02:40:23 +00:00
// Notify guest of embedder window visibility when it is ready
2017-06-14 21:12:51 +00:00
// FIXME Remove once https://github.com/electron/electron/issues/6828 is fixed
guest.on('dom-ready', function () {
2020-03-20 20:28:31 +00:00
const guestInstance = guestInstances[guestInstanceId];
if (guestInstance != null && guestInstance.visibilityState != null) {
2020-03-20 20:28:31 +00:00
guest._sendInternal('ELECTRON_GUEST_INSTANCE_VISIBILITY_CHANGE', guestInstance.visibilityState);
}
2020-03-20 20:28:31 +00:00
});
2020-03-20 20:28:31 +00:00
return guestInstanceId;
};
2016-01-12 02:40:23 +00:00
2016-01-14 18:35:29 +00:00
// Attach the guest to an element of embedder.
const attachGuest = function (event, embedderFrameId, elementInstanceId, guestInstanceId, params) {
2020-03-20 20:28:31 +00:00
const embedder = event.sender;
2016-01-14 18:35:29 +00:00
// Destroy the old guest when attaching.
2020-03-20 20:28:31 +00:00
const key = `${embedder.id}-${elementInstanceId}`;
const oldGuestInstanceId = embedderElementsMap[key];
2016-01-12 02:40:23 +00:00
if (oldGuestInstanceId != null) {
// Reattachment to the same guest is just a no-op.
2016-01-12 02:40:23 +00:00
if (oldGuestInstanceId === guestInstanceId) {
2020-03-20 20:28:31 +00:00
return;
2016-01-12 02:40:23 +00:00
}
2020-03-20 20:28:31 +00:00
const oldGuestInstance = guestInstances[oldGuestInstanceId];
if (oldGuestInstance) {
2020-03-20 20:28:31 +00:00
oldGuestInstance.guest.detachFromOuterFrame();
}
2016-01-12 02:40:23 +00:00
}
2020-03-20 20:28:31 +00:00
const guestInstance = guestInstances[guestInstanceId];
// If this isn't a valid guest instance then do nothing.
if (!guestInstance) {
2020-03-20 20:28:31 +00:00
throw new Error(`Invalid guestInstanceId: ${guestInstanceId}`);
}
2020-03-20 20:28:31 +00:00
const { guest } = guestInstance;
if (guest.hostWebContents !== event.sender) {
2020-03-20 20:28:31 +00:00
throw new Error(`Access denied to guestInstanceId: ${guestInstanceId}`);
}
// If this guest is already attached to an element then remove it
if (guestInstance.elementInstanceId) {
2020-03-20 20:28:31 +00:00
const oldKey = `${guestInstance.embedder.id}-${guestInstance.elementInstanceId}`;
delete embedderElementsMap[oldKey];
// Remove guest from embedder if moving across web views
if (guest.viewInstanceId !== params.instanceId) {
2020-03-20 20:28:31 +00:00
webViewManager.removeGuest(guestInstance.embedder, guestInstanceId);
guestInstance.embedder._sendInternal(`ELECTRON_GUEST_VIEW_INTERNAL_DESTROY_GUEST-${guest.viewInstanceId}`);
}
}
// parse the 'webpreferences' attribute string, if set
// this uses the same parsing rules as window.open uses for its features
const parsedWebPreferences =
typeof params.webpreferences === 'string'
? parseWebViewWebPreferences(params.webpreferences)
: null;
2016-11-03 17:39:40 +00:00
const webPreferences = {
2016-01-12 02:40:23 +00:00
guestInstanceId: guestInstanceId,
2016-11-03 17:39:40 +00:00
nodeIntegration: params.nodeintegration != null ? params.nodeintegration : false,
nodeIntegrationInSubFrames: params.nodeintegrationinsubframes != null ? params.nodeintegrationinsubframes : false,
enableRemoteModule: params.enableremotemodule,
2016-01-12 02:40:23 +00:00
plugins: params.plugins,
zoomFactor: embedder.zoomFactor,
disablePopups: !params.allowpopups,
2016-01-21 10:13:41 +00:00
webSecurity: !params.disablewebsecurity,
enableBlinkFeatures: params.blinkfeatures,
disableBlinkFeatures: params.disableblinkfeatures,
...parsedWebPreferences
2020-03-20 20:28:31 +00:00
};
2016-01-12 02:40:23 +00:00
if (params.preload) {
2020-03-20 20:28:31 +00:00
webPreferences.preloadURL = params.preload;
2016-01-12 02:40:23 +00:00
}
// Security options that guest will always inherit from embedder
const inheritedWebPreferences = new Map([
['contextIsolation', true],
['javascript', false],
['nativeWindowOpen', true],
['nodeIntegration', false],
['enableRemoteModule', false],
['sandbox', true],
['nodeIntegrationInSubFrames', false],
['enableWebSQL', false]
2020-03-20 20:28:31 +00:00
]);
// Inherit certain option values from embedder
2020-03-20 20:28:31 +00:00
const lastWebPreferences = embedder.getLastWebPreferences();
for (const [name, value] of inheritedWebPreferences) {
if (lastWebPreferences[name] === value) {
2020-03-20 20:28:31 +00:00
webPreferences[name] = value;
}
}
2020-03-20 20:28:31 +00:00
embedder.emit('will-attach-webview', event, webPreferences, params);
if (event.defaultPrevented) {
2020-03-20 20:28:31 +00:00
if (guest.viewInstanceId == null) guest.viewInstanceId = params.instanceId;
guest.destroy();
return;
}
2020-03-20 20:28:31 +00:00
guest.attachParams = params;
embedderElementsMap[key] = guestInstanceId;
2020-03-20 20:28:31 +00:00
guest.setEmbedder(embedder);
guestInstance.embedder = embedder;
guestInstance.elementInstanceId = elementInstanceId;
2020-03-20 20:28:31 +00:00
watchEmbedder(embedder);
2016-01-12 02:40:23 +00:00
2020-03-20 20:28:31 +00:00
webViewManager.addGuest(guestInstanceId, elementInstanceId, embedder, guest, webPreferences);
guest.attachToIframe(embedder, embedderFrameId);
};
// Remove an guest-embedder relationship.
const detachGuest = function (embedder, guestInstanceId) {
2020-03-20 20:28:31 +00:00
const guestInstance = guestInstances[guestInstanceId];
if (!guestInstance) return;
if (embedder !== guestInstance.embedder) {
2020-03-20 20:28:31 +00:00
return;
}
2020-03-20 20:28:31 +00:00
webViewManager.removeGuest(embedder, guestInstanceId);
delete guestInstances[guestInstanceId];
2020-03-20 20:28:31 +00:00
const key = `${embedder.id}-${guestInstance.elementInstanceId}`;
delete embedderElementsMap[key];
};
// Once an embedder has had a guest attached we watch it for destruction to
// destroy any remaining guests.
2020-03-20 20:28:31 +00:00
const watchedEmbedders = new Set();
const watchEmbedder = function (embedder) {
if (watchedEmbedders.has(embedder)) {
2020-03-20 20:28:31 +00:00
return;
}
2020-03-20 20:28:31 +00:00
watchedEmbedders.add(embedder);
// Forward embedder window visiblity change events to guest
const onVisibilityChange = function (visibilityState) {
for (const guestInstanceId of Object.keys(guestInstances)) {
2020-03-20 20:28:31 +00:00
const guestInstance = guestInstances[guestInstanceId];
guestInstance.visibilityState = visibilityState;
if (guestInstance.embedder === embedder) {
2020-03-20 20:28:31 +00:00
guestInstance.guest._sendInternal('ELECTRON_GUEST_INSTANCE_VISIBILITY_CHANGE', visibilityState);
}
}
2020-03-20 20:28:31 +00:00
};
embedder.on('-window-visibility-change', onVisibilityChange);
embedder.once('will-destroy', () => {
// Usually the guestInstances is cleared when guest is destroyed, but it
// may happen that the embedder gets manually destroyed earlier than guest,
// and the embedder will be invalid in the usual code path.
for (const guestInstanceId of Object.keys(guestInstances)) {
2020-03-20 20:28:31 +00:00
const guestInstance = guestInstances[guestInstanceId];
if (guestInstance.embedder === embedder) {
2020-03-20 20:28:31 +00:00
detachGuest(embedder, parseInt(guestInstanceId));
}
}
// Clear the listeners.
2020-03-20 20:28:31 +00:00
embedder.removeListener('-window-visibility-change', onVisibilityChange);
watchedEmbedders.delete(embedder);
});
};
2016-01-12 02:40:23 +00:00
2020-03-20 20:28:31 +00:00
const isWebViewTagEnabledCache = new WeakMap();
const isWebViewTagEnabled = function (contents) {
if (!isWebViewTagEnabledCache.has(contents)) {
2020-03-20 20:28:31 +00:00
const webPreferences = contents.getLastWebPreferences() || {};
isWebViewTagEnabledCache.set(contents, !!webPreferences.webviewTag);
}
2020-03-20 20:28:31 +00:00
return isWebViewTagEnabledCache.get(contents);
};
const makeSafeHandler = function (channel, handler) {
return (event, ...args) => {
if (isWebViewTagEnabled(event.sender)) {
2020-03-20 20:28:31 +00:00
return handler(event, ...args);
} else {
2020-03-20 20:28:31 +00:00
console.error(`<webview> IPC message ${channel} sent by WebContents with <webview> disabled (${event.sender.id})`);
throw new Error('<webview> disabled');
}
2020-03-20 20:28:31 +00:00
};
};
const handleMessage = function (channel, handler) {
2020-03-20 20:28:31 +00:00
ipcMainInternal.handle(channel, makeSafeHandler(channel, handler));
};
const handleMessageSync = function (channel, handler) {
2020-03-20 20:28:31 +00:00
ipcMainUtils.handleSync(channel, makeSafeHandler(channel, handler));
};
handleMessage('ELECTRON_GUEST_VIEW_MANAGER_CREATE_GUEST', function (event, params) {
2020-03-20 20:28:31 +00:00
return createGuest(event.sender, params);
});
handleMessage('ELECTRON_GUEST_VIEW_MANAGER_ATTACH_GUEST', function (event, embedderFrameId, elementInstanceId, guestInstanceId, params) {
try {
2020-03-20 20:28:31 +00:00
attachGuest(event, embedderFrameId, elementInstanceId, guestInstanceId, params);
} catch (error) {
2020-03-20 20:28:31 +00:00
console.error(`Guest attach failed: ${error}`);
}
2020-03-20 20:28:31 +00:00
});
2016-01-12 02:40:23 +00:00
handleMessageSync('ELECTRON_GUEST_VIEW_MANAGER_DETACH_GUEST', function (event, guestInstanceId) {
return detachGuest(event.sender, guestInstanceId);
});
// this message is sent by the actual <webview>
ipcMainInternal.on('ELECTRON_GUEST_VIEW_MANAGER_FOCUS_CHANGE', function (event, focus, guestInstanceId) {
2020-03-20 20:28:31 +00:00
const guest = getGuest(guestInstanceId);
if (guest === event.sender) {
2020-03-20 20:28:31 +00:00
event.sender.emit('focus-change', {}, focus, guestInstanceId);
} else {
2020-03-20 20:28:31 +00:00
console.error(`focus-change for guestInstanceId: ${guestInstanceId}`);
}
2020-03-20 20:28:31 +00:00
});
handleMessage('ELECTRON_GUEST_VIEW_MANAGER_CALL', function (event, guestInstanceId, method, args) {
2020-03-20 20:28:31 +00:00
const guest = getGuestForWebContents(guestInstanceId, event.sender);
if (!asyncMethods.has(method)) {
2020-03-20 20:28:31 +00:00
throw new Error(`Invalid method: ${method}`);
}
2020-03-20 20:28:31 +00:00
return guest[method](...args);
});
handleMessageSync('ELECTRON_GUEST_VIEW_MANAGER_CALL', function (event, guestInstanceId, method, args) {
2020-03-20 20:28:31 +00:00
const guest = getGuestForWebContents(guestInstanceId, event.sender);
if (!syncMethods.has(method)) {
2020-03-20 20:28:31 +00:00
throw new Error(`Invalid method: ${method}`);
}
2020-03-20 20:28:31 +00:00
return guest[method](...args);
});
handleMessageSync('ELECTRON_GUEST_VIEW_MANAGER_PROPERTY_GET', function (event, guestInstanceId, property) {
2020-03-20 20:28:31 +00:00
const guest = getGuestForWebContents(guestInstanceId, event.sender);
if (!properties.has(property)) {
2020-03-20 20:28:31 +00:00
throw new Error(`Invalid property: ${property}`);
}
2020-03-20 20:28:31 +00:00
return guest[property];
});
handleMessageSync('ELECTRON_GUEST_VIEW_MANAGER_PROPERTY_SET', function (event, guestInstanceId, property, val) {
2020-03-20 20:28:31 +00:00
const guest = getGuestForWebContents(guestInstanceId, event.sender);
if (!properties.has(property)) {
2020-03-20 20:28:31 +00:00
throw new Error(`Invalid property: ${property}`);
}
2020-03-20 20:28:31 +00:00
guest[property] = val;
});
handleMessage('ELECTRON_GUEST_VIEW_MANAGER_CAPTURE_PAGE', async function (event, guestInstanceId, args) {
2020-03-20 20:28:31 +00:00
const guest = getGuestForWebContents(guestInstanceId, event.sender);
2020-03-20 20:28:31 +00:00
return serialize(await guest.capturePage(...args));
});
// Returns WebContents from its guest id hosted in given webContents.
const getGuestForWebContents = function (guestInstanceId, contents) {
2020-03-20 20:28:31 +00:00
const guest = getGuest(guestInstanceId);
if (!guest) {
2020-03-20 20:28:31 +00:00
throw new Error(`Invalid guestInstanceId: ${guestInstanceId}`);
}
if (guest.hostWebContents !== contents) {
2020-03-20 20:28:31 +00:00
throw new Error(`Access denied to guestInstanceId: ${guestInstanceId}`);
}
2020-03-20 20:28:31 +00:00
return guest;
};
2016-01-14 18:35:29 +00:00
// Returns WebContents from its guest id.
2016-11-03 17:39:40 +00:00
const getGuest = function (guestInstanceId) {
2020-03-20 20:28:31 +00:00
const guestInstance = guestInstances[guestInstanceId];
if (guestInstance != null) return guestInstance.guest;
};
2016-01-12 02:40:23 +00:00
2020-03-20 20:28:31 +00:00
exports.isWebViewTagEnabled = isWebViewTagEnabled;