mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 17:22:55 -05:00
* Add CodeQL Analysis workflow (#10195) * Add CodeQL Analysis workflow * Fix path * Adjusting ADS to support new changes for CloudServerType for SQLOD * Using existing constants instead of hardcoded values * Updating STS version Co-authored-by: Justin Hutchings <jhutchings1@users.noreply.github.com>
77 lines
2.4 KiB
TypeScript
77 lines
2.4 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
import * as vscode from 'vscode';
|
|
import * as azdata from 'azdata';
|
|
|
|
import * as types from './types';
|
|
|
|
export enum BuiltInCommands {
|
|
SetContext = 'setContext',
|
|
}
|
|
|
|
export enum ContextKeys {
|
|
ISCLOUD = 'kusto:iscloud',
|
|
EDITIONID = 'kusto:engineedition',
|
|
ISCLUSTER = 'kusto:iscluster',
|
|
SERVERMAJORVERSION = 'kusto:servermajorversion'
|
|
}
|
|
|
|
const isCloudEditions = [
|
|
azdata.DatabaseEngineEdition.SqlDatabase,
|
|
azdata.DatabaseEngineEdition.SqlDataWarehouse,
|
|
azdata.DatabaseEngineEdition.SqlOnDemand
|
|
];
|
|
|
|
export function setCommandContext(key: ContextKeys | string, value: any) {
|
|
return vscode.commands.executeCommand(BuiltInCommands.SetContext, key, value);
|
|
}
|
|
|
|
export default class ContextProvider {
|
|
private _disposables = new Array<vscode.Disposable>();
|
|
|
|
constructor() {
|
|
this._disposables.push(azdata.workspace.onDidOpenDashboard(this.onDashboardOpen, this));
|
|
this._disposables.push(azdata.workspace.onDidChangeToDashboard(this.onDashboardOpen, this));
|
|
}
|
|
|
|
public onDashboardOpen(e: azdata.DashboardDocument): void {
|
|
let iscloud: boolean = false;
|
|
let edition: number | undefined;
|
|
let isCluster: boolean = false; // TODO: Do we even need this for Kusto
|
|
let serverMajorVersion: number | undefined;
|
|
if (e.profile.providerName.toLowerCase() === 'kusto' && !types.isUndefinedOrNull(e.serverInfo) && !types.isUndefinedOrNull(e.serverInfo.engineEditionId)) {
|
|
if (isCloudEditions.some(i => i === e.serverInfo.engineEditionId)) {
|
|
iscloud = true;
|
|
} else {
|
|
iscloud = false;
|
|
}
|
|
|
|
edition = e.serverInfo.engineEditionId;
|
|
|
|
serverMajorVersion = e.serverInfo.serverMajorVersion;
|
|
}
|
|
|
|
if (iscloud === true || iscloud === false) {
|
|
setCommandContext(ContextKeys.ISCLOUD, iscloud);
|
|
}
|
|
|
|
if (!types.isUndefinedOrNull(edition)) {
|
|
setCommandContext(ContextKeys.EDITIONID, edition);
|
|
}
|
|
|
|
if (!types.isUndefinedOrNull(isCluster)) {
|
|
setCommandContext(ContextKeys.ISCLUSTER, isCluster);
|
|
}
|
|
|
|
if (!types.isUndefinedOrNull(serverMajorVersion)) {
|
|
setCommandContext(ContextKeys.SERVERMAJORVERSION, serverMajorVersion);
|
|
}
|
|
}
|
|
|
|
dispose(): void {
|
|
this._disposables = this._disposables.map(i => i.dispose());
|
|
}
|
|
}
|