/* Copyright 2019 The Matrix.org Foundation C.I.C. 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. */ import React from "react"; import { SERVICE_TYPES } from 'matrix-js-sdk/src/service-types'; import { createClient, MatrixClient } from 'matrix-js-sdk/src/matrix'; import { logger } from "matrix-js-sdk/src/logger"; import { MatrixClientPeg } from './MatrixClientPeg'; import Modal from './Modal'; import { _t } from './languageHandler'; import { Service, startTermsFlow, TermsNotSignedError } from './Terms'; import { doesAccountDataHaveIdentityServer, doesIdentityServerHaveTerms, setToDefaultIdentityServer, } from './utils/IdentityServerUtils'; import QuestionDialog from "./components/views/dialogs/QuestionDialog"; import { abbreviateUrl } from "./utils/UrlUtils"; export class AbortedIdentityActionError extends Error {} export default class IdentityAuthClient { private accessToken: string; private tempClient: MatrixClient; private authEnabled = true; /** * Creates a new identity auth client * @param {string} identityUrl The URL to contact the identity server with. * When provided, this class will operate solely within memory, refusing to * persist any information such as tokens. Default null (not provided). */ constructor(identityUrl?: string) { if (identityUrl) { // XXX: We shouldn't have to create a whole new MatrixClient just to // do identity server auth. The functions don't take an identity URL // though, and making all of them take one could lead to developer // confusion about what the idBaseUrl does on a client. Therefore, we // just make a new client and live with it. this.tempClient = createClient({ baseUrl: "", // invalid by design idBaseUrl: identityUrl, }); } } private get matrixClient(): MatrixClient { return this.tempClient ? this.tempClient : MatrixClientPeg.get(); } private writeToken(): void { if (this.tempClient) return; // temporary client: ignore window.localStorage.setItem("mx_is_access_token", this.accessToken); } private readToken(): string { if (this.tempClient) return null; // temporary client: ignore return window.localStorage.getItem("mx_is_access_token"); } public hasCredentials(): boolean { return Boolean(this.accessToken); } // Returns a promise that resolves to the access_token string from the IS public async getAccessToken({ check = true } = {}): Promise { if (!this.authEnabled) { // The current IS doesn't support authentication return null; } let token = this.accessToken; if (!token) { token = this.readToken(); } if (!token) { token = await this.registerForToken(check); if (token) { this.accessToken = token; this.writeToken(); } return token; } if (check) { try { await this.checkToken(token); } catch (e) { if ( e instanceof TermsNotSignedError || e instanceof AbortedIdentityActionError ) { // Retrying won't help this throw e; } // Retry in case token expired token = await this.registerForToken(); if (token) { this.accessToken = token; this.writeToken(); } } } return token; } private async checkToken(token: string): Promise { const identityServerUrl = this.matrixClient.getIdentityServerUrl(); try { await this.matrixClient.getIdentityAccount(token); } catch (e) { if (e.errcode === "M_TERMS_NOT_SIGNED") { logger.log("Identity server requires new terms to be agreed to"); await startTermsFlow([new Service( SERVICE_TYPES.IS, identityServerUrl, token, )]); return; } throw e; } if ( !this.tempClient && !doesAccountDataHaveIdentityServer() && !(await doesIdentityServerHaveTerms(identityServerUrl)) ) { const { finished } = Modal.createDialog(QuestionDialog, { title: _t("Identity server has no terms of service"), description: (

{ _t( "This action requires accessing the default identity server " + " to validate an email address or phone number, " + "but the server does not have any terms of service.", {}, { server: () => { abbreviateUrl(identityServerUrl) }, }, ) }

{ _t( "Only continue if you trust the owner of the server.", ) }

), button: _t("Trust"), }); const [confirmed] = await finished; if (confirmed) { setToDefaultIdentityServer(); } else { throw new AbortedIdentityActionError( "User aborted identity server action without terms", ); } } // We should ensure the token in `localStorage` is cleared // appropriately. We already clear storage on sign out, but we'll need // additional clearing when changing ISes in settings as part of future // privacy work. // See also https://github.com/vector-im/element-web/issues/10455. } public async registerForToken(check = true): Promise { const hsOpenIdToken = await MatrixClientPeg.get().getOpenIdToken(); // XXX: The spec is `token`, but we used `access_token` for a Sydent release. const { access_token: accessToken, token } = await this.matrixClient.registerWithIdentityServer(hsOpenIdToken); const identityAccessToken = token ? token : accessToken; if (check) await this.checkToken(identityAccessToken); return identityAccessToken; } }