/* Copyright 2019, 2020 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 {MatrixClientPeg} from "../../../MatrixClientPeg"; import * as sdk from '../../../index'; import {verificationMethods} from 'matrix-js-sdk/src/crypto'; import {SCAN_QR_CODE_METHOD} from "matrix-js-sdk/src/crypto/verification/QRCode"; import {VerificationRequest} from "matrix-js-sdk/src/crypto/verification/request/VerificationRequest"; import {RoomMember} from "matrix-js-sdk/src/models/room-member"; import {ReciprocateQRCode} from "matrix-js-sdk/src/crypto/verification/QRCode"; import {SAS} from "matrix-js-sdk/src/crypto/verification/SAS"; import VerificationQRCode from "../elements/crypto/VerificationQRCode"; import {_t} from "../../../languageHandler"; import SdkConfig from "../../../SdkConfig"; import E2EIcon from "../rooms/E2EIcon"; import { PHASE_UNSENT, PHASE_REQUESTED, PHASE_READY, PHASE_DONE, PHASE_STARTED, PHASE_CANCELLED, } from "matrix-js-sdk/src/crypto/verification/request/VerificationRequest"; import Spinner from "../elements/Spinner"; // XXX: Should be defined in matrix-js-sdk enum VerificationPhase { PHASE_UNSENT, PHASE_REQUESTED, PHASE_READY, PHASE_DONE, PHASE_STARTED, PHASE_CANCELLED, } interface IProps { layout: string; request: VerificationRequest; member: RoomMember; phase: VerificationPhase; onClose: () => void; isRoomEncrypted: boolean; inDialog: boolean; key: any; } interface IState { sasEvent?: SAS; emojiButtonClicked?: boolean; reciprocateButtonClicked?: boolean; reciprocateQREvent?: ReciprocateQRCode; } export default class VerificationPanel extends React.PureComponent { private hasVerifier: boolean; constructor(props: IProps) { super(props); this.state = {}; this.hasVerifier = false; } renderQRPhase() { const {member, request} = this.props; const showSAS: boolean = request.otherPartySupportsMethod(verificationMethods.SAS); const showQR: boolean = request.otherPartySupportsMethod(SCAN_QR_CODE_METHOD); const AccessibleButton = sdk.getComponent('elements.AccessibleButton'); const brand = SdkConfig.get().brand; const noCommonMethodError: JSX.Element = !showSAS && !showQR ?

{_t( "The session you are trying to verify doesn't support scanning a " + "QR code or emoji verification, which is what %(brand)s supports. Try " + "with a different client.", { brand }, )}

: null; if (this.props.layout === 'dialog') { // HACK: This is a terrible idea. let qrBlockDialog: JSX.Element; let sasBlockDialog: JSX.Element; if (showQR) { qrBlockDialog =

{_t("Scan this unique code")}

; } if (showSAS) { sasBlockDialog =

{_t("Compare unique emoji")}

{_t("Compare a unique set of emoji if you don't have a camera on either device")} {_t("Start")}
; } const or = qrBlockDialog && sasBlockDialog ?
{_t("or")}
: null; return (
{_t("Verify this session by completing one of the following:")}
{qrBlockDialog} {or} {sasBlockDialog} {noCommonMethodError}
); } let qrBlock: JSX.Element; if (showQR) { qrBlock =

{_t("Verify by scanning")}

{_t("Ask %(displayName)s to scan your code:", { displayName: member.displayName || member.name || member.userId, })}

; } let sasBlock: JSX.Element; if (showSAS) { const disabled = this.state.emojiButtonClicked; const sasLabel = showQR ? _t("If you can't scan the code above, verify by comparing unique emoji.") : _t("Verify by comparing unique emoji."); // Note: mx_VerificationPanel_verifyByEmojiButton is for the end-to-end tests sasBlock =

{_t("Verify by emoji")}

{sasLabel}

{_t("Verify by emoji")}
; } const noCommonMethodBlock = noCommonMethodError ?
{noCommonMethodError}
: null; // TODO: add way to open camera to scan a QR code return {qrBlock} {sasBlock} {noCommonMethodBlock} ; } private onReciprocateYesClick = () => { this.setState({reciprocateButtonClicked: true}); this.state.reciprocateQREvent.confirm(); }; private onReciprocateNoClick = () => { this.setState({reciprocateButtonClicked: true}); this.state.reciprocateQREvent.cancel(); }; private getDevice() { const deviceId = this.props.request && this.props.request.channel.deviceId; return MatrixClientPeg.get().getStoredDevice(MatrixClientPeg.get().getUserId(), deviceId); } renderQRReciprocatePhase() { const {member, request} = this.props; let Button; // a bit of a hack, but the FormButton should only be used in the right panel // they should probably just be the same component with a css class applied to it? if (this.props.inDialog) { Button = sdk.getComponent("elements.AccessibleButton"); } else { Button = sdk.getComponent("elements.FormButton"); } const description = request.isSelfVerification ? _t("Almost there! Is your other session showing the same shield?") : _t("Almost there! Is %(displayName)s showing the same shield?", { displayName: member.displayName || member.name || member.userId, }); let body: JSX.Element; if (this.state.reciprocateQREvent) { // riot web doesn't support scanning yet, so assume here we're the client being scanned. // // we're passing both a label and a child string to Button as // FormButton and AccessibleButton expect this differently body =

{description}

; } else { body =

; } return

{_t("Verify by scanning")}

{ body }
; } renderVerifiedPhase() { const {member, request} = this.props; let text: string; if (!request.isSelfVerification) { if (this.props.isRoomEncrypted) { text = _t("Verify all users in a room to ensure it's secure."); } else { text = _t("In encrypted rooms, verify all users to ensure it’s secure."); } } let description: string; if (request.isSelfVerification) { const device = this.getDevice(); if (!device) { // This can happen if the device is logged out while we're still showing verification // UI for it. console.warn("Verified device we don't know about: " + this.props.request.channel.deviceId); description = _t("You've successfully verified your device!"); } else { description = _t("You've successfully verified %(deviceName)s (%(deviceId)s)!", { deviceName: device ? device.getDisplayName() : '', deviceId: this.props.request.channel.deviceId, }); } } else { description = _t("You've successfully verified %(displayName)s!", { displayName: member.displayName || member.name || member.userId, }); } const AccessibleButton = sdk.getComponent('elements.AccessibleButton'); return (

{_t("Verified")}

{description}

{ text ?

{ text }

: null } {_t("Got it")}
); } renderCancelledPhase() { const {member, request} = this.props; const AccessibleButton = sdk.getComponent('elements.AccessibleButton'); let startAgainInstruction: string; if (request.isSelfVerification) { startAgainInstruction = _t("Start verification again from the notification."); } else { startAgainInstruction = _t("Start verification again from their profile."); } let text: string; if (request.cancellationCode === "m.timeout") { text = _t("Verification timed out.") + ` ${startAgainInstruction}`; } else if (request.cancellingUserId === request.otherUserId) { if (request.isSelfVerification) { text = _t("You cancelled verification on your other session."); } else { text = _t("%(displayName)s cancelled verification.", { displayName: member.displayName || member.name || member.userId, }); } text = `${text} ${startAgainInstruction}`; } else { text = _t("You cancelled verification.") + ` ${startAgainInstruction}`; } return (

{_t("Verification cancelled")}

{ text }

{_t("Got it")}
); } render() { const {member, phase, request} = this.props; const displayName = member.displayName || member.name || member.userId; switch (phase) { case PHASE_READY: return this.renderQRPhase(); case PHASE_STARTED: switch (request.chosenMethod) { case verificationMethods.RECIPROCATE_QR_CODE: return this.renderQRReciprocatePhase(); case verificationMethods.SAS: { const VerificationShowSas = sdk.getComponent('views.verification.VerificationShowSas'); const emojis = this.state.sasEvent ? : ; return

{_t("Compare emoji")}

{ emojis }
; } default: return null; } case PHASE_DONE: return this.renderVerifiedPhase(); case PHASE_CANCELLED: return this.renderCancelledPhase(); } console.error("VerificationPanel unhandled phase:", phase); return null; } private startSAS = async () => { this.setState({emojiButtonClicked: true}); const verifier = this.props.request.beginKeyVerification(verificationMethods.SAS); try { await verifier.verify(); } catch (err) { console.error(err); } }; private onSasMatchesClick = () => { this.state.sasEvent.confirm(); }; private onSasMismatchesClick = () => { this.state.sasEvent.mismatch(); }; private updateVerifierState = () => { const {request} = this.props; const {sasEvent, reciprocateQREvent} = request.verifier; request.verifier.off('show_sas', this.updateVerifierState); request.verifier.off('show_reciprocate_qr', this.updateVerifierState); this.setState({sasEvent, reciprocateQREvent}); }; private onRequestChange = async () => { const {request} = this.props; const hadVerifier = this.hasVerifier; this.hasVerifier = !!request.verifier; if (!hadVerifier && this.hasVerifier) { request.verifier.on('show_sas', this.updateVerifierState); request.verifier.on('show_reciprocate_qr', this.updateVerifierState); try { // on the requester side, this is also awaited in startSAS, // but that's ok as verify should return the same promise. await request.verifier.verify(); } catch (err) { console.error("error verify", err); } } }; componentDidMount() { const {request} = this.props; request.on("change", this.onRequestChange); if (request.verifier) { const {sasEvent, reciprocateQREvent} = request.verifier; this.setState({sasEvent, reciprocateQREvent}); } this.onRequestChange(); } componentWillUnmount() { const {request} = this.props; if (request.verifier) { request.verifier.off('show_sas', this.updateVerifierState); request.verifier.off('show_reciprocate_qr', this.updateVerifierState); } request.off("change", this.onRequestChange); } }