@theia/plugin-ext 1.18.0-next.111 → 1.18.0-next.115

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/lib/common/plugin-protocol.d.ts +1 -0
  2. package/lib/common/plugin-protocol.d.ts.map +1 -1
  3. package/lib/common/plugin-protocol.js.map +1 -1
  4. package/lib/hosted/node/hosted-plugin-deployer-handler.d.ts +1 -1
  5. package/lib/hosted/node/hosted-plugin-deployer-handler.d.ts.map +1 -1
  6. package/lib/hosted/node/hosted-plugin-deployer-handler.js +7 -37
  7. package/lib/hosted/node/hosted-plugin-deployer-handler.js.map +1 -1
  8. package/lib/hosted/node/hosted-plugin-localization-service.d.ts +37 -0
  9. package/lib/hosted/node/hosted-plugin-localization-service.d.ts.map +1 -0
  10. package/lib/hosted/node/hosted-plugin-localization-service.js +197 -0
  11. package/lib/hosted/node/hosted-plugin-localization-service.js.map +1 -0
  12. package/lib/hosted/node/hosted-plugin-process.d.ts +2 -2
  13. package/lib/hosted/node/hosted-plugin-process.d.ts.map +1 -1
  14. package/lib/hosted/node/hosted-plugin-process.js +5 -7
  15. package/lib/hosted/node/hosted-plugin-process.js.map +1 -1
  16. package/lib/hosted/node/plugin-ext-hosted-backend-module.d.ts.map +1 -1
  17. package/lib/hosted/node/plugin-ext-hosted-backend-module.js +2 -0
  18. package/lib/hosted/node/plugin-ext-hosted-backend-module.js.map +1 -1
  19. package/lib/hosted/node/plugin-manifest-loader.d.ts +1 -1
  20. package/lib/hosted/node/plugin-manifest-loader.d.ts.map +1 -1
  21. package/lib/hosted/node/plugin-manifest-loader.js +4 -52
  22. package/lib/hosted/node/plugin-manifest-loader.js.map +1 -1
  23. package/lib/hosted/node/plugin-service.d.ts +2 -4
  24. package/lib/hosted/node/plugin-service.d.ts.map +1 -1
  25. package/lib/hosted/node/plugin-service.js +6 -38
  26. package/lib/hosted/node/plugin-service.js.map +1 -1
  27. package/lib/hosted/node/scanners/scanner-theia.d.ts.map +1 -1
  28. package/lib/hosted/node/scanners/scanner-theia.js +1 -0
  29. package/lib/hosted/node/scanners/scanner-theia.js.map +1 -1
  30. package/lib/main/browser/webview/webview-frontend-security-warnings.d.ts.map +1 -1
  31. package/lib/main/browser/webview/webview-frontend-security-warnings.js +8 -5
  32. package/lib/main/browser/webview/webview-frontend-security-warnings.js.map +1 -1
  33. package/lib/main/browser/webview/webview-preferences.d.ts.map +1 -1
  34. package/lib/main/browser/webview/webview-preferences.js +3 -2
  35. package/lib/main/browser/webview/webview-preferences.js.map +1 -1
  36. package/package.json +23 -23
  37. package/src/common/plugin-protocol.ts +1 -0
  38. package/src/hosted/node/hosted-plugin-deployer-handler.ts +7 -39
  39. package/src/hosted/node/hosted-plugin-localization-service.ts +201 -0
  40. package/src/hosted/node/hosted-plugin-process.ts +4 -6
  41. package/src/hosted/node/plugin-ext-hosted-backend-module.ts +2 -0
  42. package/src/hosted/node/plugin-manifest-loader.ts +4 -56
  43. package/src/hosted/node/plugin-service.ts +6 -38
  44. package/src/hosted/node/scanners/scanner-theia.ts +1 -0
  45. package/src/main/browser/webview/webview-frontend-security-warnings.ts +8 -7
  46. package/src/main/browser/webview/webview-preferences.ts +3 -2
@@ -17,11 +17,10 @@
17
17
  import * as fs from '@theia/core/shared/fs-extra';
18
18
  import { injectable, inject } from '@theia/core/shared/inversify';
19
19
  import { ILogger } from '@theia/core';
20
- import { PluginDeployerHandler, PluginDeployerEntry, PluginEntryPoint, DeployedPlugin, PluginDependencies, Localization } from '../../common/plugin-protocol';
20
+ import { PluginDeployerHandler, PluginDeployerEntry, PluginEntryPoint, DeployedPlugin, PluginDependencies } from '../../common/plugin-protocol';
21
21
  import { HostedPluginReader } from './plugin-reader';
22
22
  import { Deferred } from '@theia/core/lib/common/promise-util';
23
- import { LocalizationProvider } from '@theia/core/lib/node/i18n/localization-provider';
24
- import { Localization as TheiaLocalization } from '@theia/core/lib/common/i18n/localization';
23
+ import { HostedPluginLocalizationService } from './hosted-plugin-localization-service';
25
24
 
26
25
  @injectable()
27
26
  export class HostedPluginDeployerHandler implements PluginDeployerHandler {
@@ -32,8 +31,8 @@ export class HostedPluginDeployerHandler implements PluginDeployerHandler {
32
31
  @inject(HostedPluginReader)
33
32
  private readonly reader: HostedPluginReader;
34
33
 
35
- @inject(LocalizationProvider)
36
- private readonly localizationProvider: LocalizationProvider;
34
+ @inject(HostedPluginLocalizationService)
35
+ private readonly localizationService: HostedPluginLocalizationService;
37
36
 
38
37
  private readonly deployedLocations = new Map<string, Set<string>>();
39
38
 
@@ -105,6 +104,8 @@ export class HostedPluginDeployerHandler implements PluginDeployerHandler {
105
104
  for (const plugin of backendPlugins) {
106
105
  await this.deployPlugin(plugin, 'backend');
107
106
  }
107
+ // rebuild translation config after deployment
108
+ this.localizationService.buildTranslationConfig([...this.deployedBackendPlugins.values()]);
108
109
  // resolve on first deploy
109
110
  this.backendPluginsMetadataDeferred.resolve(undefined);
110
111
  }
@@ -134,9 +135,7 @@ export class HostedPluginDeployerHandler implements PluginDeployerHandler {
134
135
  const { type } = entry;
135
136
  const deployed: DeployedPlugin = { metadata, type };
136
137
  deployed.contributes = this.reader.readContribution(manifest);
137
- if (deployed.contributes?.localizations) {
138
- this.localizationProvider.addLocalizations(...buildTheiaLocalizations(deployed.contributes.localizations));
139
- }
138
+ this.localizationService.deployLocalizations(deployed);
140
139
  deployedPlugins.set(metadata.model.id, deployed);
141
140
  this.logger.info(`Deploying ${entryPoint} plugin "${metadata.model.name}@${metadata.model.version}" from "${metadata.model.entryPoint[entryPoint] || pluginPath}"`);
142
141
  } catch (e) {
@@ -162,34 +161,3 @@ export class HostedPluginDeployerHandler implements PluginDeployerHandler {
162
161
  return true;
163
162
  }
164
163
  }
165
-
166
- function buildTheiaLocalizations(localizations: Localization[]): TheiaLocalization[] {
167
- const theiaLocalizations: TheiaLocalization[] = [];
168
- for (const localization of localizations) {
169
- const theiaLocalization: TheiaLocalization = {
170
- languageId: localization.languageId,
171
- languageName: localization.languageName,
172
- localizedLanguageName: localization.localizedLanguageName,
173
- languagePack: true,
174
- translations: {}
175
- };
176
- for (const translation of localization.translations) {
177
- for (const [scope, value] of Object.entries(translation.contents)) {
178
- for (const [key, item] of Object.entries(value)) {
179
- const translationKey = buildTheiaTranslationKey(translation.id, scope, key);
180
- theiaLocalization.translations[translationKey] = item;
181
- }
182
- }
183
- }
184
- theiaLocalizations.push(theiaLocalization);
185
- }
186
- return theiaLocalizations;
187
- }
188
-
189
- function buildTheiaTranslationKey(pluginId: string, scope: string, key: string): string {
190
- const scopeSlashIndex = scope.lastIndexOf('/');
191
- if (scopeSlashIndex >= 0) {
192
- scope = scope.substring(scopeSlashIndex + 1);
193
- }
194
- return `${pluginId}/${scope}/${key}`;
195
- }
@@ -0,0 +1,201 @@
1
+ /********************************************************************************
2
+ * Copyright (C) 2021 TypeFox and others.
3
+ *
4
+ * This program and the accompanying materials are made available under the
5
+ * terms of the Eclipse Public License v. 2.0 which is available at
6
+ * http://www.eclipse.org/legal/epl-2.0.
7
+ *
8
+ * This Source Code may also be made available under the following Secondary
9
+ * Licenses when the conditions for such availability set forth in the Eclipse
10
+ * Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ * with the GNU Classpath Exception which is available at
12
+ * https://www.gnu.org/software/classpath/license.html.
13
+ *
14
+ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
15
+ ********************************************************************************/
16
+
17
+ import * as path from 'path';
18
+ import * as fs from '@theia/core/shared/fs-extra';
19
+ import { LocalizationProvider } from '@theia/core/lib/node/i18n/localization-provider';
20
+ import { Localization } from '@theia/core/lib/common/i18n/localization';
21
+ import { inject, injectable } from '@theia/core/shared/inversify';
22
+ import { DeployedPlugin, Localization as PluginLocalization, PluginContribution } from '../../common';
23
+ import { URI } from '@theia/core/shared/vscode-uri';
24
+ import { EnvVariablesServer } from '@theia/core/lib/common/env-variables';
25
+
26
+ export interface VSCodeNlsConfig {
27
+ locale: string
28
+ availableLanguages: Record<string, string>
29
+ _languagePackSupport?: boolean
30
+ _languagePackId?: string
31
+ _translationsConfigFile?: string
32
+ _cacheRoot?: string
33
+ _corruptedFile?: string
34
+ }
35
+
36
+ @injectable()
37
+ export class HostedPluginLocalizationService {
38
+
39
+ @inject(LocalizationProvider)
40
+ protected readonly localizationProvider: LocalizationProvider;
41
+
42
+ @inject(EnvVariablesServer)
43
+ protected readonly envVariables: EnvVariablesServer;
44
+
45
+ protected translationConfigFiles: Map<string, string> = new Map();
46
+
47
+ deployLocalizations(plugin: DeployedPlugin): void {
48
+ if (plugin.contributes?.localizations) {
49
+ this.localizationProvider.addLocalizations(...buildLocalizations(plugin.contributes.localizations));
50
+ }
51
+ }
52
+
53
+ async localizePlugin(plugin: DeployedPlugin): Promise<DeployedPlugin> {
54
+ const currentLanguage = this.localizationProvider.getCurrentLanguage();
55
+ const localization = this.localizationProvider.loadLocalization(currentLanguage);
56
+ const pluginPath = URI.parse(plugin.metadata.model.packageUri).fsPath;
57
+ const pluginId = plugin.metadata.model.id;
58
+ // create a shallow copy to not override the original plugin's contributes property.
59
+ const shallowCopy = { ...plugin };
60
+ try {
61
+ const translations = await loadPackageTranslations(pluginPath, currentLanguage);
62
+ shallowCopy.contributes = localizePackage(shallowCopy.contributes, translations, (key, original) => {
63
+ const fullKey = `${pluginId}/package/${key}`;
64
+ return Localization.localize(localization, fullKey, original);
65
+ }) as PluginContribution;
66
+ } catch (err) {
67
+ console.error(`Failed to localize plugin '${pluginId}'.`, err);
68
+ }
69
+ return shallowCopy;
70
+ }
71
+
72
+ getNlsConfig(): VSCodeNlsConfig {
73
+ const locale = this.localizationProvider.getCurrentLanguage();
74
+ const configFile = this.translationConfigFiles.get(locale);
75
+ if (locale === 'en' || !configFile) {
76
+ return { locale, availableLanguages: {} };
77
+ }
78
+ const cache = path.dirname(configFile);
79
+ return {
80
+ locale,
81
+ availableLanguages: { '*': locale },
82
+ _languagePackSupport: true,
83
+ _cacheRoot: cache,
84
+ _languagePackId: locale,
85
+ _translationsConfigFile: configFile
86
+ };
87
+ }
88
+
89
+ async buildTranslationConfig(plugins: DeployedPlugin[]): Promise<void> {
90
+ const configDir = URI.parse(await this.envVariables.getConfigDirUri()).fsPath;
91
+ const cacheDir = path.join(configDir, 'localization-cache');
92
+ const configs = new Map<string, Record<string, string>>();
93
+ for (const plugin of plugins) {
94
+ if (plugin.contributes?.localizations) {
95
+ const pluginPath = URI.parse(plugin.metadata.model.packageUri).fsPath;
96
+ for (const localization of plugin.contributes.localizations) {
97
+ const config = configs.get(localization.languageId) || {};
98
+ for (const translation of localization.translations) {
99
+ const fullPath = path.join(pluginPath, translation.path);
100
+ config[translation.id] = fullPath;
101
+ }
102
+ configs.set(localization.languageId, config);
103
+ }
104
+ }
105
+ }
106
+
107
+ for (const [language, config] of configs.entries()) {
108
+ const languageConfigDir = path.join(cacheDir, language);
109
+ await fs.mkdirs(languageConfigDir);
110
+ const configFile = path.join(languageConfigDir, `nls.config.${language}.json`);
111
+ this.translationConfigFiles.set(language, configFile);
112
+ await fs.writeJson(configFile, config);
113
+ }
114
+ }
115
+ }
116
+
117
+ function buildLocalizations(localizations: PluginLocalization[]): Localization[] {
118
+ const theiaLocalizations: Localization[] = [];
119
+ for (const localization of localizations) {
120
+ const theiaLocalization: Localization = {
121
+ languageId: localization.languageId,
122
+ languageName: localization.languageName,
123
+ localizedLanguageName: localization.localizedLanguageName,
124
+ languagePack: true,
125
+ translations: {}
126
+ };
127
+ for (const translation of localization.translations) {
128
+ for (const [scope, value] of Object.entries(translation.contents)) {
129
+ for (const [key, item] of Object.entries(value)) {
130
+ const translationKey = buildTranslationKey(translation.id, scope, key);
131
+ theiaLocalization.translations[translationKey] = item;
132
+ }
133
+ }
134
+ }
135
+ theiaLocalizations.push(theiaLocalization);
136
+ }
137
+ return theiaLocalizations;
138
+ }
139
+
140
+ function buildTranslationKey(pluginId: string, scope: string, key: string): string {
141
+ return `${pluginId}/${Localization.transformKey(scope)}/${key}`;
142
+ }
143
+
144
+ interface PackageTranslation {
145
+ translation?: Record<string, string>
146
+ default?: Record<string, string>
147
+ }
148
+
149
+ async function loadPackageTranslations(pluginPath: string, locale: string): Promise<PackageTranslation> {
150
+ const localizedPluginPath = path.join(pluginPath, `package.nls.${locale}.json`);
151
+ try {
152
+ const defaultValue = await fs.readJson(path.join(pluginPath, 'package.nls.json'));
153
+ if (await fs.pathExists(localizedPluginPath)) {
154
+ return {
155
+ translation: await fs.readJson(localizedPluginPath),
156
+ default: defaultValue
157
+ };
158
+ }
159
+ return {
160
+ default: defaultValue
161
+ };
162
+ } catch (e) {
163
+ if (e.code !== 'ENOENT') {
164
+ throw e;
165
+ }
166
+ return {};
167
+ }
168
+ }
169
+
170
+ const NLS_REGEX = /^%([\w\d.-]+)%$/i;
171
+
172
+ function localizePackage(value: unknown, translations: PackageTranslation, callback: (key: string, defaultValue: string) => string): unknown {
173
+ if (typeof value === 'string') {
174
+ const match = NLS_REGEX.exec(value);
175
+ let result = value;
176
+ if (match) {
177
+ const key = match[1];
178
+ if (translations.translation) {
179
+ result = translations.translation[key];
180
+ } else if (translations.default) {
181
+ result = callback(key, translations.default[key]);
182
+ }
183
+ }
184
+ return result;
185
+ }
186
+ if (Array.isArray(value)) {
187
+ const result = [];
188
+ for (const item of value) {
189
+ result.push(localizePackage(item, translations, callback));
190
+ }
191
+ return result;
192
+ }
193
+ if (typeof value === 'object' && value) {
194
+ const result: Record<string, unknown> = {};
195
+ for (const [name, item] of Object.entries(value)) {
196
+ result[name] = localizePackage(item, translations, callback);
197
+ }
198
+ return result;
199
+ }
200
+ return value;
201
+ }
@@ -23,7 +23,7 @@ import { MessageType } from '../../common/rpc-protocol';
23
23
  import { HostedPluginCliContribution } from './hosted-plugin-cli-contribution';
24
24
  import * as psTree from 'ps-tree';
25
25
  import { Deferred } from '@theia/core/lib/common/promise-util';
26
- import { LocalizationProvider } from '@theia/core/lib/node/i18n/localization-provider';
26
+ import { HostedPluginLocalizationService } from './hosted-plugin-localization-service';
27
27
 
28
28
  export interface IPCConnectionOptions {
29
29
  readonly serverName: string;
@@ -56,8 +56,8 @@ export class HostedPluginProcess implements ServerPluginRunner {
56
56
  @inject(MessageService)
57
57
  protected readonly messageService: MessageService;
58
58
 
59
- @inject(LocalizationProvider)
60
- protected readonly localizationProvider: LocalizationProvider;
59
+ @inject(HostedPluginLocalizationService)
60
+ protected readonly localizationService: HostedPluginLocalizationService;
61
61
 
62
62
  private childProcess: cp.ChildProcess | undefined;
63
63
  private client: HostedPluginClient;
@@ -173,9 +173,7 @@ export class HostedPluginProcess implements ServerPluginRunner {
173
173
  delete env[key];
174
174
  }
175
175
  }
176
- const availableLanguages = ['en', ...this.localizationProvider.getAvailableLanguages()];
177
- const locale = this.localizationProvider.getCurrentLanguage();
178
- env['VSCODE_NLS_CONFIG'] = JSON.stringify({ locale, availableLanguages });
176
+ env['VSCODE_NLS_CONFIG'] = JSON.stringify(this.localizationService.getNlsConfig());
179
177
  // apply external env variables
180
178
  this.pluginHostEnvironmentVariables.getContributions().forEach(envVar => envVar.process(env));
181
179
  if (this.cli.extensionTestsPath) {
@@ -33,6 +33,7 @@ import { HostedPluginCliContribution } from './hosted-plugin-cli-contribution';
33
33
  import { HostedPluginDeployerHandler } from './hosted-plugin-deployer-handler';
34
34
  import { PluginUriFactory } from './scanners/plugin-uri-factory';
35
35
  import { FilePluginUriFactory } from './scanners/file-plugin-uri-factory';
36
+ import { HostedPluginLocalizationService } from './hosted-plugin-localization-service';
36
37
 
37
38
  const commonHostedConnectionModule = ConnectionContainerModule.create(({ bind, bindBackendService }) => {
38
39
  bind(HostedPluginProcess).toSelf().inSingletonScope();
@@ -58,6 +59,7 @@ export function bindCommonHostedBackend(bind: interfaces.Bind): void {
58
59
  bind(HostedPluginReader).toSelf().inSingletonScope();
59
60
  bind(BackendApplicationContribution).toService(HostedPluginReader);
60
61
 
62
+ bind(HostedPluginLocalizationService).toSelf().inSingletonScope();
61
63
  bind(HostedPluginDeployerHandler).toSelf().inSingletonScope();
62
64
  bind(PluginDeployerHandler).toService(HostedPluginDeployerHandler);
63
65
 
@@ -14,68 +14,16 @@
14
14
  * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
15
15
  ********************************************************************************/
16
16
 
17
- /* eslint-disable @typescript-eslint/no-explicit-any */
18
-
19
17
  import * as path from 'path';
20
18
  import * as fs from '@theia/core/shared/fs-extra';
21
19
 
22
- const NLS_REGEX = /^%([\w\d.-]+)%$/i;
23
-
24
- export async function loadManifest(pluginPath: string, locale?: string): Promise<any> {
25
- const [manifest, translations] = await Promise.all([
26
- fs.readJson(path.join(pluginPath, 'package.json')),
27
- loadTranslations(pluginPath, locale)
28
- ]);
20
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
21
+ export async function loadManifest(pluginPath: string): Promise<any> {
22
+ const manifest = await fs.readJson(path.join(pluginPath, 'package.json'));
29
23
  // translate vscode builtins, as they are published with a prefix. See https://github.com/theia-ide/vscode-builtin-extensions/blob/master/src/republish.js#L50
30
24
  const built_prefix = '@theia/vscode-builtin-';
31
25
  if (manifest && manifest.name && manifest.name.startsWith(built_prefix)) {
32
26
  manifest.name = manifest.name.substr(built_prefix.length);
33
27
  }
34
- return manifest && translations && Object.keys(translations).length ?
35
- localize(manifest, translations) :
36
- manifest;
37
- }
38
-
39
- async function loadTranslations(pluginPath: string, locale?: string): Promise<any> {
40
- try {
41
- const localizedPluginPath = path.join(pluginPath, `package.nls.${locale}.json`);
42
- if (await fs.pathExists(localizedPluginPath)) {
43
- return await fs.readJson(localizedPluginPath);
44
- } else {
45
- return await fs.readJson(path.join(pluginPath, 'package.nls.json'));
46
- }
47
- } catch (e) {
48
- if (e.code !== 'ENOENT') {
49
- throw e;
50
- }
51
- return {};
52
- }
53
- }
54
-
55
- function localize(value: any, translations: {
56
- [key: string]: string
57
- }): any {
58
- if (typeof value === 'string') {
59
- const match = NLS_REGEX.exec(value);
60
- return match && translations[match[1]] || value;
61
- }
62
- if (Array.isArray(value)) {
63
- const result = [];
64
- for (const item of value) {
65
- result.push(localize(item, translations));
66
- }
67
- return result;
68
- }
69
- if (value === null) {
70
- return value;
71
- }
72
- if (typeof value === 'object') {
73
- const result: { [key: string]: any } = {};
74
- // eslint-disable-next-line guard-for-in
75
- for (const propertyName in value) {
76
- result[propertyName] = localize(value[propertyName], translations);
77
- }
78
- return result;
79
- }
80
- return value;
28
+ return manifest;
81
29
  }
@@ -20,8 +20,7 @@ import { ILogger, Disposable, ContributionProvider } from '@theia/core';
20
20
  import { ExtPluginApiProvider, ExtPluginApi } from '../../common/plugin-ext-api-contribution';
21
21
  import { HostedPluginDeployerHandler } from './hosted-plugin-deployer-handler';
22
22
  import { PluginDeployerImpl } from '../../main/node/plugin-deployer-impl';
23
- import { LocalizationProvider } from '@theia/core/lib/node/i18n/localization-provider';
24
- import { loadManifest } from './plugin-manifest-loader';
23
+ import { HostedPluginLocalizationService } from './hosted-plugin-localization-service';
25
24
 
26
25
  @injectable()
27
26
  export class HostedPluginServerImpl implements HostedPluginServer {
@@ -34,8 +33,8 @@ export class HostedPluginServerImpl implements HostedPluginServer {
34
33
  @inject(PluginDeployer)
35
34
  protected readonly pluginDeployer: PluginDeployerImpl;
36
35
 
37
- @inject(LocalizationProvider)
38
- protected readonly localizationProvider: LocalizationProvider;
36
+ @inject(HostedPluginLocalizationService)
37
+ protected readonly localizationService: HostedPluginLocalizationService;
39
38
 
40
39
  @inject(ContributionProvider)
41
40
  @named(Symbol.for(ExtPluginApiProvider))
@@ -89,8 +88,7 @@ export class HostedPluginServerImpl implements HostedPluginServer {
89
88
  if (!pluginIds.length) {
90
89
  return [];
91
90
  }
92
- const locale = this.localizationProvider.getCurrentLanguage();
93
- const plugins = [];
91
+ const plugins: DeployedPlugin[] = [];
94
92
  let extraDeployedPlugins: Map<string, DeployedPlugin> | undefined;
95
93
  for (const pluginId of pluginIds) {
96
94
  let plugin = this.deployerHandler.getDeployedPlugin(pluginId);
@@ -104,10 +102,10 @@ export class HostedPluginServerImpl implements HostedPluginServer {
104
102
  plugin = extraDeployedPlugins.get(pluginId);
105
103
  }
106
104
  if (plugin) {
107
- plugins.push(await this.localizePlugin(plugin, locale));
105
+ plugins.push(plugin);
108
106
  }
109
107
  }
110
- return plugins;
108
+ return Promise.all(plugins.map(plugin => this.localizationService.localizePlugin(plugin)));
111
109
  }
112
110
 
113
111
  onMessage(pluginHostId: string, message: string): Promise<void> {
@@ -118,34 +116,4 @@ export class HostedPluginServerImpl implements HostedPluginServer {
118
116
  getExtPluginAPI(): Promise<ExtPluginApi[]> {
119
117
  return Promise.resolve(this.extPluginAPIContributions.getContributions().map(p => p.provideApi()));
120
118
  }
121
-
122
- protected async localizePlugin(plugin: DeployedPlugin, locale: string): Promise<DeployedPlugin> {
123
- const packagePath = plugin.metadata.model.packagePath;
124
- const translatedManifest = await loadManifest(packagePath, locale);
125
- this.mergeContributes(plugin.contributes, translatedManifest.contributes);
126
- return plugin;
127
- }
128
-
129
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
130
- protected mergeContributes(main: any, other: any): void {
131
- if (main && other) {
132
- if (Array.isArray(main) && Array.isArray(other)) {
133
- for (let i = 0; i < main.length && i < other.length; i++) {
134
- if (typeof main[i] === 'object' && typeof other[i] === 'object') {
135
- this.mergeContributes(main[i], other[i]);
136
- }
137
- }
138
- } else {
139
- for (const [key, value] of Object.entries(main)) {
140
- if (key in other) {
141
- if (typeof value === 'string') {
142
- main[key] = other[key];
143
- } else if (typeof value === 'object' && typeof other[key] === 'object') {
144
- this.mergeContributes(main[key], other[key]);
145
- }
146
- }
147
- }
148
- }
149
- }
150
- }
151
119
  }
@@ -382,6 +382,7 @@ export class TheiaPluginScanner implements PluginScanner {
382
382
  throw new Error(`Could not read json file '${packageTranslation.path}'.`);
383
383
  }
384
384
  translation.id = packageTranslation.id;
385
+ translation.path = packageTranslation.path;
385
386
  return translation;
386
387
  }
387
388
 
@@ -15,8 +15,9 @@
15
15
  ********************************************************************************/
16
16
 
17
17
  import { MessageService } from '@theia/core';
18
- import { FrontendApplicationContribution } from '@theia/core/lib/browser';
18
+ import { Dialog, FrontendApplicationContribution } from '@theia/core/lib/browser';
19
19
  import { FrontendApplicationConfigProvider } from '@theia/core/lib/browser/frontend-application-config-provider';
20
+ import { nls } from '@theia/core/lib/common/nls';
20
21
  import { WindowService } from '@theia/core/lib/browser/window/window-service';
21
22
  import { inject, injectable } from '@theia/core/shared/inversify';
22
23
  import { WebviewExternalEndpoint } from '../../common/webview-protocol';
@@ -44,12 +45,12 @@ export class WebviewFrontendSecurityWarnings implements FrontendApplicationContr
44
45
  }
45
46
  const hostPattern = await this.webviewEnvironment.hostPatternPromise;
46
47
  if (hostPattern !== WebviewExternalEndpoint.defaultPattern) {
47
- this.messageService.warn(`\
48
- The webview endpoint's host pattern has been changed to \`${hostPattern}\`; changing the pattern can lead to security vulnerabilities. \
49
- See \`@theia/plugin-ext/README.md\` for more information.`,
50
- /* actions: */ 'Ok', 'Go To README',
51
- ).then(action => {
52
- if (action === 'Go To README') {
48
+ const goToReadme = nls.localize('theia/webview/goToReadme', 'Go To README');
49
+ const message = nls.localize('theia/webview/messageWarning', '\
50
+ The {0} endpoint\'s host pattern has been changed to `{1}`; changing the pattern can lead to security vulnerabilities. \
51
+ See `{2}` for more information.', 'webview', hostPattern, '@theia/plugin-ext/README.md');
52
+ this.messageService.warn(message, Dialog.OK, goToReadme).then(action => {
53
+ if (action === goToReadme) {
53
54
  this.windowService.openNewWindow('https://www.npmjs.com/package/@theia/plugin-ext', { external: true });
54
55
  }
55
56
  });
@@ -23,6 +23,7 @@ import {
23
23
  PreferenceContribution,
24
24
  PreferenceSchema
25
25
  } from '@theia/core/lib/browser/preferences';
26
+ import { nls } from '@theia/core/lib/common/nls';
26
27
 
27
28
  const frontendConfig = FrontendApplicationConfigProvider.get();
28
29
 
@@ -32,7 +33,7 @@ export const WebviewConfigSchema: PreferenceSchema = {
32
33
  'webview.trace': {
33
34
  type: 'string',
34
35
  enum: ['off', 'on', 'verbose'],
35
- description: 'Controls communication tracing with webviews.',
36
+ description: nls.localize('theia/plugin-ext/webviewTrace', 'Controls communication tracing with webviews.'),
36
37
  default: 'off'
37
38
  }
38
39
  }
@@ -42,7 +43,7 @@ if (frontendConfig.securityWarnings) {
42
43
  WebviewConfigSchema.properties['webview.warnIfUnsecure'] = {
43
44
  scope: 'application',
44
45
  type: 'boolean',
45
- description: 'Warns users that webviews are currently deployed unsecurely.',
46
+ description: nls.localize('theia/plugin-ext/webviewWarnIfUnsecure', 'Warns users that webviews are currently deployed unsecurely.'),
46
47
  default: true,
47
48
  };
48
49
  }