From e8424d71dba011d5b1643774a076a9bec9bac329 Mon Sep 17 00:00:00 2001 From: Robert Swain Date: Mon, 4 Sep 2017 09:33:08 +0200 Subject: [PATCH] ElectronPlatform.js: Add Jitsi screensharing support --- src/vector/platform/ElectronPlatform.js | 41 ++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/src/vector/platform/ElectronPlatform.js b/src/vector/platform/ElectronPlatform.js index 8e97f23862..5f6783e7d0 100644 --- a/src/vector/platform/ElectronPlatform.js +++ b/src/vector/platform/ElectronPlatform.js @@ -21,7 +21,7 @@ import VectorBasePlatform, {updateCheckStatusEnum} from './VectorBasePlatform'; import dis from 'matrix-react-sdk/lib/dispatcher'; import { _t } from 'matrix-react-sdk/lib/languageHandler'; import Promise from 'bluebird'; -import {remote, ipcRenderer} from 'electron'; +import electron, {remote, ipcRenderer} from 'electron'; import rageshake from '../rageshake'; remote.autoUpdater.on('update-downloaded', onUpdateDownloaded); @@ -207,4 +207,43 @@ export default class ElectronPlatform extends VectorBasePlatform { reload() { remote.getCurrentWebContents().reload(); } + + /* BEGIN copied and slightly-modified code + * setupScreenSharingForIframe function from: + * https://github.com/jitsi/jitsi-meet-electron-utils + * Copied directly here to avoid the need for a native electron module for + * 'just a bit of JavaScript' + * NOTE: Apache v2.0 licensed + */ + setupScreenSharingForIframe(iframe: Object) { + iframe.contentWindow.JitsiMeetElectron = { + /** + * Get sources available for screensharing. The callback is invoked + * with an array of DesktopCapturerSources. + * + * @param {Function} callback - The success callback. + * @param {Function} errorCallback - The callback for errors. + * @param {Object} options - Configuration for getting sources. + * @param {Array} options.types - Specify the desktop source types + * to get, with valid sources being "window" and "screen". + * @param {Object} options.thumbnailSize - Specify how big the + * preview images for the sources should be. The valid keys are + * height and width, e.g. { height: number, width: number}. By + * default electron will return images with height and width of + * 150px. + */ + obtainDesktopStreams(callback, errorCallback, options = {}) { + electron.desktopCapturer.getSources(options, + (error, sources) => { + if (error) { + errorCallback(error); + return; + } + + callback(sources); + }); + }, + }; + } + /* END of copied and slightly-modified code */ }