2019-12-10 19:53:51 +03:00
|
|
|
|
/*
|
2020-01-24 14:45:39 +03:00
|
|
|
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
2019-12-10 19:53:51 +03: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.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-01-28 20:14:48 +03:00
|
|
|
|
import React, {useCallback, useEffect, useState} from "react";
|
|
|
|
|
import PropTypes from "prop-types";
|
2020-01-24 19:16:46 +03:00
|
|
|
|
|
2019-12-16 20:16:22 +03:00
|
|
|
|
import EncryptionInfo from "./EncryptionInfo";
|
|
|
|
|
import VerificationPanel from "./VerificationPanel";
|
2020-01-17 17:50:27 +03:00
|
|
|
|
import {MatrixClientPeg} from "../../../MatrixClientPeg";
|
2019-12-19 19:43:10 +03:00
|
|
|
|
import {ensureDMExists} from "../../../createRoom";
|
2020-01-24 19:16:46 +03:00
|
|
|
|
import {useEventEmitter} from "../../../hooks/useEventEmitter";
|
2020-01-28 14:13:09 +03:00
|
|
|
|
import Modal from "../../../Modal";
|
2020-02-14 15:48:38 +03:00
|
|
|
|
import {PHASE_REQUESTED, PHASE_UNSENT} from "matrix-js-sdk/src/crypto/verification/request/VerificationRequest";
|
2020-01-28 14:13:09 +03:00
|
|
|
|
import * as sdk from "../../../index";
|
|
|
|
|
import {_t} from "../../../languageHandler";
|
2020-01-24 19:16:46 +03:00
|
|
|
|
|
2020-01-28 14:13:09 +03:00
|
|
|
|
// cancellation codes which constitute a key mismatch
|
|
|
|
|
const MISMATCHES = ["m.key_mismatch", "m.user_error", "m.mismatched_sas"];
|
|
|
|
|
|
2020-03-26 01:38:11 +03:00
|
|
|
|
const EncryptionPanel = (props) => {
|
2020-04-01 14:21:18 +03:00
|
|
|
|
const {verificationRequest, verificationRequestPromise, member, onClose, layout, isRoomEncrypted, inDialog} = props;
|
2020-01-24 19:16:46 +03:00
|
|
|
|
const [request, setRequest] = useState(verificationRequest);
|
2020-02-27 14:35:34 +03:00
|
|
|
|
// state to show a spinner immediately after clicking "start verification",
|
|
|
|
|
// before we have a request
|
|
|
|
|
const [isRequesting, setRequesting] = useState(false);
|
2020-02-24 15:39:20 +03:00
|
|
|
|
const [phase, setPhase] = useState(request && request.phase);
|
2020-01-24 19:16:46 +03:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
setRequest(verificationRequest);
|
2020-02-24 15:39:20 +03:00
|
|
|
|
if (verificationRequest) {
|
2020-02-26 20:30:20 +03:00
|
|
|
|
setRequesting(false);
|
2020-02-24 15:39:20 +03:00
|
|
|
|
setPhase(verificationRequest.phase);
|
|
|
|
|
}
|
2020-01-24 19:16:46 +03:00
|
|
|
|
}, [verificationRequest]);
|
2020-03-05 19:44:35 +03:00
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
async function awaitPromise() {
|
|
|
|
|
setRequesting(true);
|
|
|
|
|
const request = await verificationRequestPromise;
|
|
|
|
|
setRequesting(false);
|
|
|
|
|
setRequest(request);
|
|
|
|
|
setPhase(request.phase);
|
|
|
|
|
}
|
|
|
|
|
if (verificationRequestPromise) {
|
|
|
|
|
awaitPromise();
|
|
|
|
|
}
|
|
|
|
|
}, [verificationRequestPromise]);
|
2020-01-24 19:16:46 +03:00
|
|
|
|
const changeHandler = useCallback(() => {
|
2020-01-28 14:13:09 +03:00
|
|
|
|
// handle transitions -> cancelled for mismatches which fire a modal instead of showing a card
|
|
|
|
|
if (request && request.cancelled && MISMATCHES.includes(request.cancellationCode)) {
|
|
|
|
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
|
|
|
|
Modal.createTrackedDialog("Verification failed", "insecure", ErrorDialog, {
|
|
|
|
|
headerImage: require("../../../../res/img/e2e/warning.svg"),
|
|
|
|
|
title: _t("Your messages are not secure"),
|
|
|
|
|
description: <div>
|
|
|
|
|
{_t("One of the following may be compromised:")}
|
|
|
|
|
<ul>
|
|
|
|
|
<li>{_t("Your homeserver")}</li>
|
|
|
|
|
<li>{_t("The homeserver the user you’re verifying is connected to")}</li>
|
|
|
|
|
<li>{_t("Yours, or the other users’ internet connection")}</li>
|
2020-01-29 18:48:25 +03:00
|
|
|
|
<li>{_t("Yours, or the other users’ session")}</li>
|
2020-01-28 14:13:09 +03:00
|
|
|
|
</ul>
|
|
|
|
|
</div>,
|
|
|
|
|
onFinished: onClose,
|
|
|
|
|
});
|
|
|
|
|
return; // don't update phase here as we will be transitioning away from this view shortly
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (request) {
|
|
|
|
|
setPhase(request.phase);
|
|
|
|
|
}
|
|
|
|
|
}, [onClose, request]);
|
2020-01-24 19:16:46 +03:00
|
|
|
|
useEventEmitter(request, "change", changeHandler);
|
|
|
|
|
|
2020-03-26 18:51:24 +03:00
|
|
|
|
const onCancel = useCallback(function() {
|
|
|
|
|
if (request) {
|
|
|
|
|
request.cancel();
|
|
|
|
|
}
|
|
|
|
|
}, [request]);
|
|
|
|
|
|
|
|
|
|
let cancelButton;
|
2020-03-26 19:02:32 +03:00
|
|
|
|
if (layout !== "dialog" && request && request.pending) {
|
2020-03-26 18:51:24 +03:00
|
|
|
|
const AccessibleButton = sdk.getComponent("elements.AccessibleButton");
|
2020-03-26 18:54:31 +03:00
|
|
|
|
cancelButton = (<AccessibleButton
|
|
|
|
|
className="mx_EncryptionPanel_cancel"
|
|
|
|
|
onClick={onCancel}
|
|
|
|
|
title={_t('Cancel')}
|
|
|
|
|
></AccessibleButton>);
|
2020-03-26 18:51:24 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-24 19:16:46 +03:00
|
|
|
|
const onStartVerification = useCallback(async () => {
|
2020-02-26 20:30:20 +03:00
|
|
|
|
setRequesting(true);
|
2020-01-24 19:16:46 +03:00
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
const roomId = await ensureDMExists(cli, member.userId);
|
|
|
|
|
const verificationRequest = await cli.requestVerificationDM(member.userId, roomId);
|
|
|
|
|
setRequest(verificationRequest);
|
2020-02-13 16:33:35 +03:00
|
|
|
|
setPhase(verificationRequest.phase);
|
2020-01-24 19:16:46 +03:00
|
|
|
|
}, [member.userId]);
|
|
|
|
|
|
2020-02-26 20:30:20 +03:00
|
|
|
|
const requested =
|
|
|
|
|
(!request && isRequesting) ||
|
|
|
|
|
(request && (phase === PHASE_REQUESTED || phase === PHASE_UNSENT || phase === undefined));
|
2020-01-28 14:13:09 +03:00
|
|
|
|
if (!request || requested) {
|
2020-02-26 20:30:20 +03:00
|
|
|
|
const initiatedByMe = (!request && isRequesting) || (request && request.initiatedByMe);
|
2020-03-26 18:54:31 +03:00
|
|
|
|
return (<React.Fragment>
|
2020-03-26 18:51:24 +03:00
|
|
|
|
{cancelButton}
|
|
|
|
|
<EncryptionInfo
|
|
|
|
|
isRoomEncrypted={isRoomEncrypted}
|
|
|
|
|
onStartVerification={onStartVerification}
|
|
|
|
|
member={member}
|
|
|
|
|
waitingForOtherParty={requested && initiatedByMe}
|
|
|
|
|
waitingForNetwork={requested && !initiatedByMe} />
|
2020-03-26 18:54:31 +03:00
|
|
|
|
</React.Fragment>);
|
2020-01-24 19:16:46 +03:00
|
|
|
|
} else {
|
2020-03-26 18:54:31 +03:00
|
|
|
|
return (<React.Fragment>
|
2020-03-26 18:51:24 +03:00
|
|
|
|
{cancelButton}
|
2020-01-28 14:13:09 +03:00
|
|
|
|
<VerificationPanel
|
2020-03-26 01:38:11 +03:00
|
|
|
|
isRoomEncrypted={isRoomEncrypted}
|
2020-01-31 18:04:44 +03:00
|
|
|
|
layout={layout}
|
2020-01-28 14:13:09 +03:00
|
|
|
|
onClose={onClose}
|
|
|
|
|
member={member}
|
|
|
|
|
request={request}
|
|
|
|
|
key={request.channel.transactionId}
|
2020-04-01 14:21:18 +03:00
|
|
|
|
inDialog={inDialog}
|
2020-01-28 14:13:09 +03:00
|
|
|
|
phase={phase} />
|
2020-03-26 18:54:31 +03:00
|
|
|
|
</React.Fragment>);
|
2019-12-19 19:08:53 +03:00
|
|
|
|
}
|
2020-01-24 19:16:46 +03:00
|
|
|
|
};
|
|
|
|
|
EncryptionPanel.propTypes = {
|
2020-01-28 20:14:48 +03:00
|
|
|
|
member: PropTypes.object.isRequired,
|
|
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
|
verificationRequest: PropTypes.object,
|
2020-01-31 18:04:44 +03:00
|
|
|
|
layout: PropTypes.string,
|
2020-04-01 14:21:18 +03:00
|
|
|
|
inDialog: PropTypes.bool,
|
2020-01-24 19:16:46 +03:00
|
|
|
|
};
|
2019-12-16 20:16:22 +03:00
|
|
|
|
|
2020-01-24 19:16:46 +03:00
|
|
|
|
export default EncryptionPanel;
|