/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import nls = require('vs/nls'); import { Promise, TPromise } from 'vs/base/common/winjs.base'; import { Action } from 'vs/base/common/actions'; import Severity from 'vs/base/common/severity'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; import { IMessageService } from 'vs/platform/message/common/message'; import { ReloadWindowAction } from 'vs/workbench/electron-browser/actions'; import { IExtensionsService, IExtension } from 'vs/workbench/parts/extensions/common/extensions'; import { IQuickOpenService } from 'vs/workbench/services/quickopen/common/quickOpenService'; export class ListExtensionsAction extends Action { static ID = 'workbench.extensions.action.listExtensions'; static LABEL = nls.localize('showInstalledExtensions', "Show Installed Extensions"); constructor( id: string, label: string, @IExtensionsService private extensionsService: IExtensionsService, @IQuickOpenService private quickOpenService: IQuickOpenService ) { super(id, label, null, true); } public run(): Promise { return this.quickOpenService.show('ext '); } protected isEnabled(): boolean { return true; } } export class InstallExtensionAction extends Action { static ID = 'workbench.extensions.action.installExtension'; static LABEL = nls.localize('installExtension', "Install Extension"); constructor( id: string, label: string, @IExtensionsService private extensionsService: IExtensionsService, @IQuickOpenService private quickOpenService: IQuickOpenService ) { super(id, label, null, true); } public run(): Promise { return this.quickOpenService.show('ext install '); } protected isEnabled(): boolean { return true; } } export class ListOutdatedExtensionsAction extends Action { static ID = 'workbench.extensions.action.listOutdatedExtensions'; static LABEL = nls.localize('showOutdatedExtensions', "Show Outdated Extensions"); constructor( id: string, label: string, @IExtensionsService private extensionsService: IExtensionsService, @IQuickOpenService private quickOpenService: IQuickOpenService ) { super(id, label, null, true); } public run(): Promise { return this.quickOpenService.show('ext update '); } protected isEnabled(): boolean { return true; } } export class ListSuggestedExtensionsAction extends Action { static ID = 'workbench.extensions.action.listSuggestedExtensions'; static LABEL = nls.localize('showSuggestedExtensions', "Show Suggested Extensions"); constructor( id: string, label: string, @IExtensionsService private extensionsService: IExtensionsService, @IQuickOpenService private quickOpenService: IQuickOpenService ) { super(id, label, null, true); } public run(): Promise { return this.quickOpenService.show('ext tips '); } protected isEnabled(): boolean { return true; } } export class InstallAction extends Action { constructor( label: string, @IQuickOpenService protected quickOpenService: IQuickOpenService, @IExtensionsService protected extensionsService: IExtensionsService, @IMessageService protected messageService: IMessageService, @ITelemetryService protected telemetryService: ITelemetryService, @IInstantiationService protected instantiationService: IInstantiationService ) { super('extensions.install', label, 'octicon octicon-cloud-download', true); } public run(extension: IExtension): TPromise { this.enabled = false; return this.extensionsService .install(extension) .then(() => this.onSuccess(extension), err => this.onError(err, extension)) .then(() => this.enabled = true) .then(() => null); } private onSuccess(extension: IExtension) { this.reportTelemetry(extension, true); this.messageService.show( Severity.Info, { message: nls.localize('success', "{0} {1} was successfully installed. Restart to enable it.", extension.displayName, extension.version), actions: [this.instantiationService.createInstance(ReloadWindowAction, ReloadWindowAction.ID, nls.localize('restartNow', "Restart Now"))] } ); } private onError(err: Error, extension: IExtension) { this.reportTelemetry(extension, false); this.messageService.show(Severity.Error, err); } private reportTelemetry(extension: IExtension, success: boolean) { this.telemetryService.publicLog('extensionGallery:install', { success, id: extension.galleryInformation ? extension.galleryInformation.id : null, name: extension.name, publisherId: extension.galleryInformation ? extension.galleryInformation.publisherId : null, publisherName: extension.publisher, publisherDisplayName: extension.galleryInformation ? extension.galleryInformation.publisherDisplayName : null }); } } export class UninstallAction extends Action { constructor( @IQuickOpenService protected quickOpenService: IQuickOpenService, @IExtensionsService protected extensionsService: IExtensionsService, @IMessageService protected messageService: IMessageService, @ITelemetryService protected telemetryService: ITelemetryService, @IInstantiationService protected instantiationService: IInstantiationService ) { super('extensions.uninstall', nls.localize('uninstall', "Uninstall Extension"), 'octicon octicon-x', true); } public run(extension: IExtension): TPromise { if (!window.confirm(nls.localize('deleteSure', "Are you sure you want to uninstall the '{0}' extension?", extension.displayName))) { return TPromise.as(null); } this.enabled = false; return this.extensionsService.uninstall(extension) .then(() => this.onSuccess(extension), err => this.onError(err, extension)) .then(() => this.enabled = true) .then(() => null); } private onSuccess(extension: IExtension) { this.reportTelemetry(extension, true); this.messageService.show( Severity.Info, { message: nls.localize('success', "{0} was successfully uninstalled. Restart to deactivate it.", extension.displayName), actions: [this.instantiationService.createInstance(ReloadWindowAction, ReloadWindowAction.ID, nls.localize('restartNow2', "Restart Now"))] } ); } private onError(err: Error, extension: IExtension) { this.reportTelemetry(extension, false); this.messageService.show(Severity.Error, err); } private reportTelemetry(extension: IExtension, success: boolean) { this.telemetryService.publicLog('extensionGallery:uninstall', { success, id: extension.galleryInformation ? extension.galleryInformation.id : null, name: extension.name, publisherId: extension.galleryInformation ? extension.galleryInformation.publisherId : null, publisherName: extension.publisher, publisherDisplayName: extension.galleryInformation ? extension.galleryInformation.publisherDisplayName : null }); } }