2020-05-26 03:30:55 +01:00
|
|
|
export enum Platform {
|
|
|
|
Portal = "Portal",
|
|
|
|
Hosted = "Hosted",
|
2021-01-20 15:15:01 +00:00
|
|
|
Emulator = "Emulator",
|
2020-05-26 03:30:55 +01:00
|
|
|
}
|
|
|
|
|
2020-08-06 20:03:46 +01:00
|
|
|
interface ConfigContext {
|
2020-05-26 03:30:55 +01:00
|
|
|
platform: Platform;
|
2020-09-17 22:13:22 +01:00
|
|
|
allowedParentFrameOrigins: string[];
|
2020-05-26 03:30:55 +01:00
|
|
|
gitSha?: string;
|
|
|
|
proxyPath?: string;
|
|
|
|
AAD_ENDPOINT: string;
|
|
|
|
ARM_AUTH_AREA: string;
|
|
|
|
ARM_ENDPOINT: string;
|
|
|
|
EMULATOR_ENDPOINT?: string;
|
|
|
|
ARM_API_VERSION: string;
|
|
|
|
GRAPH_ENDPOINT: string;
|
|
|
|
GRAPH_API_VERSION: string;
|
|
|
|
ARCADIA_ENDPOINT: string;
|
|
|
|
ARCADIA_LIVY_ENDPOINT_DNS_ZONE: string;
|
|
|
|
BACKEND_ENDPOINT?: string;
|
|
|
|
MONGO_BACKEND_ENDPOINT?: string;
|
|
|
|
PROXY_PATH?: string;
|
|
|
|
JUNO_ENDPOINT: string;
|
|
|
|
GITHUB_CLIENT_ID: string;
|
|
|
|
GITHUB_CLIENT_SECRET?: string; // No need to inject secret for prod. Juno already knows it.
|
|
|
|
hostedExplorerURL: string;
|
2020-10-02 16:45:32 +01:00
|
|
|
armAPIVersion?: string;
|
2020-05-26 03:30:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Default configuration
|
2020-08-06 20:03:46 +01:00
|
|
|
let configContext: Readonly<ConfigContext> = {
|
2020-05-26 03:30:55 +01:00
|
|
|
platform: Platform.Portal,
|
2020-09-17 22:13:22 +01:00
|
|
|
allowedParentFrameOrigins: [
|
2020-09-30 00:09:11 +01:00
|
|
|
`^https:\\/\\/cosmos\\.azure\\.(com|cn|us)$`,
|
|
|
|
`^https:\\/\\/[\\.\\w]*portal\\.azure\\.(com|cn|us)$`,
|
2020-10-07 21:11:11 +01:00
|
|
|
`^https:\\/\\/[\\.\\w]*portal\\.microsoftazure.de$`,
|
2020-09-30 00:09:11 +01:00
|
|
|
`^https:\\/\\/[\\.\\w]*ext\\.azure\\.(com|cn|us)$`,
|
|
|
|
`^https:\\/\\/[\\.\\w]*\\.ext\\.microsoftazure\\.de$`,
|
2021-01-20 15:15:01 +00:00
|
|
|
`^https://cosmos-db-dataexplorer-germanycentral.azurewebsites.de$`,
|
2020-09-17 22:13:22 +01:00
|
|
|
],
|
2020-05-26 03:30:55 +01:00
|
|
|
// Webpack injects this at build time
|
|
|
|
gitSha: process.env.GIT_SHA,
|
|
|
|
hostedExplorerURL: "https://cosmos.azure.com/",
|
|
|
|
AAD_ENDPOINT: "https://login.microsoftonline.com/",
|
|
|
|
ARM_AUTH_AREA: "https://management.azure.com/",
|
|
|
|
ARM_ENDPOINT: "https://management.azure.com/",
|
|
|
|
ARM_API_VERSION: "2016-06-01",
|
|
|
|
GRAPH_ENDPOINT: "https://graph.windows.net",
|
|
|
|
GRAPH_API_VERSION: "1.6",
|
|
|
|
ARCADIA_ENDPOINT: "https://workspaceartifacts.projectarcadia.net",
|
|
|
|
ARCADIA_LIVY_ENDPOINT_DNS_ZONE: "dev.azuresynapse.net",
|
|
|
|
GITHUB_CLIENT_ID: "6cb2f63cf6f7b5cbdeca", // Registered OAuth app: https://github.com/settings/applications/1189306
|
2020-10-12 15:23:57 +01:00
|
|
|
JUNO_ENDPOINT: "https://tools.cosmos.azure.com",
|
2021-01-20 15:15:01 +00:00
|
|
|
BACKEND_ENDPOINT: "https://main.documentdb.ext.azure.com",
|
2020-05-26 03:30:55 +01:00
|
|
|
};
|
|
|
|
|
2020-08-06 20:03:46 +01:00
|
|
|
export function resetConfigContext(): void {
|
|
|
|
if (process.env.NODE_ENV !== "test") {
|
|
|
|
throw new Error("resetConfigContext can only becalled in a test environment");
|
|
|
|
}
|
|
|
|
configContext = {} as ConfigContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function updateConfigContext(newContext: Partial<ConfigContext>): void {
|
|
|
|
Object.assign(configContext, newContext);
|
|
|
|
}
|
|
|
|
|
2020-05-26 03:30:55 +01:00
|
|
|
// Injected for local develpment. These will be removed in the production bundle by webpack
|
|
|
|
if (process.env.NODE_ENV === "development") {
|
|
|
|
const port: string = process.env.PORT || "1234";
|
2020-08-06 20:03:46 +01:00
|
|
|
updateConfigContext({
|
|
|
|
BACKEND_ENDPOINT: "https://localhost:" + port,
|
|
|
|
MONGO_BACKEND_ENDPOINT: "https://localhost:" + port,
|
|
|
|
PROXY_PATH: "/proxy",
|
2021-01-20 15:15:01 +00:00
|
|
|
EMULATOR_ENDPOINT: "https://localhost:8081",
|
2020-08-06 20:03:46 +01:00
|
|
|
});
|
2020-05-26 03:30:55 +01:00
|
|
|
}
|
|
|
|
|
2020-08-06 20:03:46 +01:00
|
|
|
export async function initializeConfiguration(): Promise<ConfigContext> {
|
2020-05-26 03:30:55 +01:00
|
|
|
try {
|
|
|
|
const response = await fetch("./config.json");
|
|
|
|
if (response.status === 200) {
|
|
|
|
try {
|
2020-09-17 22:13:22 +01:00
|
|
|
const { allowedParentFrameOrigins, ...externalConfig } = await response.json();
|
2020-08-06 20:03:46 +01:00
|
|
|
Object.assign(configContext, externalConfig);
|
2020-09-17 22:13:22 +01:00
|
|
|
if (allowedParentFrameOrigins && allowedParentFrameOrigins.length > 0) {
|
|
|
|
updateConfigContext({
|
2021-01-20 15:15:01 +00:00
|
|
|
allowedParentFrameOrigins: [...configContext.allowedParentFrameOrigins, ...allowedParentFrameOrigins],
|
2020-09-17 22:13:22 +01:00
|
|
|
});
|
|
|
|
}
|
2020-05-26 03:30:55 +01:00
|
|
|
} catch (error) {
|
|
|
|
console.error("Unable to parse json in config file");
|
|
|
|
console.error(error);
|
|
|
|
}
|
|
|
|
}
|
2020-08-26 06:48:58 +01:00
|
|
|
// Allow override of platform value with URL query parameter
|
2020-05-26 03:30:55 +01:00
|
|
|
const params = new URLSearchParams(window.location.search);
|
2020-10-02 16:45:32 +01:00
|
|
|
if (params.has("armAPIVersion")) {
|
|
|
|
const armAPIVersion = params.get("armAPIVersion") || "";
|
|
|
|
updateConfigContext({ armAPIVersion });
|
|
|
|
}
|
2020-08-26 06:48:58 +01:00
|
|
|
if (params.has("platform")) {
|
|
|
|
const platform = params.get("platform");
|
|
|
|
switch (platform) {
|
|
|
|
default:
|
2021-01-19 22:31:55 +00:00
|
|
|
console.error(`Invalid platform query parameter: ${platform}`);
|
2020-08-26 06:48:58 +01:00
|
|
|
break;
|
|
|
|
case Platform.Portal:
|
|
|
|
case Platform.Hosted:
|
|
|
|
case Platform.Emulator:
|
|
|
|
updateConfigContext({ platform });
|
|
|
|
}
|
|
|
|
}
|
2020-05-26 03:30:55 +01:00
|
|
|
} catch (error) {
|
2021-01-19 22:31:55 +00:00
|
|
|
console.error("No configuration file found using defaults");
|
2020-05-26 03:30:55 +01:00
|
|
|
}
|
2020-08-06 20:03:46 +01:00
|
|
|
return configContext;
|
2020-05-26 03:30:55 +01:00
|
|
|
}
|
|
|
|
|
2020-08-06 20:03:46 +01:00
|
|
|
export { configContext };
|