343 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			343 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			TypeScript
		
	
	
| /*
 | |
| Copyright 2016 OpenMarket Ltd
 | |
| Copyright 2017 Vector Creations Ltd
 | |
| 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 { MatrixClientPeg } from './MatrixClientPeg';
 | |
| import Modal from './Modal';
 | |
| import { _t } from './languageHandler';
 | |
| import IdentityAuthClient from './IdentityAuthClient';
 | |
| import { SSOAuthEntry } from "./components/views/auth/InteractiveAuthEntryComponents";
 | |
| import { IRequestMsisdnTokenResponse, IRequestTokenResponse } from "matrix-js-sdk/src";
 | |
| import InteractiveAuthDialog from "./components/views/dialogs/InteractiveAuthDialog";
 | |
| 
 | |
| function getIdServerDomain(): string {
 | |
|     return MatrixClientPeg.get().idBaseUrl.split("://")[1];
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * Allows a user to add a third party identifier to their homeserver and,
 | |
|  * optionally, the identity servers.
 | |
|  *
 | |
|  * This involves getting an email token from the identity server to "prove" that
 | |
|  * the client owns the given email address, which is then passed to the
 | |
|  * add threepid API on the homeserver.
 | |
|  *
 | |
|  * Diagrams of the intended API flows here are available at:
 | |
|  *
 | |
|  * https://gist.github.com/jryans/839a09bf0c5a70e2f36ed990d50ed928
 | |
|  */
 | |
| export default class AddThreepid {
 | |
|     private sessionId: string;
 | |
|     private submitUrl: string;
 | |
|     private clientSecret: string;
 | |
|     private bind: boolean;
 | |
| 
 | |
|     constructor() {
 | |
|         this.clientSecret = MatrixClientPeg.get().generateClientSecret();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Attempt to add an email threepid to the homeserver.
 | |
|      * This will trigger a side-effect of sending an email to the provided email address.
 | |
|      * @param {string} emailAddress The email address to add
 | |
|      * @return {Promise} Resolves when the email has been sent. Then call checkEmailLinkClicked().
 | |
|      */
 | |
|     public addEmailAddress(emailAddress: string): Promise<IRequestTokenResponse> {
 | |
|         return MatrixClientPeg.get().requestAdd3pidEmailToken(emailAddress, this.clientSecret, 1).then((res) => {
 | |
|             this.sessionId = res.sid;
 | |
|             return res;
 | |
|         }, function(err) {
 | |
|             if (err.errcode === 'M_THREEPID_IN_USE') {
 | |
|                 err.message = _t('This email address is already in use');
 | |
|             } else if (err.httpStatus) {
 | |
|                 err.message = err.message + ` (Status ${err.httpStatus})`;
 | |
|             }
 | |
|             throw err;
 | |
|         });
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Attempt to bind an email threepid on the identity server via the homeserver.
 | |
|      * This will trigger a side-effect of sending an email to the provided email address.
 | |
|      * @param {string} emailAddress The email address to add
 | |
|      * @return {Promise} Resolves when the email has been sent. Then call checkEmailLinkClicked().
 | |
|      */
 | |
|     public async bindEmailAddress(emailAddress: string): Promise<IRequestTokenResponse> {
 | |
|         this.bind = true;
 | |
|         if (await MatrixClientPeg.get().doesServerSupportSeparateAddAndBind()) {
 | |
|             // For separate bind, request a token directly from the IS.
 | |
|             const authClient = new IdentityAuthClient();
 | |
|             const identityAccessToken = await authClient.getAccessToken();
 | |
|             return MatrixClientPeg.get().requestEmailToken(
 | |
|                 emailAddress, this.clientSecret, 1,
 | |
|                 undefined, undefined, identityAccessToken,
 | |
|             ).then((res) => {
 | |
|                 this.sessionId = res.sid;
 | |
|                 return res;
 | |
|             }, function(err) {
 | |
|                 if (err.errcode === 'M_THREEPID_IN_USE') {
 | |
|                     err.message = _t('This email address is already in use');
 | |
|                 } else if (err.httpStatus) {
 | |
|                     err.message = err.message + ` (Status ${err.httpStatus})`;
 | |
|                 }
 | |
|                 throw err;
 | |
|             });
 | |
|         } else {
 | |
|             // For tangled bind, request a token via the HS.
 | |
|             return this.addEmailAddress(emailAddress);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Attempt to add a MSISDN threepid to the homeserver.
 | |
|      * This will trigger a side-effect of sending an SMS to the provided phone number.
 | |
|      * @param {string} phoneCountry The ISO 2 letter code of the country to resolve phoneNumber in
 | |
|      * @param {string} phoneNumber The national or international formatted phone number to add
 | |
|      * @return {Promise} Resolves when the text message has been sent. Then call haveMsisdnToken().
 | |
|      */
 | |
|     public addMsisdn(phoneCountry: string, phoneNumber: string): Promise<IRequestMsisdnTokenResponse> {
 | |
|         return MatrixClientPeg.get().requestAdd3pidMsisdnToken(
 | |
|             phoneCountry, phoneNumber, this.clientSecret, 1,
 | |
|         ).then((res) => {
 | |
|             this.sessionId = res.sid;
 | |
|             this.submitUrl = res.submit_url;
 | |
|             return res;
 | |
|         }, function(err) {
 | |
|             if (err.errcode === 'M_THREEPID_IN_USE') {
 | |
|                 err.message = _t('This phone number is already in use');
 | |
|             } else if (err.httpStatus) {
 | |
|                 err.message = err.message + ` (Status ${err.httpStatus})`;
 | |
|             }
 | |
|             throw err;
 | |
|         });
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Attempt to bind a MSISDN threepid on the identity server via the homeserver.
 | |
|      * This will trigger a side-effect of sending an SMS to the provided phone number.
 | |
|      * @param {string} phoneCountry The ISO 2 letter code of the country to resolve phoneNumber in
 | |
|      * @param {string} phoneNumber The national or international formatted phone number to add
 | |
|      * @return {Promise} Resolves when the text message has been sent. Then call haveMsisdnToken().
 | |
|      */
 | |
|     public async bindMsisdn(phoneCountry: string, phoneNumber: string): Promise<IRequestMsisdnTokenResponse> {
 | |
|         this.bind = true;
 | |
|         if (await MatrixClientPeg.get().doesServerSupportSeparateAddAndBind()) {
 | |
|             // For separate bind, request a token directly from the IS.
 | |
|             const authClient = new IdentityAuthClient();
 | |
|             const identityAccessToken = await authClient.getAccessToken();
 | |
|             return MatrixClientPeg.get().requestMsisdnToken(
 | |
|                 phoneCountry, phoneNumber, this.clientSecret, 1,
 | |
|                 undefined, undefined, identityAccessToken,
 | |
|             ).then((res) => {
 | |
|                 this.sessionId = res.sid;
 | |
|                 return res;
 | |
|             }, function(err) {
 | |
|                 if (err.errcode === 'M_THREEPID_IN_USE') {
 | |
|                     err.message = _t('This phone number is already in use');
 | |
|                 } else if (err.httpStatus) {
 | |
|                     err.message = err.message + ` (Status ${err.httpStatus})`;
 | |
|                 }
 | |
|                 throw err;
 | |
|             });
 | |
|         } else {
 | |
|             // For tangled bind, request a token via the HS.
 | |
|             return this.addMsisdn(phoneCountry, phoneNumber);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Checks if the email link has been clicked by attempting to add the threepid
 | |
|      * @return {Promise} Resolves if the email address was added. Rejects with an object
 | |
|      * with a "message" property which contains a human-readable message detailing why
 | |
|      * the request failed.
 | |
|      */
 | |
|     public async checkEmailLinkClicked(): Promise<any[]> {
 | |
|         try {
 | |
|             if (await MatrixClientPeg.get().doesServerSupportSeparateAddAndBind()) {
 | |
|                 if (this.bind) {
 | |
|                     const authClient = new IdentityAuthClient();
 | |
|                     const identityAccessToken = await authClient.getAccessToken();
 | |
|                     await MatrixClientPeg.get().bindThreePid({
 | |
|                         sid: this.sessionId,
 | |
|                         client_secret: this.clientSecret,
 | |
|                         id_server: getIdServerDomain(),
 | |
|                         id_access_token: identityAccessToken,
 | |
|                     });
 | |
|                 } else {
 | |
|                     try {
 | |
|                         await this.makeAddThreepidOnlyRequest();
 | |
| 
 | |
|                         // The spec has always required this to use UI auth but synapse briefly
 | |
|                         // implemented it without, so this may just succeed and that's OK.
 | |
|                         return;
 | |
|                     } catch (e) {
 | |
|                         if (e.httpStatus !== 401 || !e.data || !e.data.flows) {
 | |
|                             // doesn't look like an interactive-auth failure
 | |
|                             throw e;
 | |
|                         }
 | |
| 
 | |
|                         const dialogAesthetics = {
 | |
|                             [SSOAuthEntry.PHASE_PREAUTH]: {
 | |
|                                 title: _t("Use Single Sign On to continue"),
 | |
|                                 body: _t("Confirm adding this email address by using " +
 | |
|                                     "Single Sign On to prove your identity."),
 | |
|                                 continueText: _t("Single Sign On"),
 | |
|                                 continueKind: "primary",
 | |
|                             },
 | |
|                             [SSOAuthEntry.PHASE_POSTAUTH]: {
 | |
|                                 title: _t("Confirm adding email"),
 | |
|                                 body: _t("Click the button below to confirm adding this email address."),
 | |
|                                 continueText: _t("Confirm"),
 | |
|                                 continueKind: "primary",
 | |
|                             },
 | |
|                         };
 | |
|                         const { finished } = Modal.createTrackedDialog('Add Email', '', InteractiveAuthDialog, {
 | |
|                             title: _t("Add Email Address"),
 | |
|                             matrixClient: MatrixClientPeg.get(),
 | |
|                             authData: e.data,
 | |
|                             makeRequest: this.makeAddThreepidOnlyRequest,
 | |
|                             aestheticsForStagePhases: {
 | |
|                                 [SSOAuthEntry.LOGIN_TYPE]: dialogAesthetics,
 | |
|                                 [SSOAuthEntry.UNSTABLE_LOGIN_TYPE]: dialogAesthetics,
 | |
|                             },
 | |
|                         });
 | |
|                         return finished;
 | |
|                     }
 | |
|                 }
 | |
|             } else {
 | |
|                 await MatrixClientPeg.get().addThreePid({
 | |
|                     sid: this.sessionId,
 | |
|                     client_secret: this.clientSecret,
 | |
|                     id_server: getIdServerDomain(),
 | |
|                 }, this.bind);
 | |
|             }
 | |
|         } catch (err) {
 | |
|             if (err.httpStatus === 401) {
 | |
|                 err.message = _t('Failed to verify email address: make sure you clicked the link in the email');
 | |
|             } else if (err.httpStatus) {
 | |
|                 err.message += ` (Status ${err.httpStatus})`;
 | |
|             }
 | |
|             throw err;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param {{type: string, session?: string}} auth UI auth object
 | |
|      * @return {Promise<Object>} Response from /3pid/add call (in current spec, an empty object)
 | |
|      */
 | |
|     private makeAddThreepidOnlyRequest = (auth?: {type: string, session?: string}): Promise<{}> => {
 | |
|         return MatrixClientPeg.get().addThreePidOnly({
 | |
|             sid: this.sessionId,
 | |
|             client_secret: this.clientSecret,
 | |
|             auth,
 | |
|         });
 | |
|     };
 | |
| 
 | |
|     /**
 | |
|      * Takes a phone number verification code as entered by the user and validates
 | |
|      * it with the identity server, then if successful, adds the phone number.
 | |
|      * @param {string} msisdnToken phone number verification code as entered by the user
 | |
|      * @return {Promise} Resolves if the phone number was added. Rejects with an object
 | |
|      * with a "message" property which contains a human-readable message detailing why
 | |
|      * the request failed.
 | |
|      */
 | |
|     public async haveMsisdnToken(msisdnToken: string): Promise<any[]> {
 | |
|         const authClient = new IdentityAuthClient();
 | |
|         const supportsSeparateAddAndBind =
 | |
|             await MatrixClientPeg.get().doesServerSupportSeparateAddAndBind();
 | |
| 
 | |
|         let result;
 | |
|         if (this.submitUrl) {
 | |
|             result = await MatrixClientPeg.get().submitMsisdnTokenOtherUrl(
 | |
|                 this.submitUrl,
 | |
|                 this.sessionId,
 | |
|                 this.clientSecret,
 | |
|                 msisdnToken,
 | |
|             );
 | |
|         } else if (this.bind || !supportsSeparateAddAndBind) {
 | |
|             result = await MatrixClientPeg.get().submitMsisdnToken(
 | |
|                 this.sessionId,
 | |
|                 this.clientSecret,
 | |
|                 msisdnToken,
 | |
|                 await authClient.getAccessToken(),
 | |
|             );
 | |
|         } else {
 | |
|             throw new Error("The add / bind with MSISDN flow is misconfigured");
 | |
|         }
 | |
|         if (result.errcode) {
 | |
|             throw result;
 | |
|         }
 | |
| 
 | |
|         if (supportsSeparateAddAndBind) {
 | |
|             if (this.bind) {
 | |
|                 await MatrixClientPeg.get().bindThreePid({
 | |
|                     sid: this.sessionId,
 | |
|                     client_secret: this.clientSecret,
 | |
|                     id_server: getIdServerDomain(),
 | |
|                     id_access_token: await authClient.getAccessToken(),
 | |
|                 });
 | |
|             } else {
 | |
|                 try {
 | |
|                     await this.makeAddThreepidOnlyRequest();
 | |
| 
 | |
|                     // The spec has always required this to use UI auth but synapse briefly
 | |
|                     // implemented it without, so this may just succeed and that's OK.
 | |
|                     return;
 | |
|                 } catch (e) {
 | |
|                     if (e.httpStatus !== 401 || !e.data || !e.data.flows) {
 | |
|                         // doesn't look like an interactive-auth failure
 | |
|                         throw e;
 | |
|                     }
 | |
| 
 | |
|                     const dialogAesthetics = {
 | |
|                         [SSOAuthEntry.PHASE_PREAUTH]: {
 | |
|                             title: _t("Use Single Sign On to continue"),
 | |
|                             body: _t("Confirm adding this phone number by using " +
 | |
|                                 "Single Sign On to prove your identity."),
 | |
|                             continueText: _t("Single Sign On"),
 | |
|                             continueKind: "primary",
 | |
|                         },
 | |
|                         [SSOAuthEntry.PHASE_POSTAUTH]: {
 | |
|                             title: _t("Confirm adding phone number"),
 | |
|                             body: _t("Click the button below to confirm adding this phone number."),
 | |
|                             continueText: _t("Confirm"),
 | |
|                             continueKind: "primary",
 | |
|                         },
 | |
|                     };
 | |
|                     const { finished } = Modal.createTrackedDialog('Add MSISDN', '', InteractiveAuthDialog, {
 | |
|                         title: _t("Add Phone Number"),
 | |
|                         matrixClient: MatrixClientPeg.get(),
 | |
|                         authData: e.data,
 | |
|                         makeRequest: this.makeAddThreepidOnlyRequest,
 | |
|                         aestheticsForStagePhases: {
 | |
|                             [SSOAuthEntry.LOGIN_TYPE]: dialogAesthetics,
 | |
|                             [SSOAuthEntry.UNSTABLE_LOGIN_TYPE]: dialogAesthetics,
 | |
|                         },
 | |
|                     });
 | |
|                     return finished;
 | |
|                 }
 | |
|             }
 | |
|         } else {
 | |
|             await MatrixClientPeg.get().addThreePid({
 | |
|                 sid: this.sessionId,
 | |
|                 client_secret: this.clientSecret,
 | |
|                 id_server: getIdServerDomain(),
 | |
|             }, this.bind);
 | |
|         }
 | |
|     }
 | |
| }
 |