mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-10 00:27:05 -06:00
* fix #232043 * fix compilation error * fix compilation * fix compilation * fix compilation * fix compilation * fix compilation
132 lines
6.5 KiB
TypeScript
132 lines
6.5 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { Schemas } from '../../../base/common/network.js';
|
|
import { isWeb } from '../../../base/common/platform.js';
|
|
import { isString } from '../../../base/common/types.js';
|
|
import { URI, UriComponents } from '../../../base/common/uri.js';
|
|
import { localize } from '../../../nls.js';
|
|
import { CommandsRegistry, ICommandService } from '../../../platform/commands/common/commands.js';
|
|
import { IExtensionGalleryService, IExtensionManagementService } from '../../../platform/extensionManagement/common/extensionManagement.js';
|
|
import { ExtensionManagementCLI } from '../../../platform/extensionManagement/common/extensionManagementCLI.js';
|
|
import { getExtensionId } from '../../../platform/extensionManagement/common/extensionManagementUtil.js';
|
|
import { IExtensionManifest } from '../../../platform/extensions/common/extensions.js';
|
|
import { IInstantiationService, ServicesAccessor } from '../../../platform/instantiation/common/instantiation.js';
|
|
import { ServiceCollection } from '../../../platform/instantiation/common/serviceCollection.js';
|
|
import { ILabelService } from '../../../platform/label/common/label.js';
|
|
import { AbstractMessageLogger, ILogger, LogLevel } from '../../../platform/log/common/log.js';
|
|
import { IOpenerService } from '../../../platform/opener/common/opener.js';
|
|
import { IUriIdentityService } from '../../../platform/uriIdentity/common/uriIdentity.js';
|
|
import { IOpenWindowOptions, IWindowOpenable } from '../../../platform/window/common/window.js';
|
|
import { IWorkbenchEnvironmentService } from '../../services/environment/common/environmentService.js';
|
|
import { IExtensionManagementServerService } from '../../services/extensionManagement/common/extensionManagement.js';
|
|
import { IExtensionManifestPropertiesService } from '../../services/extensions/common/extensionManifestPropertiesService.js';
|
|
|
|
|
|
// this class contains the commands that the CLI server is reying on
|
|
|
|
CommandsRegistry.registerCommand('_remoteCLI.openExternal', function (accessor: ServicesAccessor, uri: UriComponents | string): Promise<boolean> {
|
|
const openerService = accessor.get(IOpenerService);
|
|
return openerService.open(isString(uri) ? uri : URI.revive(uri), { openExternal: true, allowTunneling: true });
|
|
});
|
|
|
|
CommandsRegistry.registerCommand('_remoteCLI.windowOpen', function (accessor: ServicesAccessor, toOpen: IWindowOpenable[], options: IOpenWindowOptions) {
|
|
const commandService = accessor.get(ICommandService);
|
|
if (!toOpen.length) {
|
|
return commandService.executeCommand('_files.newWindow', options);
|
|
}
|
|
return commandService.executeCommand('_files.windowOpen', toOpen, options);
|
|
});
|
|
|
|
CommandsRegistry.registerCommand('_remoteCLI.getSystemStatus', function (accessor: ServicesAccessor): Promise<string | undefined> {
|
|
const commandService = accessor.get(ICommandService);
|
|
return commandService.executeCommand<string>('_issues.getSystemStatus');
|
|
});
|
|
|
|
interface ManageExtensionsArgs {
|
|
list?: { showVersions?: boolean; category?: string };
|
|
install?: (string | URI)[];
|
|
uninstall?: string[];
|
|
force?: boolean;
|
|
}
|
|
|
|
CommandsRegistry.registerCommand('_remoteCLI.manageExtensions', async function (accessor: ServicesAccessor, args: ManageExtensionsArgs): Promise<string | undefined> {
|
|
const instantiationService = accessor.get(IInstantiationService);
|
|
const extensionManagementServerService = accessor.get(IExtensionManagementServerService);
|
|
const remoteExtensionManagementService = extensionManagementServerService.remoteExtensionManagementServer?.extensionManagementService;
|
|
if (!remoteExtensionManagementService) {
|
|
return;
|
|
}
|
|
|
|
const lines: string[] = [];
|
|
const logger = new class extends AbstractMessageLogger {
|
|
protected override log(level: LogLevel, message: string): void {
|
|
lines.push(message);
|
|
}
|
|
}();
|
|
const childInstantiationService = instantiationService.createChild(new ServiceCollection([IExtensionManagementService, remoteExtensionManagementService]));
|
|
try {
|
|
const cliService = childInstantiationService.createInstance(RemoteExtensionManagementCLI, logger);
|
|
|
|
if (args.list) {
|
|
await cliService.listExtensions(!!args.list.showVersions, args.list.category, undefined);
|
|
} else {
|
|
const revive = (inputs: (string | UriComponents)[]) => inputs.map(input => isString(input) ? input : URI.revive(input));
|
|
if (Array.isArray(args.install) && args.install.length) {
|
|
try {
|
|
await cliService.installExtensions(revive(args.install), [], { isMachineScoped: true }, !!args.force);
|
|
} catch (e) {
|
|
lines.push(e.message);
|
|
}
|
|
}
|
|
if (Array.isArray(args.uninstall) && args.uninstall.length) {
|
|
try {
|
|
await cliService.uninstallExtensions(revive(args.uninstall), !!args.force, undefined);
|
|
} catch (e) {
|
|
lines.push(e.message);
|
|
}
|
|
}
|
|
}
|
|
return lines.join('\n');
|
|
} finally {
|
|
childInstantiationService.dispose();
|
|
}
|
|
|
|
});
|
|
|
|
class RemoteExtensionManagementCLI extends ExtensionManagementCLI {
|
|
|
|
private _location: string | undefined;
|
|
|
|
constructor(
|
|
logger: ILogger,
|
|
@IExtensionManagementService extensionManagementService: IExtensionManagementService,
|
|
@IExtensionGalleryService extensionGalleryService: IExtensionGalleryService,
|
|
@IUriIdentityService uriIdentityService: IUriIdentityService,
|
|
@ILabelService labelService: ILabelService,
|
|
@IWorkbenchEnvironmentService envService: IWorkbenchEnvironmentService,
|
|
@IExtensionManifestPropertiesService private readonly _extensionManifestPropertiesService: IExtensionManifestPropertiesService,
|
|
) {
|
|
super(logger, extensionManagementService, extensionGalleryService, uriIdentityService);
|
|
|
|
const remoteAuthority = envService.remoteAuthority;
|
|
this._location = remoteAuthority ? labelService.getHostLabel(Schemas.vscodeRemote, remoteAuthority) : undefined;
|
|
}
|
|
|
|
protected override get location(): string | undefined {
|
|
return this._location;
|
|
}
|
|
|
|
protected override validateExtensionKind(manifest: IExtensionManifest): boolean {
|
|
if (!this._extensionManifestPropertiesService.canExecuteOnWorkspace(manifest)
|
|
// Web extensions installed on remote can be run in web worker extension host
|
|
&& !(isWeb && this._extensionManifestPropertiesService.canExecuteOnWeb(manifest))) {
|
|
this.logger.info(localize('cannot be installed', "Cannot install the '{0}' extension because it is declared to not run in this setup.", getExtensionId(manifest.publisher, manifest.name)));
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
}
|