2018-12-13 18:55:48 +03:00
|
|
|
/*
|
2019-01-11 16:15:09 +03:00
|
|
|
Copyright 2018-2019 New Vector Ltd
|
2018-12-13 18:55:48 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
import PropTypes from "prop-types";
|
|
|
|
import sdk from "../../../../index";
|
|
|
|
import MatrixClientPeg from '../../../../MatrixClientPeg';
|
|
|
|
import dis from "../../../../dispatcher";
|
|
|
|
import { _t } from "../../../../languageHandler";
|
|
|
|
import Modal from "../../../../Modal";
|
|
|
|
|
|
|
|
export default class NewRecoveryMethodDialog extends React.PureComponent {
|
|
|
|
static propTypes = {
|
2019-01-11 16:15:09 +03:00
|
|
|
// As returned by js-sdk getKeyBackupVersion()
|
|
|
|
newVersionInfo: PropTypes.object.isRequired,
|
2018-12-13 18:55:48 +03:00
|
|
|
onFinished: PropTypes.func.isRequired,
|
|
|
|
}
|
|
|
|
|
2019-01-11 16:15:09 +03:00
|
|
|
onOkClick = () => {
|
|
|
|
this.props.onFinished();
|
|
|
|
}
|
|
|
|
|
2018-12-13 18:55:48 +03:00
|
|
|
onGoToSettingsClick = () => {
|
|
|
|
this.props.onFinished();
|
|
|
|
dis.dispatch({ action: 'view_user_settings' });
|
|
|
|
}
|
|
|
|
|
2019-01-09 21:10:35 +03:00
|
|
|
onSetupClick = async () => {
|
2018-12-13 18:55:48 +03:00
|
|
|
// TODO: Should change to a restore key backup flow that checks the
|
|
|
|
// recovery passphrase while at the same time also cross-signing the
|
|
|
|
// device as well in a single flow. Since we don't have that yet, we'll
|
|
|
|
// look for an unverified device and verify it. Note that this means
|
|
|
|
// we won't restore keys yet; instead we'll only trust the backup for
|
|
|
|
// sending our own new keys to it.
|
|
|
|
let backupSigStatus;
|
|
|
|
try {
|
2019-01-11 16:15:09 +03:00
|
|
|
backupSigStatus = await MatrixClientPeg.get().isKeyBackupTrusted(this.props.newVersionInfo);
|
2018-12-13 18:55:48 +03:00
|
|
|
} catch (e) {
|
|
|
|
console.log("Unable to fetch key backup status", e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let unverifiedDevice;
|
|
|
|
for (const sig of backupSigStatus.sigs) {
|
|
|
|
if (!sig.device.isVerified()) {
|
|
|
|
unverifiedDevice = sig.device;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!unverifiedDevice) {
|
|
|
|
console.log("Unable to find a device to verify.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const DeviceVerifyDialog = sdk.getComponent('views.dialogs.DeviceVerifyDialog');
|
|
|
|
Modal.createTrackedDialog('Device Verify Dialog', '', DeviceVerifyDialog, {
|
|
|
|
userId: MatrixClientPeg.get().credentials.userId,
|
|
|
|
device: unverifiedDevice,
|
|
|
|
onFinished: this.props.onFinished,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const BaseDialog = sdk.getComponent("views.dialogs.BaseDialog");
|
|
|
|
const DialogButtons = sdk.getComponent("views.elements.DialogButtons");
|
2019-01-11 00:13:44 +03:00
|
|
|
|
|
|
|
const title = <span className="mx_KeyBackupFailedDialog_title">
|
2018-12-13 18:55:48 +03:00
|
|
|
{_t("New Recovery Method")}
|
|
|
|
</span>;
|
|
|
|
|
2019-01-11 16:15:09 +03:00
|
|
|
const newMethodDetected = <p>{_t(
|
|
|
|
"A new recovery passphrase and key for Secure " +
|
|
|
|
"Messages have been detected.",
|
|
|
|
)}</p>;
|
|
|
|
|
|
|
|
const hackWarning = <p className="warning">{_t(
|
|
|
|
"If you didn't set the new recovery method, an " +
|
|
|
|
"attacker may be trying to access your account. " +
|
|
|
|
"Change your account password and set a new recovery " +
|
|
|
|
"method immediately in Settings.",
|
|
|
|
)}</p>;
|
|
|
|
|
|
|
|
let content;
|
|
|
|
if (MatrixClientPeg.get().getKeyBackupEnabled()) {
|
|
|
|
content = <div>
|
|
|
|
{newMethodDetected}
|
|
|
|
<p>{_t(
|
2019-01-11 16:42:40 +03:00
|
|
|
"This device is encrypting history using the new recovery method.",
|
2019-01-11 16:15:09 +03:00
|
|
|
)}</p>
|
|
|
|
{hackWarning}
|
|
|
|
<DialogButtons
|
|
|
|
primaryButton={_t("OK")}
|
|
|
|
onPrimaryButtonClick={this.onOkClick}
|
|
|
|
cancelButton={_t("Go to Settings")}
|
|
|
|
onCancel={this.onGoToSettingsClick}
|
|
|
|
/>
|
|
|
|
</div>;
|
|
|
|
} else {
|
|
|
|
content = <div>
|
|
|
|
{newMethodDetected}
|
|
|
|
<p>{_t(
|
|
|
|
"Setting up Secure Messages on this device " +
|
|
|
|
"will re-encrypt this device's message history with " +
|
|
|
|
"the new recovery method.",
|
|
|
|
)}</p>
|
|
|
|
{hackWarning}
|
|
|
|
<DialogButtons
|
|
|
|
primaryButton={_t("Set up Secure Messages")}
|
|
|
|
onPrimaryButtonClick={this.onSetupClick}
|
|
|
|
cancelButton={_t("Go to Settings")}
|
|
|
|
onCancel={this.onGoToSettingsClick}
|
|
|
|
/>
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
|
2018-12-13 18:55:48 +03:00
|
|
|
return (
|
2019-01-11 00:13:44 +03:00
|
|
|
<BaseDialog className="mx_KeyBackupFailedDialog"
|
2018-12-13 18:55:48 +03:00
|
|
|
onFinished={this.props.onFinished}
|
|
|
|
title={title}
|
|
|
|
>
|
2019-01-11 16:15:09 +03:00
|
|
|
{content}
|
2018-12-13 18:55:48 +03:00
|
|
|
</BaseDialog>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|