mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 01:25:36 -05:00
* - Added coming soon message for learn more. - Potential fix for learn more message * Renaming of controller to sqlMigrationService * Surfacing some errors -Azure account is stale error -Migration Service creation error. * Adding refresh azure token validation. * Fixing some errors pointed during PR -Fixing property names -Fixing count * Fixing migration status - Adding special error handling for resource not found error - Deleting unfound migrations from local cache - Using prefetched migration status for view all Misc fixes: - Using SQL server version name instead of number - Fixing Icons on sku recommendation page - Fixing table column width in cutover dialog - Adding spinner button to refresh. * Fixing all strings in migration service page and dialog * fixed a string error in create service dialog
534 lines
15 KiB
TypeScript
534 lines
15 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 azdata from 'azdata';
|
|
import { azureResource } from 'azureResource';
|
|
import * as azurecore from 'azurecore';
|
|
import * as vscode from 'vscode';
|
|
import * as mssql from '../../../mssql';
|
|
import { getAvailableManagedInstanceProducts, getAvailableStorageAccounts, getBlobContainers, getFileShares, getSqlMigrationServices, getSubscriptions, SqlMigrationService, SqlManagedInstance, startDatabaseMigration, StartDatabaseMigrationRequest, StorageAccount, getAvailableSqlVMs, SqlVMServer } from '../api/azure';
|
|
import { SKURecommendations } from './externalContract';
|
|
import * as constants from '../constants/strings';
|
|
import { MigrationLocalStorage } from './migrationLocalStorage';
|
|
import * as nls from 'vscode-nls';
|
|
const localize = nls.loadMessageBundle();
|
|
|
|
export enum State {
|
|
INIT,
|
|
COLLECTING_SOURCE_INFO,
|
|
COLLECTION_SOURCE_INFO_ERROR,
|
|
TARGET_SELECTION,
|
|
TARGET_SELECTION_ERROR,
|
|
AZURE_SERVER_SELECTION,
|
|
AZURE_SERVER_SELECTION_ERROR,
|
|
AZURE_DB_BACKUP,
|
|
AZURE_DB_BACKUP_ERROR,
|
|
MIGRATION_AGENT_CREATION,
|
|
MIGRATION_AGENT_SELECTION,
|
|
MIGRATION_AGENT_ERROR,
|
|
MIGRATION_START,
|
|
NO_AZURE_SERVER,
|
|
EXIT,
|
|
}
|
|
|
|
export enum MigrationCutover {
|
|
ONLINE,
|
|
OFFLINE
|
|
}
|
|
|
|
export enum NetworkContainerType {
|
|
FILE_SHARE,
|
|
BLOB_CONTAINER,
|
|
NETWORK_SHARE
|
|
}
|
|
|
|
export interface NetworkShare {
|
|
networkShareLocation: string;
|
|
windowsUser: string;
|
|
password: string;
|
|
}
|
|
|
|
export interface DatabaseBackupModel {
|
|
migrationCutover: MigrationCutover;
|
|
networkContainerType: NetworkContainerType;
|
|
networkShareLocations: string[];
|
|
windowsUser: string;
|
|
password: string;
|
|
subscription: azureResource.AzureResourceSubscription;
|
|
storageAccount: StorageAccount;
|
|
storageKey: string;
|
|
azureSecurityToken: string;
|
|
fileShares: azureResource.FileShare[];
|
|
blobContainers: azureResource.BlobContainer[];
|
|
}
|
|
export interface Model {
|
|
readonly sourceConnectionId: string;
|
|
readonly currentState: State;
|
|
gatheringInformationError: string | undefined;
|
|
skuRecommendations: SKURecommendations | undefined;
|
|
_azureAccount: azdata.Account | undefined;
|
|
_databaseBackup: DatabaseBackupModel | undefined;
|
|
}
|
|
|
|
export interface StateChangeEvent {
|
|
oldState: State;
|
|
newState: State;
|
|
}
|
|
|
|
export class MigrationStateModel implements Model, vscode.Disposable {
|
|
public _azureAccounts!: azdata.Account[];
|
|
public _azureAccount!: azdata.Account;
|
|
public _accountTenants!: azurecore.Tenant[];
|
|
|
|
public _subscriptions!: azureResource.AzureResourceSubscription[];
|
|
|
|
public _targetSubscription!: azureResource.AzureResourceSubscription;
|
|
public _targetManagedInstances!: SqlManagedInstance[];
|
|
public _targetSqlVirtualMachines!: SqlVMServer[];
|
|
public _targetServerInstance!: SqlManagedInstance;
|
|
public _databaseBackup!: DatabaseBackupModel;
|
|
public _migrationDbs: string[] = [];
|
|
public _storageAccounts!: StorageAccount[];
|
|
public _fileShares!: azureResource.FileShare[];
|
|
public _blobContainers!: azureResource.BlobContainer[];
|
|
public _refreshNetworkShareLocation!: azureResource.BlobContainer[];
|
|
public _targetDatabaseNames!: string[];
|
|
|
|
public _sqlMigrationService!: SqlMigrationService;
|
|
public _sqlMigrationServices!: SqlMigrationService[];
|
|
public _nodeNames!: string[];
|
|
|
|
private _stateChangeEventEmitter = new vscode.EventEmitter<StateChangeEvent>();
|
|
private _currentState: State;
|
|
private _gatheringInformationError: string | undefined;
|
|
private _skuRecommendations: SKURecommendations | undefined;
|
|
private _assessmentResults: mssql.SqlMigrationAssessmentResultItem[] | undefined;
|
|
|
|
public refreshDatabaseBackupPage!: boolean;
|
|
|
|
constructor(
|
|
private readonly _extensionContext: vscode.ExtensionContext,
|
|
private readonly _sourceConnectionId: string,
|
|
public readonly migrationService: mssql.ISqlMigrationService
|
|
) {
|
|
this._currentState = State.INIT;
|
|
this._databaseBackup = {} as DatabaseBackupModel;
|
|
}
|
|
|
|
public get sourceConnectionId(): string {
|
|
return this._sourceConnectionId;
|
|
}
|
|
|
|
public get currentState(): State {
|
|
return this._currentState;
|
|
}
|
|
|
|
public set currentState(newState: State) {
|
|
const oldState = this.currentState;
|
|
|
|
this._currentState = newState;
|
|
|
|
this._stateChangeEventEmitter.fire({ oldState, newState: this.currentState });
|
|
}
|
|
|
|
public get assessmentResults(): mssql.SqlMigrationAssessmentResultItem[] | undefined {
|
|
return this._assessmentResults;
|
|
}
|
|
|
|
public set assessmentResults(assessmentResults: mssql.SqlMigrationAssessmentResultItem[] | undefined) {
|
|
this._assessmentResults = assessmentResults;
|
|
}
|
|
|
|
public get gatheringInformationError(): string | undefined {
|
|
return this._gatheringInformationError;
|
|
}
|
|
|
|
public set gatheringInformationError(error: string | undefined) {
|
|
this._gatheringInformationError = error;
|
|
}
|
|
|
|
public get skuRecommendations(): SKURecommendations | undefined {
|
|
return this._skuRecommendations;
|
|
}
|
|
|
|
public set skuRecommendations(recommendations: SKURecommendations | undefined) {
|
|
this._skuRecommendations = recommendations;
|
|
}
|
|
|
|
public get stateChangeEvent(): vscode.Event<StateChangeEvent> {
|
|
return this._stateChangeEventEmitter.event;
|
|
}
|
|
|
|
dispose() {
|
|
this._stateChangeEventEmitter.dispose();
|
|
}
|
|
|
|
public getExtensionPath(): string {
|
|
return this._extensionContext.extensionPath;
|
|
}
|
|
|
|
public async getAccountValues(): Promise<azdata.CategoryValue[]> {
|
|
let accountValues: azdata.CategoryValue[] = [];
|
|
try {
|
|
this._azureAccounts = await azdata.accounts.getAllAccounts();
|
|
if (this._azureAccounts.length === 0) {
|
|
accountValues = [{
|
|
displayName: constants.ACCOUNT_SELECTION_PAGE_NO_LINKED_ACCOUNTS_ERROR,
|
|
name: ''
|
|
}];
|
|
}
|
|
accountValues = this._azureAccounts.map((account): azdata.CategoryValue => {
|
|
return {
|
|
displayName: account.displayInfo.displayName,
|
|
name: account.displayInfo.userId
|
|
};
|
|
});
|
|
} catch (e) {
|
|
console.log(e);
|
|
accountValues = [{
|
|
displayName: constants.ACCOUNT_SELECTION_PAGE_NO_LINKED_ACCOUNTS_ERROR,
|
|
name: ''
|
|
}];
|
|
}
|
|
return accountValues;
|
|
}
|
|
|
|
public getAccount(index: number): azdata.Account {
|
|
return this._azureAccounts[index];
|
|
}
|
|
|
|
public getTenantValues(): azdata.CategoryValue[] {
|
|
return this._accountTenants.map(tenant => {
|
|
return {
|
|
displayName: tenant.displayName,
|
|
name: tenant.id
|
|
};
|
|
});
|
|
}
|
|
|
|
public getTenant(index: number): azurecore.Tenant {
|
|
return this._accountTenants[index];
|
|
}
|
|
|
|
public async getSubscriptionsDropdownValues(): Promise<azdata.CategoryValue[]> {
|
|
let subscriptionsValues: azdata.CategoryValue[] = [];
|
|
try {
|
|
if (!this._subscriptions) {
|
|
this._subscriptions = await getSubscriptions(this._azureAccount);
|
|
}
|
|
this._subscriptions.forEach((subscription) => {
|
|
subscriptionsValues.push({
|
|
name: subscription.id,
|
|
displayName: `${subscription.name} - ${subscription.id}`
|
|
});
|
|
});
|
|
|
|
if (subscriptionsValues.length === 0) {
|
|
subscriptionsValues = [
|
|
{
|
|
displayName: constants.NO_SUBSCRIPTIONS_FOUND,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
} catch (e) {
|
|
console.log(e);
|
|
subscriptionsValues = [
|
|
{
|
|
displayName: constants.NO_SUBSCRIPTIONS_FOUND,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
|
|
return subscriptionsValues;
|
|
}
|
|
|
|
public getSubscription(index: number): azureResource.AzureResourceSubscription {
|
|
return this._subscriptions[index];
|
|
}
|
|
|
|
public async getManagedInstanceValues(subscription: azureResource.AzureResourceSubscription): Promise<azdata.CategoryValue[]> {
|
|
let managedInstanceValues: azdata.CategoryValue[] = [];
|
|
try {
|
|
this._targetManagedInstances = await getAvailableManagedInstanceProducts(this._azureAccount, subscription);
|
|
this._targetManagedInstances.forEach((managedInstance) => {
|
|
managedInstanceValues.push({
|
|
name: managedInstance.id,
|
|
displayName: `${managedInstance.name}`
|
|
});
|
|
});
|
|
|
|
if (managedInstanceValues.length === 0) {
|
|
managedInstanceValues = [
|
|
{
|
|
displayName: constants.NO_MANAGED_INSTANCE_FOUND,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
} catch (e) {
|
|
console.log(e);
|
|
managedInstanceValues = [
|
|
{
|
|
displayName: constants.NO_MANAGED_INSTANCE_FOUND,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
return managedInstanceValues;
|
|
}
|
|
|
|
public getManagedInstance(index: number): SqlManagedInstance {
|
|
return this._targetManagedInstances[index];
|
|
}
|
|
|
|
public async getSqlVirtualMachineValues(subscription: azureResource.AzureResourceSubscription): Promise<azdata.CategoryValue[]> {
|
|
let virtualMachineValues: azdata.CategoryValue[] = [];
|
|
try {
|
|
this._targetSqlVirtualMachines = await getAvailableSqlVMs(this._azureAccount, subscription);
|
|
virtualMachineValues = this._targetSqlVirtualMachines.map((virtualMachine) => {
|
|
return {
|
|
name: virtualMachine.id,
|
|
displayName: `${virtualMachine.name}`
|
|
};
|
|
});
|
|
|
|
if (virtualMachineValues.length === 0) {
|
|
virtualMachineValues = [
|
|
{
|
|
displayName: constants.NO_VIRTUAL_MACHINE_FOUND,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
} catch (e) {
|
|
console.log(e);
|
|
virtualMachineValues = [
|
|
{
|
|
displayName: constants.NO_VIRTUAL_MACHINE_FOUND,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
return virtualMachineValues;
|
|
}
|
|
|
|
public getVirtualMachine(index: number): SqlVMServer {
|
|
return this._targetSqlVirtualMachines[index];
|
|
}
|
|
|
|
public async getStorageAccountValues(subscription: azureResource.AzureResourceSubscription): Promise<azdata.CategoryValue[]> {
|
|
let storageAccountValues: azdata.CategoryValue[] = [];
|
|
try {
|
|
this._storageAccounts = await getAvailableStorageAccounts(this._azureAccount, subscription);
|
|
this._storageAccounts.forEach((storageAccount) => {
|
|
storageAccountValues.push({
|
|
name: storageAccount.id,
|
|
displayName: `${storageAccount.name}`
|
|
});
|
|
});
|
|
|
|
if (storageAccountValues.length === 0) {
|
|
storageAccountValues = [
|
|
{
|
|
displayName: constants.NO_STORAGE_ACCOUNT_FOUND,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
} catch (e) {
|
|
console.log(e);
|
|
storageAccountValues = [
|
|
{
|
|
displayName: constants.NO_STORAGE_ACCOUNT_FOUND,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
return storageAccountValues;
|
|
}
|
|
|
|
public getStorageAccount(index: number): StorageAccount {
|
|
return this._storageAccounts[index];
|
|
}
|
|
|
|
public async getFileShareValues(subscription: azureResource.AzureResourceSubscription, storageAccount: StorageAccount): Promise<azdata.CategoryValue[]> {
|
|
let fileShareValues: azdata.CategoryValue[] = [];
|
|
try {
|
|
this._fileShares = await getFileShares(this._azureAccount, subscription, storageAccount);
|
|
this._fileShares.forEach((fileShare) => {
|
|
fileShareValues.push({
|
|
name: fileShare.id,
|
|
displayName: `${fileShare.name}`
|
|
});
|
|
});
|
|
|
|
if (fileShareValues.length === 0) {
|
|
fileShareValues = [
|
|
{
|
|
displayName: constants.NO_FILESHARES_FOUND,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
} catch (e) {
|
|
console.log(e);
|
|
fileShareValues = [
|
|
{
|
|
displayName: constants.NO_FILESHARES_FOUND,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
return fileShareValues;
|
|
}
|
|
|
|
public getFileShare(index: number): azureResource.FileShare {
|
|
return this._fileShares[index];
|
|
}
|
|
|
|
public async getBlobContainerValues(subscription: azureResource.AzureResourceSubscription, storageAccount: StorageAccount): Promise<azdata.CategoryValue[]> {
|
|
let blobContainerValues: azdata.CategoryValue[] = [];
|
|
try {
|
|
this._blobContainers = await getBlobContainers(this._azureAccount, subscription, storageAccount);
|
|
this._blobContainers.forEach((blobContainer) => {
|
|
blobContainerValues.push({
|
|
name: blobContainer.id,
|
|
displayName: `${blobContainer.name}`
|
|
});
|
|
});
|
|
|
|
if (blobContainerValues.length === 0) {
|
|
blobContainerValues = [
|
|
{
|
|
displayName: constants.NO_BLOBCONTAINERS_FOUND,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
} catch (e) {
|
|
console.log(e);
|
|
blobContainerValues = [
|
|
{
|
|
displayName: constants.NO_BLOBCONTAINERS_FOUND,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
return blobContainerValues;
|
|
}
|
|
|
|
public getBlobContainer(index: number): azureResource.BlobContainer {
|
|
return this._blobContainers[index];
|
|
}
|
|
|
|
|
|
public async getSqlMigrationServiceValues(subscription: azureResource.AzureResourceSubscription, managedInstance: SqlManagedInstance): Promise<azdata.CategoryValue[]> {
|
|
let sqlMigrationServiceValues: azdata.CategoryValue[] = [];
|
|
try {
|
|
this._sqlMigrationServices = await getSqlMigrationServices(this._azureAccount, subscription, managedInstance.location);
|
|
this._sqlMigrationServices.forEach((sqlMigrationService) => {
|
|
sqlMigrationServiceValues.push({
|
|
name: sqlMigrationService.id,
|
|
displayName: `${sqlMigrationService.name}`
|
|
});
|
|
});
|
|
|
|
if (sqlMigrationServiceValues.length === 0) {
|
|
sqlMigrationServiceValues = [
|
|
{
|
|
displayName: constants.SQL_MIGRATION_SERVICE_NOT_FOUND_ERROR,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
} catch (e) {
|
|
console.log(e);
|
|
sqlMigrationServiceValues = [
|
|
{
|
|
displayName: constants.SQL_MIGRATION_SERVICE_NOT_FOUND_ERROR,
|
|
name: ''
|
|
}
|
|
];
|
|
}
|
|
return sqlMigrationServiceValues;
|
|
}
|
|
|
|
public getMigrationService(index: number): SqlMigrationService {
|
|
return this._sqlMigrationServices[index];
|
|
}
|
|
|
|
public async startMigration() {
|
|
const sqlConnections = await azdata.connection.getConnections();
|
|
const currentConnection = sqlConnections.find((value) => {
|
|
if (value.connectionId === this.sourceConnectionId) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
});
|
|
const connectionPassword = await azdata.connection.getCredentials(this.sourceConnectionId);
|
|
|
|
const requestBody: StartDatabaseMigrationRequest = {
|
|
location: this._sqlMigrationService?.properties.location!,
|
|
properties: {
|
|
sourceDatabaseName: '',
|
|
migrationService: this._sqlMigrationService?.id!,
|
|
backupConfiguration: {
|
|
targetLocation: {
|
|
storageAccountResourceId: this._databaseBackup.storageAccount.id,
|
|
accountKey: this._databaseBackup.storageKey,
|
|
},
|
|
sourceLocation: {
|
|
fileShare: {
|
|
path: '',
|
|
username: this._databaseBackup.windowsUser,
|
|
password: this._databaseBackup.password,
|
|
}
|
|
},
|
|
},
|
|
sourceSqlConnection: {
|
|
dataSource: currentConnection?.serverName!,
|
|
username: currentConnection?.userName!,
|
|
password: connectionPassword.password
|
|
},
|
|
scope: this._targetServerInstance.id
|
|
}
|
|
};
|
|
|
|
this._migrationDbs.forEach(async (db, index) => {
|
|
|
|
requestBody.properties.sourceDatabaseName = db;
|
|
try {
|
|
requestBody.properties.backupConfiguration.sourceLocation.fileShare!.path = this._databaseBackup.networkShareLocations[index];
|
|
const response = await startDatabaseMigration(
|
|
this._azureAccount,
|
|
this._targetSubscription,
|
|
this._sqlMigrationService?.properties.location!,
|
|
this._targetServerInstance,
|
|
this._targetDatabaseNames[index],
|
|
requestBody
|
|
);
|
|
if (response.status === 201) {
|
|
MigrationLocalStorage.saveMigration(
|
|
currentConnection!,
|
|
response.databaseMigration,
|
|
this._targetServerInstance,
|
|
this._azureAccount,
|
|
this._targetSubscription,
|
|
this._sqlMigrationService
|
|
);
|
|
vscode.window.showInformationMessage(localize("sql.migration.starting.migration.message", 'Starting migration for database {0} to {1} - {2}', db, this._targetServerInstance.name, this._targetDatabaseNames[index]));
|
|
}
|
|
} catch (e) {
|
|
console.log(e);
|
|
vscode.window.showInformationMessage(e);
|
|
}
|
|
|
|
});
|
|
}
|
|
}
|