const dispatch = require('../dispatch/central-dispatch'); const log = require('../util/log'); const maybeFormatMessage = require('../util/maybe-format-message'); const BlockType = require('./block-type'); const SecurityManager = require('./tw-security-manager'); // These extensions are currently built into the VM repository but should not be loaded at startup. // TODO: move these out into a separate repository? // TODO: change extension spec so that library info, including extension ID, can be collected through static methods const defaultBuiltinExtensions = { // This is an example that isn't loaded with the other core blocks, // but serves as a reference for loading core blocks as extensions. coreExample: () => require('../blocks/scratch3_core_example'), // These are the non-core built-in extensions. pen: () => require('../extensions/scratch3_pen'), wedo2: () => require('../extensions/scratch3_wedo2'), music: () => require('../extensions/scratch3_music'), microbit: () => require('../extensions/scratch3_microbit'), text2speech: () => require('../extensions/scratch3_text2speech'), translate: () => require('../extensions/scratch3_translate'), videoSensing: () => require('../extensions/scratch3_video_sensing'), ev3: () => require('../extensions/scratch3_ev3'), makeymakey: () => require('../extensions/scratch3_makeymakey'), boost: () => require('../extensions/scratch3_boost'), gdxfor: () => require('../extensions/scratch3_gdx_for'), // tw: core extension tw: () => require('../extensions/tw') }; /** * @typedef {object} ArgumentInfo - Information about an extension block argument * @property {ArgumentType} type - the type of value this argument can take * @property {*|undefined} default - the default value of this argument (default: blank) */ /** * @typedef {object} ConvertedBlockInfo - Raw extension block data paired with processed data ready for scratch-blocks * @property {ExtensionBlockMetadata} info - the raw block info * @property {object} json - the scratch-blocks JSON definition for this block * @property {string} xml - the scratch-blocks XML definition for this block */ /** * @typedef {object} CategoryInfo - Information about a block category * @property {string} id - the unique ID of this category * @property {string} name - the human-readable name of this category * @property {string|undefined} blockIconURI - optional URI for the block icon image * @property {string} color1 - the primary color for this category, in '#rrggbb' format * @property {string} color2 - the secondary color for this category, in '#rrggbb' format * @property {string} color3 - the tertiary color for this category, in '#rrggbb' format * @property {Array.} blocks - the blocks, separators, etc. in this category * @property {Array.} menus - the menus provided by this category */ /** * @typedef {object} PendingExtensionWorker - Information about an extension worker still initializing * @property {string} extensionURL - the URL of the extension to be loaded by this worker * @property {Function} resolve - function to call on successful worker startup * @property {Function} reject - function to call on failed worker startup */ const createExtensionService = extensionManager => { const service = {}; service.registerExtensionServiceSync = extensionManager.registerExtensionServiceSync.bind(extensionManager); service.allocateWorker = extensionManager.allocateWorker.bind(extensionManager); service.onWorkerInit = extensionManager.onWorkerInit.bind(extensionManager); service.registerExtensionService = extensionManager.registerExtensionService.bind(extensionManager); return service; }; class ExtensionManager { constructor (vm) { /** * The ID number to provide to the next extension worker. * @type {int} */ this.nextExtensionWorker = 0; /** * FIFO queue of extensions which have been requested but not yet loaded in a worker, * along with promise resolution functions to call once the worker is ready or failed. * * @type {Array.} */ this.pendingExtensions = []; /** * Map of worker ID to workers which have been allocated but have not yet finished initialization. * @type {Array.} */ this.pendingWorkers = []; /** * Map of worker ID to the URL where it was loaded from. * @type {Array} */ this.workerURLs = []; /** * Map of loaded extension URLs/IDs (equivalent for built-in extensions) to service name. * @type {Map.} * @private */ this._loadedExtensions = new Map(); /** * Responsible for determining security policies related to custom extensions. */ this.securityManager = new SecurityManager(); /** * @type {VirtualMachine} */ this.vm = vm; /** * Keep a reference to the runtime so we can construct internal extension objects. * TODO: remove this in favor of extensions accessing the runtime as a service. * @type {Runtime} */ this.runtime = vm.runtime; this.loadingAsyncExtensions = 0; this.asyncExtensionsLoadedCallbacks = []; this.builtinExtensions = Object.assign({}, defaultBuiltinExtensions); dispatch.setService('extensions', createExtensionService(this)).catch(e => { log.error(`ExtensionManager was unable to register extension service: ${JSON.stringify(e)}`); }); } /** * Check whether an extension is registered or is in the process of loading. This is intended to control loading or * adding extensions so it may return `true` before the extension is ready to be used. Use the promise returned by * `loadExtensionURL` if you need to wait until the extension is truly ready. * @param {string} extensionID - the ID of the extension. * @returns {boolean} - true if loaded, false otherwise. */ isExtensionLoaded (extensionID) { return this._loadedExtensions.has(extensionID); } /** * Determine whether an extension with a given ID is built in to the VM, such as pen. * Note that "core extensions" like motion will return false here. * @param {string} extensionId * @returns {boolean} */ isBuiltinExtension (extensionId) { return Object.prototype.hasOwnProperty.call(this.builtinExtensions, extensionId); } /** * Synchronously load an internal extension (core or non-core) by ID. This call will * fail if the provided id is not does not match an internal extension. * @param {string} extensionId - the ID of an internal extension */ loadExtensionIdSync (extensionId) { if (!this.isBuiltinExtension(extensionId)) { log.warn(`Could not find extension ${extensionId} in the built in extensions.`); return; } /** @TODO dupe handling for non-builtin extensions. See commit 670e51d33580e8a2e852b3b038bb3afc282f81b9 */ if (this.isExtensionLoaded(extensionId)) { const message = `Rejecting attempt to load a second extension with ID ${extensionId}`; log.warn(message); return; } const extension = this.builtinExtensions[extensionId](); const extensionInstance = new extension(this.runtime); const serviceName = this._registerInternalExtension(extensionInstance); this._loadedExtensions.set(extensionId, serviceName); this.runtime.compilerRegisterExtension(extensionId, extensionInstance); } addBuiltinExtension (extensionId, extensionClass) { this.builtinExtensions[extensionId] = () => extensionClass; } _isValidExtensionURL (extensionURL) { try { const parsedURL = new URL(extensionURL); return ( parsedURL.protocol === 'https:' || parsedURL.protocol === 'http:' || parsedURL.protocol === 'data:' || parsedURL.protocol === 'file:' ); } catch (e) { return false; } } /** * Load an extension by URL or internal extension ID * @param {string} extensionURL - the URL for the extension to load OR the ID of an internal extension * @returns {Promise} resolved once the extension is loaded and initialized or rejected on failure */ async loadExtensionURL (extensionURL) { if (this.isBuiltinExtension(extensionURL)) { this.loadExtensionIdSync(extensionURL); return; } if (this.isExtensionURLLoaded(extensionURL)) { // Extension is already loaded. return; } if (!this._isValidExtensionURL(extensionURL)) { throw new Error(`Invalid extension URL: ${extensionURL}`); } this.runtime.setExternalCommunicationMethod('customExtensions', true); this.loadingAsyncExtensions++; const sandboxMode = await this.securityManager.getSandboxMode(extensionURL); const rewritten = await this.securityManager.rewriteExtensionURL(extensionURL); if (sandboxMode === 'unsandboxed') { const {load} = require('./tw-unsandboxed-extension-runner'); const extensionObjects = await load(rewritten, this.vm) .catch(error => this._failedLoadingExtensionScript(error)); const fakeWorkerId = this.nextExtensionWorker++; this.workerURLs[fakeWorkerId] = extensionURL; for (const extensionObject of extensionObjects) { const extensionInfo = extensionObject.getInfo(); const serviceName = `unsandboxed.${fakeWorkerId}.${extensionInfo.id}`; dispatch.setServiceSync(serviceName, extensionObject); dispatch.callSync('extensions', 'registerExtensionServiceSync', serviceName); this._loadedExtensions.set(extensionInfo.id, serviceName); } this._finishedLoadingExtensionScript(); return; } /* eslint-disable max-len */ let ExtensionWorker; if (sandboxMode === 'worker') { ExtensionWorker = require('worker-loader?name=js/extension-worker/extension-worker.[hash].js!./extension-worker'); } else if (sandboxMode === 'iframe') { ExtensionWorker = (await import(/* webpackChunkName: "iframe-extension-worker" */ './tw-iframe-extension-worker')).default; } else { throw new Error(`Invalid sandbox mode: ${sandboxMode}`); } /* eslint-enable max-len */ return new Promise((resolve, reject) => { this.pendingExtensions.push({extensionURL: rewritten, resolve, reject}); dispatch.addWorker(new ExtensionWorker()); }).catch(error => this._failedLoadingExtensionScript(error)); } /** * Wait until all async extensions have loaded * @returns {Promise} resolved when all async extensions have loaded */ allAsyncExtensionsLoaded () { if (this.loadingAsyncExtensions === 0) { return; } return new Promise((resolve, reject) => { this.asyncExtensionsLoadedCallbacks.push({ resolve, reject }); }); } /** * Regenerate blockinfo for any loaded extensions * @returns {Promise} resolved once all the extensions have been reinitialized */ refreshBlocks () { const allPromises = Array.from(this._loadedExtensions.values()).map(serviceName => dispatch.call(serviceName, 'getInfo') .then(info => { info = this._prepareExtensionInfo(serviceName, info); dispatch.call('runtime', '_refreshExtensionPrimitives', info); }) .catch(e => { log.error('Failed to refresh built-in extension primitives', e); }) ); return Promise.all(allPromises); } allocateWorker () { const id = this.nextExtensionWorker++; const workerInfo = this.pendingExtensions.shift(); this.pendingWorkers[id] = workerInfo; this.workerURLs[id] = workerInfo.extensionURL; return [id, workerInfo.extensionURL]; } /** * Synchronously collect extension metadata from the specified service and begin the extension registration process. * @param {string} serviceName - the name of the service hosting the extension. */ registerExtensionServiceSync (serviceName) { const info = dispatch.callSync(serviceName, 'getInfo'); this._registerExtensionInfo(serviceName, info); } /** * Collect extension metadata from the specified service and begin the extension registration process. * @param {string} serviceName - the name of the service hosting the extension. */ registerExtensionService (serviceName) { dispatch.call(serviceName, 'getInfo').then(info => { this._loadedExtensions.set(info.id, serviceName); this._registerExtensionInfo(serviceName, info); this._finishedLoadingExtensionScript(); }); } _finishedLoadingExtensionScript () { this.loadingAsyncExtensions--; if (this.loadingAsyncExtensions === 0) { this.asyncExtensionsLoadedCallbacks.forEach(i => i.resolve()); this.asyncExtensionsLoadedCallbacks = []; } } _failedLoadingExtensionScript (error) { // Don't set the current extension counter to 0, otherwise it will go negative if another // extension finishes or fails to load. this.loadingAsyncExtensions--; this.asyncExtensionsLoadedCallbacks.forEach(i => i.reject(error)); this.asyncExtensionsLoadedCallbacks = []; // Re-throw error so the promise still rejects. throw error; } /** * Called by an extension worker to indicate that the worker has finished initialization. * @param {int} id - the worker ID. * @param {*?} e - the error encountered during initialization, if any. */ onWorkerInit (id, e) { const workerInfo = this.pendingWorkers[id]; delete this.pendingWorkers[id]; if (e) { workerInfo.reject(e); } else { workerInfo.resolve(); } } /** * Register an internal (non-Worker) extension object * @param {object} extensionObject - the extension object to register * @returns {string} The name of the registered extension service */ _registerInternalExtension (extensionObject) { const extensionInfo = extensionObject.getInfo(); const fakeWorkerId = this.nextExtensionWorker++; const serviceName = `extension_${fakeWorkerId}_${extensionInfo.id}`; dispatch.setServiceSync(serviceName, extensionObject); dispatch.callSync('extensions', 'registerExtensionServiceSync', serviceName); return serviceName; } /** * Sanitize extension info then register its primitives with the VM. * @param {string} serviceName - the name of the service hosting the extension * @param {ExtensionInfo} extensionInfo - the extension's metadata * @private */ _registerExtensionInfo (serviceName, extensionInfo) { extensionInfo = this._prepareExtensionInfo(serviceName, extensionInfo); dispatch.call('runtime', '_registerExtensionPrimitives', extensionInfo).catch(e => { log.error(`Failed to register primitives for extension on service ${serviceName}:`, e); }); } /** * Apply minor cleanup and defaults for optional extension fields. * TODO: make the ID unique in cases where two copies of the same extension are loaded. * @param {string} serviceName - the name of the service hosting this extension block * @param {ExtensionInfo} extensionInfo - the extension info to be sanitized * @returns {ExtensionInfo} - a new extension info object with cleaned-up values * @private */ _prepareExtensionInfo (serviceName, extensionInfo) { extensionInfo = Object.assign({}, extensionInfo); if (!/^[a-z0-9]+$/i.test(extensionInfo.id)) { throw new Error('Invalid extension id'); } extensionInfo.name = extensionInfo.name || extensionInfo.id; extensionInfo.blocks = extensionInfo.blocks || []; extensionInfo.targetTypes = extensionInfo.targetTypes || []; extensionInfo.blocks = extensionInfo.blocks.reduce((results, blockInfo) => { try { let result; switch (blockInfo) { case '---': // separator result = '---'; break; default: // an ExtensionBlockMetadata object result = this._prepareBlockInfo(serviceName, blockInfo); break; } results.push(result); } catch (e) { // TODO: more meaningful error reporting log.error(`Error processing block: ${e.message}, Block:\n${JSON.stringify(blockInfo)}`); } return results; }, []); extensionInfo.menus = extensionInfo.menus || {}; extensionInfo.menus = this._prepareMenuInfo(serviceName, extensionInfo.menus); return extensionInfo; } /** * Prepare extension menus. e.g. setup binding for dynamic menu functions. * @param {string} serviceName - the name of the service hosting this extension block * @param {Array.} menus - the menu defined by the extension. * @returns {Array.} - a menuInfo object with all preprocessing done. * @private */ _prepareMenuInfo (serviceName, menus) { const menuNames = Object.getOwnPropertyNames(menus); for (let i = 0; i < menuNames.length; i++) { const menuName = menuNames[i]; let menuInfo = menus[menuName]; // If the menu description is in short form (items only) then normalize it to general form: an object with // its items listed in an `items` property. if (!menuInfo.items) { menuInfo = { items: menuInfo }; menus[menuName] = menuInfo; } // If `items` is a string, it should be the name of a function in the extension object. Calling the // function should return an array of items to populate the menu when it is opened. if (typeof menuInfo.items === 'string') { const menuItemFunctionName = menuInfo.items; const serviceObject = dispatch.services[serviceName]; // Bind the function here so we can pass a simple item generation function to Scratch Blocks later. menuInfo.items = this._getExtensionMenuItems.bind(this, serviceObject, menuItemFunctionName); } } return menus; } /** * Fetch the items for a particular extension menu, providing the target ID for context. * @param {object} extensionObject - the extension object providing the menu. * @param {string} menuItemFunctionName - the name of the menu function to call. * @returns {Array} menu items ready for scratch-blocks. * @private */ _getExtensionMenuItems (extensionObject, menuItemFunctionName) { // Fetch the items appropriate for the target currently being edited. This assumes that menus only // collect items when opened by the user while editing a particular target. const editingTarget = this.runtime.getEditingTarget() || this.runtime.getTargetForStage(); const editingTargetID = editingTarget ? editingTarget.id : null; const extensionMessageContext = this.runtime.makeMessageContextForTarget(editingTarget); // TODO: Fix this to use dispatch.call when extensions are running in workers. const menuFunc = extensionObject[menuItemFunctionName]; const menuItems = menuFunc.call(extensionObject, editingTargetID).map( item => { item = maybeFormatMessage(item, extensionMessageContext); switch (typeof item) { case 'object': return [ maybeFormatMessage(item.text, extensionMessageContext), item.value ]; case 'string': return [item, item]; default: return item; } }); if (!menuItems || menuItems.length < 1) { throw new Error(`Extension menu returned no items: ${menuItemFunctionName}`); } return menuItems; } /** * Apply defaults for optional block fields. * @param {string} serviceName - the name of the service hosting this extension block * @param {ExtensionBlockMetadata} blockInfo - the block info from the extension * @returns {ExtensionBlockMetadata} - a new block info object which has values for all relevant optional fields. * @private */ _prepareBlockInfo (serviceName, blockInfo) { if (blockInfo.blockType === BlockType.XML) { blockInfo = Object.assign({}, blockInfo); blockInfo.xml = String(blockInfo.xml) || ''; return blockInfo; } blockInfo = Object.assign({}, { blockType: BlockType.COMMAND, terminal: false, blockAllThreads: false, arguments: {} }, blockInfo); blockInfo.text = blockInfo.text || blockInfo.opcode; switch (blockInfo.blockType) { case BlockType.EVENT: if (blockInfo.func) { log.warn(`Ignoring function "${blockInfo.func}" for event block ${blockInfo.opcode}`); } break; case BlockType.BUTTON: if (blockInfo.opcode) { log.warn(`Ignoring opcode "${blockInfo.opcode}" for button with text: ${blockInfo.text}`); } blockInfo.callFunc = () => { dispatch.call(serviceName, blockInfo.func); }; break; case BlockType.LABEL: if (blockInfo.opcode) { log.warn(`Ignoring opcode "${blockInfo.opcode}" for label: ${blockInfo.text}`); } break; default: { if (!blockInfo.opcode) { throw new Error('Missing opcode for block'); } const funcName = blockInfo.func || blockInfo.opcode; const getBlockInfo = blockInfo.isDynamic ? args => args && args.mutation && args.mutation.blockInfo : () => blockInfo; const callBlockFunc = (() => { if (dispatch._isRemoteService(serviceName)) { return (args, util, realBlockInfo) => dispatch.call(serviceName, funcName, args, util, realBlockInfo) .then(result => { // Scratch is only designed to handle these types. // If any other value comes in such as undefined, null, an object, etc. // we'll convert it to a string to avoid undefined behavior. if ( typeof result === 'number' || typeof result === 'string' || typeof result === 'boolean' ) { return result; } return `${result}`; }); } // avoid promise latency if we can call direct const serviceObject = dispatch.services[serviceName]; if (!serviceObject[funcName]) { // The function might show up later as a dynamic property of the service object log.warn(`Could not find extension block function called ${funcName}`); } return (args, util, realBlockInfo) => serviceObject[funcName](args, util, realBlockInfo); })(); blockInfo.func = (args, util) => { const realBlockInfo = getBlockInfo(args); // TODO: filter args using the keys of realBlockInfo.arguments? maybe only if sandboxed? return callBlockFunc(args, util, realBlockInfo); }; break; } } return blockInfo; } getExtensionURLs () { const extensionURLs = {}; for (const [extensionId, serviceName] of this._loadedExtensions.entries()) { if (Object.prototype.hasOwnProperty.call(this.builtinExtensions, extensionId)) { continue; } // Service names for extension workers are in the format "extension.WORKER_ID.EXTENSION_ID" const workerId = +serviceName.split('.')[1]; const extensionURL = this.workerURLs[workerId]; if (typeof extensionURL === 'string') { extensionURLs[extensionId] = extensionURL; } } return extensionURLs; } isExtensionURLLoaded (url) { return Object.values(this.workerURLs).includes(url); } } module.exports = ExtensionManager;