mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-04-05 09:28:54 +01:00
* Update contracts for new all resource messages * Add timestamp to token message signature * Reconstruct resource tree with databases and collections parsed from token dictionary keys * Create FabricDatabase and FabricCollection to turn off interaction * Remove unnecessary FabricCollection derived class * Handle resource tokens * Bug fix * Fix linting issues * Fix update document * Fix partitition keys * Remove special case for FabricDatabase tree node * Modify readCollections to follow normal flow with Fabric * Move fabric databases refresh to data access and remove special case in Explorer * Revert Explorer.tsx changes * Disable database context menu and delete container context menu * Remove create database/container button for Fabric * Fix format * Renew token logic * Parallelize read collections calls to speed up * Disable readDatabaseOffer, because it is too slow for now * Reduce TOKEN_VALIDITY_MS a bit to make sure renewal happens before expiration. Receving new tokens new refreshes databases * Add container element for Main app in HTML * Do not handle "openTab" message anymore * Fix style of main div * Simplify conditional load of the fabric .css * Fix format * Fix tsc can't find dynamic less import --------- Co-authored-by: Armando Trejo Oliver <artrejo@microsoft.com>
86 lines
3.2 KiB
TypeScript
86 lines
3.2 KiB
TypeScript
import { Platform, configContext } from "ConfigContext";
|
|
import { AuthType } from "../../AuthType";
|
|
import * as DataModels from "../../Contracts/DataModels";
|
|
import { userContext } from "../../UserContext";
|
|
import { logConsoleProgress } from "../../Utils/NotificationConsoleUtils";
|
|
import { listCassandraKeyspaces } from "../../Utils/arm/generatedClients/cosmos/cassandraResources";
|
|
import { listGremlinDatabases } from "../../Utils/arm/generatedClients/cosmos/gremlinResources";
|
|
import { listMongoDBDatabases } from "../../Utils/arm/generatedClients/cosmos/mongoDBResources";
|
|
import { listSqlDatabases } from "../../Utils/arm/generatedClients/cosmos/sqlResources";
|
|
import { client } from "../CosmosClient";
|
|
import { handleError } from "../ErrorHandlingUtils";
|
|
|
|
export async function readDatabases(): Promise<DataModels.Database[]> {
|
|
let databases: DataModels.Database[];
|
|
const clearMessage = logConsoleProgress(`Querying databases`);
|
|
|
|
if (configContext.platform === Platform.Fabric && userContext.fabricDatabaseConnectionInfo?.resourceTokens) {
|
|
const tokensData = userContext.fabricDatabaseConnectionInfo;
|
|
|
|
const databaseIdsSet = new Set<string>(); // databaseId
|
|
|
|
for (const collectionResourceId in tokensData.resourceTokens) {
|
|
// Dictionary key looks like this: dbs/SampleDB/colls/Container
|
|
const resourceIdObj = collectionResourceId.split("/");
|
|
const databaseId = resourceIdObj[1];
|
|
|
|
databaseIdsSet.add(databaseId);
|
|
}
|
|
|
|
const databases: DataModels.Database[] = Array.from(databaseIdsSet.values())
|
|
.sort((a, b) => a.localeCompare(b))
|
|
.map((databaseId) => ({
|
|
_rid: "",
|
|
_self: "",
|
|
_etag: "",
|
|
_ts: 0,
|
|
id: databaseId,
|
|
collections: [],
|
|
}));
|
|
return databases;
|
|
}
|
|
|
|
try {
|
|
if (
|
|
userContext.authType === AuthType.AAD &&
|
|
!userContext.features.enableSDKoperations &&
|
|
userContext.apiType !== "Tables"
|
|
) {
|
|
databases = await readDatabasesWithARM();
|
|
} else {
|
|
const sdkResponse = await client().databases.readAll().fetchAll();
|
|
databases = sdkResponse.resources as DataModels.Database[];
|
|
}
|
|
} catch (error) {
|
|
handleError(error, "ReadDatabases", `Error while querying databases`);
|
|
throw error;
|
|
}
|
|
clearMessage();
|
|
return databases;
|
|
}
|
|
|
|
async function readDatabasesWithARM(): Promise<DataModels.Database[]> {
|
|
let rpResponse;
|
|
const { subscriptionId, resourceGroup, apiType, databaseAccount } = userContext;
|
|
const accountName = databaseAccount.name;
|
|
|
|
switch (apiType) {
|
|
case "SQL":
|
|
rpResponse = await listSqlDatabases(subscriptionId, resourceGroup, accountName);
|
|
break;
|
|
case "Mongo":
|
|
rpResponse = await listMongoDBDatabases(subscriptionId, resourceGroup, accountName);
|
|
break;
|
|
case "Cassandra":
|
|
rpResponse = await listCassandraKeyspaces(subscriptionId, resourceGroup, accountName);
|
|
break;
|
|
case "Gremlin":
|
|
rpResponse = await listGremlinDatabases(subscriptionId, resourceGroup, accountName);
|
|
break;
|
|
default:
|
|
throw new Error(`Unsupported default experience type: ${apiType}`);
|
|
}
|
|
|
|
return rpResponse?.value?.map((database) => database.properties?.resource as DataModels.Database);
|
|
}
|