diff --git a/src/vs/base/common/product.ts b/src/vs/base/common/product.ts index 657b9c9..9b9b12e 100644 --- a/src/vs/base/common/product.ts +++ b/src/vs/base/common/product.ts @@ -70,6 +70,7 @@ export interface IProductConfiguration { readonly extensionsGallery?: { readonly serviceUrl: string; + readonly cacheUrl?: string; readonly itemUrl: string; readonly resourceUrlTemplate: string; readonly controlUrl: string; diff --git a/src/vs/platform/product/common/product.ts b/src/vs/platform/product/common/product.ts index 5e38d35..12bb161 100644 --- a/src/vs/platform/product/common/product.ts +++ b/src/vs/platform/product/common/product.ts @@ -4,11 +4,12 @@ *--------------------------------------------------------------------------------------------*/ import { FileAccess } from 'vs/base/common/network'; -import { globals } from 'vs/base/common/platform'; +import { globals, isWindows } from 'vs/base/common/platform'; import { env } from 'vs/base/common/process'; import { IProductConfiguration } from 'vs/base/common/product'; import { dirname, joinPath } from 'vs/base/common/resources'; import { ISandboxConfiguration } from 'vs/base/parts/sandbox/common/sandboxTypes'; +import { getUserDataPath } from 'vs/platform/environment/node/userDataPath'; /** * @deprecated You MUST use `IProductService` if possible. @@ -34,6 +35,32 @@ else if (typeof require?.__$__nodeRequire === 'function') { product = require.__$__nodeRequire(joinPath(rootPath, 'product.json').fsPath); const pkg = require.__$__nodeRequire(joinPath(rootPath, 'package.json').fsPath) as { version: string; }; + // Merge user-customized product.json + try { + const merge = (...objects: any[]) => + objects.reduce((result, current) => { + Object.keys(current).forEach((key) => { + if (Array.isArray(result[key]) && Array.isArray(current[key])) { + result[key] = current[key]; + } else if (typeof result[key] === 'object' && typeof current[key] === 'object') { + result[key] = merge(result[key], current[key]); + } else { + result[key] = current[key]; + } + }); + + return result; + }, {}) as any; + + const userDataPath = getUserDataPath({} as any); + const userProductPath = isWindows ? `file:///${userDataPath}/product.json` : `file://${userDataPath}/product.json`; + + const userProduct = require.__$__nodeRequire(FileAccess.asFileUri(userProductPath, require).fsPath); + + product = merge(product, userProduct); + } catch (ex) { + } + // Running out of sources if (env['VSCODE_DEV']) { Object.assign(product, { @@ -43,6 +70,19 @@ else if (typeof require?.__$__nodeRequire === 'function') { }); } + // Set user-defined extension gallery + const { serviceUrl, cacheUrl, itemUrl, controlUrl, recommendationsUrl } = product.extensionsGallery || {} + + Object.assign(product, { + extensionsGallery: { + serviceUrl: env['VSCODE_GALLERY_SERVICE_URL'] || serviceUrl, + cacheUrl: env['VSCODE_GALLERY_CACHE_URL'] || cacheUrl, + itemUrl: env['VSCODE_GALLERY_ITEM_URL'] || itemUrl, + controlUrl: env['VSCODE_GALLERY_CONTROL_URL'] || controlUrl, + recommendationsUrl: env['VSCODE_GALLERY_RECOMMENDATIONS_URL'] || recommendationsUrl + } + }) + Object.assign(product, { version: pkg.version });