mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
* Merge from vscode a348d103d1256a06a2c9b3f9b406298a9fef6898 * Fixes and cleanup * Distro * Fix hygiene yarn * delete no yarn lock changes file * Fix hygiene * Fix layer check * Fix CI * Skip lib checks * Remove tests deleted in vs code * Fix tests * Distro * Fix tests and add removed extension point * Skip failing notebook tests for now * Disable broken tests and cleanup build folder * Update yarn.lock and fix smoke tests * Bump sqlite * fix contributed actions and file spacing * Fix user data path * Update yarn.locks Co-authored-by: ADS Merger <karlb@microsoft.com>
306 lines
9.9 KiB
TypeScript
306 lines
9.9 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 { ConnectionProfileGroup } from 'sql/platform/connection/common/connectionProfileGroup';
|
|
import * as azdata from 'azdata';
|
|
import { ProviderConnectionInfo } from 'sql/platform/connection/common/providerConnectionInfo';
|
|
import * as interfaces from 'sql/platform/connection/common/interfaces';
|
|
import { equalsIgnoreCase } from 'vs/base/common/strings';
|
|
import { generateUuid } from 'vs/base/common/uuid';
|
|
import { ICapabilitiesService } from 'sql/platform/capabilities/common/capabilitiesService';
|
|
import { isString } from 'vs/base/common/types';
|
|
import { deepClone } from 'vs/base/common/objects';
|
|
import * as Constants from 'sql/platform/connection/common/constants';
|
|
import { URI } from 'vs/base/common/uri';
|
|
|
|
export interface IconPath {
|
|
light: URI;
|
|
dark: URI;
|
|
}
|
|
|
|
|
|
// Concrete implementation of the IConnectionProfile interface
|
|
|
|
/**
|
|
* A concrete implementation of an IConnectionProfile with support for profile creation and validation
|
|
*/
|
|
export class ConnectionProfile extends ProviderConnectionInfo implements interfaces.IConnectionProfile {
|
|
|
|
public parent?: ConnectionProfileGroup;
|
|
private _id: string;
|
|
public savePassword: boolean;
|
|
private _groupName?: string;
|
|
public groupId?: string;
|
|
public saveProfile: boolean;
|
|
|
|
public iconPath?: IconPath;
|
|
|
|
public isDisconnecting: boolean = false;
|
|
|
|
public constructor(
|
|
capabilitiesService: ICapabilitiesService,
|
|
model: string | azdata.IConnectionProfile | undefined) {
|
|
super(capabilitiesService, model);
|
|
if (model && !isString(model)) {
|
|
this.groupId = model.groupId;
|
|
this.groupFullName = model.groupFullName;
|
|
this.savePassword = model.savePassword;
|
|
this.saveProfile = model.saveProfile;
|
|
this._id = model.id;
|
|
this.azureTenantId = model.azureTenantId;
|
|
this.azureAccount = model.azureAccount;
|
|
this.azureResourceId = model.azureResourceId;
|
|
this.azurePortalEndpoint = model.azurePortalEndpoint;
|
|
if (this.capabilitiesService && model.providerName) {
|
|
let capabilities = this.capabilitiesService.getCapabilities(model.providerName);
|
|
if (capabilities && capabilities.connection && capabilities.connection.connectionOptions) {
|
|
const options = capabilities.connection.connectionOptions;
|
|
let appNameOption = options.find(option => option.specialValueType === interfaces.ConnectionOptionSpecialType.appName);
|
|
if (appNameOption) {
|
|
let appNameKey = appNameOption.name;
|
|
this.options[appNameKey] = Constants.applicationName;
|
|
}
|
|
}
|
|
if (model.options.registeredServerDescription) {
|
|
this.registeredServerDescription = model.options.registeredServerDescription;
|
|
}
|
|
}
|
|
} else {
|
|
//Default for a new connection
|
|
this.savePassword = false;
|
|
this.saveProfile = true;
|
|
this._groupName = ConnectionProfile.RootGroupName;
|
|
this._id = generateUuid();
|
|
}
|
|
|
|
this.options['groupId'] = this.groupId;
|
|
this.options['databaseDisplayName'] = this.databaseName;
|
|
}
|
|
|
|
public static matchesProfile(a: interfaces.IConnectionProfile, b: interfaces.IConnectionProfile): boolean {
|
|
return a && b
|
|
&& a.providerName === b.providerName
|
|
&& ConnectionProfile.nullCheckEqualsIgnoreCase(a.serverName, b.serverName)
|
|
&& ConnectionProfile.nullCheckEqualsIgnoreCase(a.databaseName, b.databaseName)
|
|
&& ConnectionProfile.nullCheckEqualsIgnoreCase(a.userName, b.userName)
|
|
&& ConnectionProfile.nullCheckEqualsIgnoreCase(a.options['databaseDisplayName'], b.options['databaseDisplayName'])
|
|
&& a.authenticationType === b.authenticationType
|
|
&& a.groupId === b.groupId;
|
|
}
|
|
|
|
public matches(other: interfaces.IConnectionProfile): boolean {
|
|
return ConnectionProfile.matchesProfile(this, other);
|
|
|
|
}
|
|
|
|
private static nullCheckEqualsIgnoreCase(a?: string, b?: string) {
|
|
if (a && !b || b && !a) {
|
|
return false;
|
|
} else {
|
|
let bothNull: boolean = !a && !b;
|
|
return bothNull ? bothNull : equalsIgnoreCase(a!, b!);
|
|
}
|
|
}
|
|
|
|
public generateNewId() {
|
|
this._id = generateUuid();
|
|
}
|
|
|
|
public getParent(): ConnectionProfileGroup | undefined {
|
|
return this.parent;
|
|
}
|
|
|
|
public get id(): string {
|
|
if (!this._id) {
|
|
this._id = generateUuid();
|
|
}
|
|
return this._id;
|
|
}
|
|
|
|
public set id(value: string) {
|
|
this._id = value;
|
|
}
|
|
|
|
public get azureTenantId(): string | undefined {
|
|
return this.options['azureTenantId'];
|
|
}
|
|
|
|
public set azureTenantId(value: string | undefined) {
|
|
this.options['azureTenantId'] = value;
|
|
}
|
|
|
|
public get azureAccount(): string | undefined {
|
|
return this.options['azureAccount'];
|
|
}
|
|
|
|
public set azureAccount(value: string | undefined) {
|
|
this.options['azureAccount'] = value;
|
|
}
|
|
|
|
public get azurePortalEndpoint() {
|
|
return this.options['azurePortalEndpoint'];
|
|
}
|
|
|
|
public set azurePortalEndpoint(value: string | undefined) {
|
|
this.options['azurePortalEndpoint'] = value;
|
|
}
|
|
|
|
public get azureResourceId() {
|
|
return this.options['azureResourceId'];
|
|
}
|
|
|
|
public set azureResourceId(value: string | undefined) {
|
|
this.options['azureResourceId'] = value;
|
|
}
|
|
|
|
public get registeredServerDescription(): string {
|
|
return this.options['registeredServerDescription'];
|
|
}
|
|
|
|
public set registeredServerDescription(value: string) {
|
|
this.options['registeredServerDescription'] = value;
|
|
}
|
|
|
|
public get groupFullName(): string | undefined {
|
|
return this._groupName;
|
|
}
|
|
|
|
public set groupFullName(value: string | undefined) {
|
|
this._groupName = value;
|
|
}
|
|
|
|
public get isAddedToRootGroup(): boolean {
|
|
return (this._groupName === ConnectionProfile.RootGroupName);
|
|
}
|
|
|
|
public override clone(): ConnectionProfile {
|
|
let instance = new ConnectionProfile(this.capabilitiesService, this);
|
|
return instance;
|
|
}
|
|
|
|
public cloneWithNewId(): ConnectionProfile {
|
|
let instance = this.clone();
|
|
instance.generateNewId();
|
|
return instance;
|
|
}
|
|
|
|
public cloneWithDatabase(databaseName: string): ConnectionProfile {
|
|
let instance = this.cloneWithNewId();
|
|
instance.databaseName = databaseName;
|
|
return instance;
|
|
}
|
|
|
|
public static readonly RootGroupName: string = '/';
|
|
|
|
public withoutPassword(): ConnectionProfile {
|
|
let clone = this.clone();
|
|
clone.password = '';
|
|
return clone;
|
|
}
|
|
|
|
/**
|
|
* Returns a key derived the connections options (providerName, authenticationType, serverName, databaseName, userName, groupid)
|
|
* This key uniquely identifies a connection in a group
|
|
* Example: "providerName:MSSQL|authenticationType:|databaseName:database|serverName:server3|userName:user|group:testid"
|
|
*/
|
|
public override getOptionsKey(): string {
|
|
let id = super.getOptionsKey();
|
|
let databaseDisplayName: string = this.options['databaseDisplayName'];
|
|
if (databaseDisplayName) {
|
|
id += ProviderConnectionInfo.idSeparator + 'databaseDisplayName' + ProviderConnectionInfo.nameValueSeparator + databaseDisplayName;
|
|
}
|
|
|
|
return id + ProviderConnectionInfo.idSeparator + 'group' + ProviderConnectionInfo.nameValueSeparator + this.groupId;
|
|
}
|
|
|
|
/**
|
|
* Returns the unique id for the connection that doesn't include the group name
|
|
*/
|
|
public getConnectionInfoId(): string {
|
|
return super.getOptionsKey();
|
|
}
|
|
|
|
public toIConnectionProfile(): interfaces.IConnectionProfile {
|
|
let result: interfaces.IConnectionProfile = {
|
|
connectionName: this.connectionName,
|
|
serverName: this.serverName,
|
|
databaseName: this.databaseName,
|
|
authenticationType: this.authenticationType,
|
|
getOptionsKey: this.getOptionsKey,
|
|
matches: this.matches,
|
|
groupId: this.groupId,
|
|
groupFullName: this.groupFullName,
|
|
password: this.password,
|
|
providerName: this.providerName,
|
|
savePassword: this.savePassword,
|
|
userName: this.userName,
|
|
options: this.options,
|
|
saveProfile: this.saveProfile,
|
|
id: this.id,
|
|
azureTenantId: this.azureTenantId,
|
|
azureAccount: this.azureAccount,
|
|
azurePortalEndpoint: this.azurePortalEndpoint,
|
|
azureResourceId: this.azureResourceId
|
|
};
|
|
|
|
return result;
|
|
}
|
|
|
|
public toConnectionInfo(): azdata.ConnectionInfo {
|
|
return {
|
|
options: this.options
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Returns whether this profile is connected to the default database (it doesn't specify a database to connect to)
|
|
*/
|
|
public static isConnectionToDefaultDb(profile: azdata.IConnectionProfile): boolean {
|
|
return !profile.databaseName || profile.databaseName.trim() === '';
|
|
}
|
|
|
|
public static fromIConnectionProfile(capabilitiesService: ICapabilitiesService, profile: azdata.IConnectionProfile): ConnectionProfile {
|
|
if (profile instanceof ConnectionProfile) {
|
|
return profile;
|
|
} else {
|
|
return new ConnectionProfile(capabilitiesService, profile);
|
|
}
|
|
}
|
|
|
|
public static createFromStoredProfile(profile: interfaces.IConnectionProfileStore, capabilitiesService: ICapabilitiesService): ConnectionProfile {
|
|
let connectionInfo = new ConnectionProfile(capabilitiesService, profile.providerName);
|
|
connectionInfo.options = profile.options;
|
|
|
|
// append group ID and original display name to build unique OE session ID
|
|
connectionInfo.options = deepClone(profile.options);
|
|
connectionInfo.options['groupId'] = connectionInfo.groupId;
|
|
connectionInfo.options['databaseDisplayName'] = connectionInfo.databaseName;
|
|
|
|
connectionInfo.groupId = profile.groupId;
|
|
connectionInfo.providerName = profile.providerName;
|
|
connectionInfo.saveProfile = true;
|
|
connectionInfo.savePassword = profile.savePassword;
|
|
connectionInfo.id = profile.id || generateUuid();
|
|
return connectionInfo;
|
|
}
|
|
|
|
public static convertToProfileStore(
|
|
capabilitiesService: ICapabilitiesService,
|
|
connectionProfile: interfaces.IConnectionProfile): interfaces.IConnectionProfileStore {
|
|
let connectionInfo = ConnectionProfile.fromIConnectionProfile(capabilitiesService, connectionProfile);
|
|
let profile: interfaces.IConnectionProfileStore = {
|
|
options: {},
|
|
groupId: connectionProfile.groupId!,
|
|
providerName: connectionInfo.providerName,
|
|
savePassword: connectionInfo.savePassword,
|
|
id: connectionInfo.id
|
|
};
|
|
|
|
profile.options = connectionInfo.options;
|
|
|
|
return profile;
|
|
}
|
|
}
|