2016-05-06 15:19:56 +02:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
2022-03-18 17:12:36 +01:00
|
|
|
Copyright 2019 - 2022 The Matrix.org Foundation C.I.C.
|
2016-05-06 15:19:56 +02:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-03-18 17:12:36 +01:00
|
|
|
import { Optional } from "matrix-events-sdk";
|
2022-03-01 19:06:17 +01:00
|
|
|
|
2022-03-18 17:12:36 +01:00
|
|
|
import { SnakedObject } from "./utils/SnakedObject";
|
|
|
|
import { IConfigOptions, ISsoRedirectOptions } from "./IConfigOptions";
|
|
|
|
import { KeysWithObjectShape } from "./@types/common";
|
2022-03-01 19:53:09 +01:00
|
|
|
|
2022-03-18 17:12:36 +01:00
|
|
|
// see element-web config.md for docs, or the IConfigOptions interface for dev docs
|
|
|
|
export const DEFAULTS: Partial<IConfigOptions> = {
|
2020-07-09 19:25:03 +02:00
|
|
|
brand: "Element",
|
2016-05-06 15:19:56 +02:00
|
|
|
integrations_ui_url: "https://scalar.vector.im/",
|
|
|
|
integrations_rest_url: "https://scalar.vector.im/api",
|
2017-01-25 15:43:47 +01:00
|
|
|
bug_report_endpoint_url: null,
|
2020-03-18 22:50:05 +01:00
|
|
|
jitsi: {
|
2022-03-18 17:12:36 +01:00
|
|
|
preferred_domain: "meet.element.io",
|
2020-03-18 22:50:05 +01:00
|
|
|
},
|
2022-03-18 17:12:36 +01:00
|
|
|
|
|
|
|
// @ts-ignore - we deliberately use the camelCase version here so we trigger
|
|
|
|
// the fallback behaviour. If we used the snake_case version then we'd break
|
|
|
|
// everyone's config which has the camelCase property because our default would
|
|
|
|
// be preferred over their config.
|
2020-09-17 01:23:37 +02:00
|
|
|
desktopBuilds: {
|
|
|
|
available: true,
|
2022-03-03 18:51:38 +01:00
|
|
|
logo: require("../res/img/element-desktop-logo.svg").default,
|
2020-09-17 01:23:37 +02:00
|
|
|
url: "https://element.io/get-started",
|
|
|
|
},
|
2016-05-06 15:19:56 +02:00
|
|
|
};
|
|
|
|
|
2019-12-12 22:37:32 +01:00
|
|
|
export default class SdkConfig {
|
2022-03-18 17:12:36 +01:00
|
|
|
private static instance: IConfigOptions;
|
|
|
|
private static fallback: SnakedObject<IConfigOptions>;
|
2019-12-12 22:37:32 +01:00
|
|
|
|
2022-03-18 17:12:36 +01:00
|
|
|
private static setInstance(i: IConfigOptions) {
|
2019-12-12 22:37:32 +01:00
|
|
|
SdkConfig.instance = i;
|
2022-03-18 17:12:36 +01:00
|
|
|
SdkConfig.fallback = new SnakedObject(i);
|
2019-12-12 22:37:32 +01:00
|
|
|
|
|
|
|
// For debugging purposes
|
2022-03-01 19:06:17 +01:00
|
|
|
window.mxReactSdkConfig = i;
|
2019-12-12 22:37:32 +01:00
|
|
|
}
|
|
|
|
|
2022-03-18 17:12:36 +01:00
|
|
|
public static get(): IConfigOptions;
|
|
|
|
public static get<K extends keyof IConfigOptions>(key: K, altCaseName?: string): IConfigOptions[K];
|
|
|
|
public static get<K extends keyof IConfigOptions = never>(
|
|
|
|
key?: K, altCaseName?: string,
|
|
|
|
): IConfigOptions | IConfigOptions[K] {
|
|
|
|
if (key === undefined) {
|
|
|
|
// safe to cast as a fallback - we want to break the runtime contract in this case
|
|
|
|
return SdkConfig.instance || <IConfigOptions>{};
|
|
|
|
}
|
|
|
|
return SdkConfig.fallback.get(key, altCaseName);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static getObject<K extends KeysWithObjectShape<IConfigOptions>>(
|
|
|
|
key: K, altCaseName?: string,
|
|
|
|
): Optional<SnakedObject<IConfigOptions[K]>> {
|
|
|
|
const val = SdkConfig.get(key, altCaseName);
|
|
|
|
if (val !== null && val !== undefined) {
|
|
|
|
return new SnakedObject(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
// return the same type for sensitive callers (some want `undefined` specifically)
|
|
|
|
return val === undefined ? undefined : null;
|
2016-05-06 15:19:56 +02:00
|
|
|
}
|
|
|
|
|
2022-03-18 17:12:36 +01:00
|
|
|
public static put(cfg: IConfigOptions) {
|
2017-07-01 15:13:32 +02:00
|
|
|
const defaultKeys = Object.keys(DEFAULTS);
|
|
|
|
for (let i = 0; i < defaultKeys.length; ++i) {
|
2016-05-06 15:19:56 +02:00
|
|
|
if (cfg[defaultKeys[i]] === undefined) {
|
|
|
|
cfg[defaultKeys[i]] = DEFAULTS[defaultKeys[i]];
|
|
|
|
}
|
|
|
|
}
|
2019-12-12 22:37:32 +01:00
|
|
|
SdkConfig.setInstance(cfg);
|
2016-05-06 15:19:56 +02:00
|
|
|
}
|
|
|
|
|
2022-03-18 17:12:36 +01:00
|
|
|
/**
|
|
|
|
* Resets the config to be completely empty.
|
|
|
|
*/
|
2022-03-01 19:06:17 +01:00
|
|
|
public static unset() {
|
2022-03-18 17:12:36 +01:00
|
|
|
SdkConfig.setInstance(<IConfigOptions>{}); // safe to cast - defaults will be applied
|
2016-05-06 15:19:56 +02:00
|
|
|
}
|
2019-04-15 22:46:00 +02:00
|
|
|
|
2022-03-18 17:12:36 +01:00
|
|
|
public static add(cfg: Partial<IConfigOptions>) {
|
2019-04-15 22:46:00 +02:00
|
|
|
const liveConfig = SdkConfig.get();
|
|
|
|
const newConfig = Object.assign({}, liveConfig, cfg);
|
|
|
|
SdkConfig.put(newConfig);
|
|
|
|
}
|
2016-05-06 15:19:56 +02:00
|
|
|
}
|
2021-10-21 16:35:00 +02:00
|
|
|
|
2022-03-18 17:12:36 +01:00
|
|
|
export function parseSsoRedirectOptions(config: IConfigOptions): ISsoRedirectOptions {
|
2021-10-21 16:35:00 +02:00
|
|
|
// Ignore deprecated options if the config is using new ones
|
|
|
|
if (config.sso_redirect_options) return config.sso_redirect_options;
|
|
|
|
|
|
|
|
// We can cheat here because the default is false anyways
|
|
|
|
if (config.sso_immediate_redirect) return { immediate: true };
|
|
|
|
|
|
|
|
// Default: do nothing
|
|
|
|
return {};
|
|
|
|
}
|