Merge pull request #2614 from matrix-org/dbkr/restore_on_new_backup_warning

Restore backup on new recovery method dialog
This commit is contained in:
David Baker 2019-02-12 10:47:17 +00:00 committed by GitHub
commit b7fe1f9509
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,36 +39,8 @@ export default class NewRecoveryMethodDialog extends React.PureComponent {
} }
onSetupClick = async () => { onSetupClick = async () => {
// TODO: Should change to a restore key backup flow that checks the const RestoreKeyBackupDialog = sdk.getComponent('dialogs.keybackup.RestoreKeyBackupDialog');
// recovery passphrase while at the same time also cross-signing the Modal.createTrackedDialog('Restore Backup', '', RestoreKeyBackupDialog, {
// 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 {
backupSigStatus = await MatrixClientPeg.get().isKeyBackupTrusted(this.props.newVersionInfo);
} 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, onFinished: this.props.onFinished,
}); });
} }
@ -111,11 +83,6 @@ export default class NewRecoveryMethodDialog extends React.PureComponent {
} else { } else {
content = <div> content = <div>
{newMethodDetected} {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} {hackWarning}
<DialogButtons <DialogButtons
primaryButton={_t("Set up Secure Messages")} primaryButton={_t("Set up Secure Messages")}