-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support version for installExtension, support uninstall cmd #14298
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,4 +81,41 @@ export namespace PluginIdentifiers { | |
} | ||
return { id: probablyId.slice(0, endOfName) as UnversionedId, version: probablyId.slice(endOfName + 1) }; | ||
} | ||
|
||
/** | ||
* Regular expression to match plugin identifiers. | ||
* | ||
* The pattern matches strings in the format: `vendor.name@version`. | ||
* | ||
* Expected matching strings examples: | ||
* - `vendor.name@prerelease` | ||
* - `[email protected]` | ||
* - `[email protected]` | ||
*/ | ||
const EXTENSION_IDENTIFIER_WITH_VERSION_REGEX = /^([^.]+\..+)@((prerelease)|(\d+\.\d+\.\d+(-.*)?))$/; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is unnecessarily restrictve, IMO: all we need to know here is what is before the '@' and what is after the '@'. Why introduce the added complexity? Also, regexes should always have a comment that describes what they are supposed to detect, Because no-one understands Regexes at first sight. If the id does not match the expression, you end up with the exact same result as before. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the same RegEx that is also used in vs-code, I thought it is a good idea to do the same. |
||
|
||
/** | ||
* Extracts the extension identifier and version from a string. | ||
* @param id The extension identifier | ||
* @returns A tuple of the extension identifier and the version, if present. | ||
*/ | ||
export function getIdAndVersion(id: string): [string, string | undefined] { | ||
const matches = EXTENSION_IDENTIFIER_WITH_VERSION_REGEX.exec(id); | ||
if (matches && matches[1]) { | ||
return [matches[1], matches[2]]; | ||
} | ||
return [id, undefined]; | ||
} | ||
|
||
/** | ||
* Checks if the extension identifier is in the format `<publisher>.<name>@<version>`. | ||
* @param id The extension identifier | ||
* @returns `true` if the extension identifier is in the format `<publisher>.<name>@<version>`. | ||
*/ | ||
export function isVersionedId(id: string): boolean { | ||
const matches = EXTENSION_IDENTIFIER_WITH_VERSION_REGEX.exec(id); | ||
// eslint-disable-next-line no-null/no-null | ||
return matches !== null && matches.length > 2; | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ import { TreeElement, TreeElementNode } from '@theia/core/lib/browser/source-tre | |
import { OpenerService, open, OpenerOptions } from '@theia/core/lib/browser/opener-service'; | ||
import { HostedPluginSupport } from '@theia/plugin-ext/lib/hosted/browser/hosted-plugin'; | ||
import { PluginServer, DeployedPlugin, PluginType, PluginIdentifiers, PluginDeployOptions } from '@theia/plugin-ext/lib/common/plugin-protocol'; | ||
import { VscodeCommands } from '@theia/plugin-ext-vscode/lib/browser/plugin-vscode-commands-contribution'; | ||
import { VSCodeExtensionUri } from '@theia/plugin-ext-vscode/lib/common/plugin-vscode-uri'; | ||
import { ProgressService } from '@theia/core/lib/common/progress-service'; | ||
import { Endpoint } from '@theia/core/lib/browser/endpoint'; | ||
|
@@ -324,8 +325,10 @@ export class VSXExtension implements VSXExtensionData, TreeElement { | |
if (plugin) { | ||
await this.progressService.withProgress( | ||
nls.localizeByDefault('Uninstalling {0}...', this.id), 'extensions', | ||
() => this.pluginServer.uninstall(PluginIdentifiers.componentsToVersionedId(plugin.metadata.model)) | ||
); | ||
async () => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why go through the command here? Why stringify/destringify the id? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The implementation is moved to a command to resolve #13796 , now calling the new command to reduce code duplicates. |
||
const versionedId = PluginIdentifiers.componentsToVersionedId(plugin.metadata.model); | ||
await this.commandRegistry.executeCommand(VscodeCommands.UNINSTALL_EXTENSION.id, versionedId); | ||
}); | ||
} | ||
} finally { | ||
this._busy--; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this makes sense from a user's perspective: while technically, we can have multiple versions of the same plugin installed, that's not how it's presented to the user: for them, you either have a plugin installed, or not, independent of the version, so we should probably pass a naked id here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PluginServer.uninstall()
expectsPluginIdentifiers.VersionedId
parameter which is typed as${string}.${string}@${string}
that why it the code above makes sense to me.The
UNINSTALL_EXTENSION
command is not presented to the user, but is used intheia/packages/vsx-registry/src/browser/vsx-extension.tsx
where the versioned extension id is given.I would prefer to keep require versioned id here.