blob: d0bff924fd0acac150320412bd682721d9bd7eb8 [file] [log] [blame]
/* eslint-disable @typescript-eslint/no-explicit-any */
/*---------------------------------------------------------
* Copyright 2021 The Go Authors. All rights reserved.
* Licensed under the MIT License. See LICENSE in the project root for license information.
*--------------------------------------------------------*/
import vscode = require('vscode');
import semver = require('semver');
import { extensionId } from './const';
/** getGoConfig is declared as an exported const rather than a function, so it can be stubbbed in testing. */
export const getGoConfig = (uri?: vscode.Uri) => {
return getConfig('go', uri);
};
/** getGoplsConfig returns the user's gopls configuration. */
export function getGoplsConfig(uri?: vscode.Uri) {
return getConfig('gopls', uri);
}
function getConfig(section: string, uri?: vscode.Uri | null) {
if (!uri) {
if (vscode.window.activeTextEditor) {
uri = vscode.window.activeTextEditor.document.uri;
} else {
uri = null;
}
}
return vscode.workspace.getConfiguration(section, uri);
}
/** ExtensionInfo is a collection of static information about the extension. */
export class ExtensionInfo {
/** Extension version */
readonly version?: string;
/** The application name of the editor, like 'VS Code' */
readonly appName: string;
/** True if the extension runs in preview mode (e.g. Nightly, prerelease) */
readonly isPreview: boolean;
/** True if the extension runs in well-kwnon cloud IDEs */
readonly isInCloudIDE: boolean;
constructor() {
const packageJSON = vscode.extensions.getExtension(extensionId)?.packageJSON;
const version = semver.parse(packageJSON?.version);
this.version = version?.format();
this.appName = vscode.env.appName;
// golang.go-nightly: packageJSON.preview is true.
// golang.go prerelease: minor version is an odd number.
this.isPreview =
!!packageJSON?.preview || !!(extensionId === 'golang.go' && version && version.minor % 2 === 1);
this.isInCloudIDE =
process.env.CLOUD_SHELL === 'true' ||
process.env.MONOSPACE_ENV === 'true' ||
process.env.CODESPACES === 'true' ||
!!process.env.GITPOD_WORKSPACE_ID;
}
}
export const extensionInfo = new ExtensionInfo();