// ***************************************************************************** // Copyright (C) 2024 STMicroelectronics. // // This program and the accompanying materials are made available under the // terms of the Eclipse Public License v. 2.0 which is available at // http://www.eclipse.org/legal/epl-2.0. // // This Source Code may also be made available under the following Secondary // Licenses when the conditions for such availability set forth in the Eclipse // Public License v. 2.0 are satisfied: GNU General Public License, version 2 // with the GNU Classpath Exception which is available at // https://www.gnu.org/software/classpath/license.html. // // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 // ***************************************************************************** import { Disposable, URI } from '@theia/core'; import { MAIN_RPC_CONTEXT, UriExt, UriMain } from '../../common'; import { RPCProtocol } from '../../common/rpc-protocol'; import { interfaces } from '@theia/core/shared/inversify'; import { OpenHandler, OpenerOptions, OpenerService } from '@theia/core/lib/browser'; import { FrontendApplicationConfigProvider } from '@theia/core/lib/browser/frontend-application-config-provider'; import { HostedPluginSupport } from '../../hosted/browser/hosted-plugin'; export class UriMainImpl implements UriMain, Disposable { private readonly proxy: UriExt; private handlers = new Set(); private readonly openerService: OpenerService; private readonly pluginSupport: HostedPluginSupport; private readonly openHandler: OpenHandler; constructor(rpc: RPCProtocol, container: interfaces.Container) { this.proxy = rpc.getProxy(MAIN_RPC_CONTEXT.URI_EXT); this.openerService = container.get(OpenerService); this.pluginSupport = container.get(HostedPluginSupport); this.openHandler = { id: 'theia-plugin-open-handler', canHandle: async (uri: URI, options?: OpenerOptions | undefined): Promise => { if (uri.scheme !== FrontendApplicationConfigProvider.get().electron.uriScheme) { return 0; } await this.pluginSupport.activateByUri(uri.scheme, uri.authority); if (this.handlers.has(uri.authority)) { return 500; } return 0; }, open: async (uri: URI, options?: OpenerOptions | undefined): Promise => { if (!this.handlers.has(uri.authority)) { throw new Error(`No plugin to handle this uri: : '${uri}'`); } this.proxy.$handleExternalUri(uri.toComponents()); } }; this.openerService.addHandler?.(this.openHandler); } dispose(): void { this.openerService.removeHandler?.(this.openHandler); this.handlers.clear(); } async $registerUriHandler(pluginId: string, extensionDisplayName: string): Promise { this.handlers.add(pluginId); } async $unregisterUriHandler(pluginId: string): Promise { this.handlers.delete(pluginId); } }