2019-08-29 22:20:14 +08:00
|
|
|
/*
|
2021-06-23 00:22:38 +08:00
|
|
|
Copyright 2019 - 2021 The Matrix.org Foundation C.I.C.
|
2019-08-29 22:20:14 +08: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.
|
|
|
|
*/
|
|
|
|
|
2021-03-19 10:50:34 +08:00
|
|
|
import { SERVICE_TYPES } from 'matrix-js-sdk/src/service-types';
|
2021-06-23 00:22:38 +08:00
|
|
|
|
2019-08-29 22:20:14 +08:00
|
|
|
import SdkConfig from '../SdkConfig';
|
2019-12-21 05:13:46 +08:00
|
|
|
import {MatrixClientPeg} from '../MatrixClientPeg';
|
2019-08-29 22:20:14 +08:00
|
|
|
|
2021-06-23 00:22:38 +08:00
|
|
|
export function getDefaultIdentityServerUrl(): string {
|
2019-08-29 22:20:14 +08:00
|
|
|
return SdkConfig.get()['validated_server_config']['isUrl'];
|
|
|
|
}
|
|
|
|
|
2021-06-23 00:22:38 +08:00
|
|
|
export function useDefaultIdentityServer(): void {
|
2019-08-29 22:20:14 +08:00
|
|
|
const url = getDefaultIdentityServerUrl();
|
|
|
|
// Account data change will update localstorage, client, etc through dispatcher
|
|
|
|
MatrixClientPeg.get().setAccountData("m.identity_server", {
|
|
|
|
base_url: url,
|
|
|
|
});
|
|
|
|
}
|
2019-10-31 19:58:31 +08:00
|
|
|
|
2021-06-23 00:22:38 +08:00
|
|
|
export async function doesIdentityServerHaveTerms(fullUrl: string): Promise<boolean> {
|
2019-10-31 19:58:31 +08:00
|
|
|
let terms;
|
|
|
|
try {
|
|
|
|
terms = await MatrixClientPeg.get().getTerms(SERVICE_TYPES.IS, fullUrl);
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
if (e.cors === "rejected" || e.httpStatus === 404) {
|
|
|
|
terms = null;
|
|
|
|
} else {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return terms && terms["policies"] && (Object.keys(terms["policies"]).length > 0);
|
|
|
|
}
|
|
|
|
|
2021-06-23 00:22:38 +08:00
|
|
|
export function doesAccountDataHaveIdentityServer(): boolean {
|
2019-10-31 19:58:31 +08:00
|
|
|
const event = MatrixClientPeg.get().getAccountData("m.identity_server");
|
|
|
|
return event && event.getContent() && event.getContent()['base_url'];
|
|
|
|
}
|