2019-12-05 18:05:28 +03:00
|
|
|
|
/*
|
|
|
|
|
Copyright 2018, 2019 New Vector Ltd
|
2020-01-22 13:44:02 +03:00
|
|
|
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
2019-12-05 18:05:28 +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';
|
2020-01-24 22:11:57 +03:00
|
|
|
|
import PropTypes from 'prop-types';
|
2019-12-20 04:19:56 +03:00
|
|
|
|
import * as sdk from '../../../../index';
|
2019-12-21 00:13:46 +03:00
|
|
|
|
import {MatrixClientPeg} from '../../../../MatrixClientPeg';
|
2019-12-05 18:05:28 +03:00
|
|
|
|
import { scorePassword } from '../../../../utils/PasswordScorer';
|
|
|
|
|
import FileSaver from 'file-saver';
|
|
|
|
|
import { _t } from '../../../../languageHandler';
|
|
|
|
|
import Modal from '../../../../Modal';
|
2020-03-19 23:42:16 +03:00
|
|
|
|
import { promptForBackupPassphrase } from '../../../../CrossSigningManager';
|
2020-04-15 02:16:11 +03:00
|
|
|
|
import {copyNode} from "../../../../utils/strings";
|
2019-12-05 18:05:28 +03:00
|
|
|
|
|
2019-12-19 14:26:20 +03:00
|
|
|
|
const PHASE_LOADING = 0;
|
2020-01-28 19:36:07 +03:00
|
|
|
|
const PHASE_MIGRATE = 1;
|
|
|
|
|
const PHASE_PASSPHRASE = 2;
|
|
|
|
|
const PHASE_PASSPHRASE_CONFIRM = 3;
|
|
|
|
|
const PHASE_SHOWKEY = 4;
|
|
|
|
|
const PHASE_KEEPITSAFE = 5;
|
|
|
|
|
const PHASE_STORING = 6;
|
|
|
|
|
const PHASE_DONE = 7;
|
2020-01-28 20:15:50 +03:00
|
|
|
|
const PHASE_CONFIRM_SKIP = 8;
|
2019-12-05 18:05:28 +03:00
|
|
|
|
|
|
|
|
|
const PASSWORD_MIN_SCORE = 4; // So secure, many characters, much complex, wow, etc, etc.
|
|
|
|
|
const PASSPHRASE_FEEDBACK_DELAY = 500; // How long after keystroke to offer passphrase feedback, ms.
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Walks the user through the process of creating a passphrase to guard Secure
|
|
|
|
|
* Secret Storage in account data.
|
|
|
|
|
*/
|
|
|
|
|
export default class CreateSecretStorageDialog extends React.PureComponent {
|
2020-01-24 22:11:57 +03:00
|
|
|
|
static propTypes = {
|
|
|
|
|
hasCancel: PropTypes.bool,
|
2020-01-25 18:28:06 +03:00
|
|
|
|
accountPassword: PropTypes.string,
|
2020-02-07 17:55:01 +03:00
|
|
|
|
force: PropTypes.bool,
|
2020-01-24 22:11:57 +03:00
|
|
|
|
};
|
|
|
|
|
|
2020-01-28 19:36:07 +03:00
|
|
|
|
static defaultProps = {
|
2020-01-24 22:11:57 +03:00
|
|
|
|
hasCancel: true,
|
2020-02-07 17:55:01 +03:00
|
|
|
|
force: false,
|
2020-01-24 22:11:57 +03:00
|
|
|
|
};
|
|
|
|
|
|
2019-12-05 18:05:28 +03:00
|
|
|
|
constructor(props) {
|
|
|
|
|
super(props);
|
|
|
|
|
|
2020-03-30 23:40:09 +03:00
|
|
|
|
this._recoveryKey = null;
|
2019-12-05 18:05:28 +03:00
|
|
|
|
this._recoveryKeyNode = null;
|
|
|
|
|
this._setZxcvbnResultTimeout = null;
|
2020-04-09 19:30:10 +03:00
|
|
|
|
this._backupKey = null;
|
2019-12-05 18:05:28 +03:00
|
|
|
|
|
|
|
|
|
this.state = {
|
2019-12-19 14:26:20 +03:00
|
|
|
|
phase: PHASE_LOADING,
|
2019-12-05 18:05:28 +03:00
|
|
|
|
passPhrase: '',
|
|
|
|
|
passPhraseConfirm: '',
|
|
|
|
|
copied: false,
|
|
|
|
|
downloaded: false,
|
|
|
|
|
zxcvbnResult: null,
|
2020-01-09 23:49:37 +03:00
|
|
|
|
backupInfo: null,
|
|
|
|
|
backupSigStatus: null,
|
2020-01-22 13:44:02 +03:00
|
|
|
|
// does the server offer a UI auth flow with just m.login.password
|
|
|
|
|
// for /keys/device_signing/upload?
|
|
|
|
|
canUploadKeysWithPasswordOnly: null,
|
2020-02-28 16:52:24 +03:00
|
|
|
|
accountPassword: props.accountPassword || "",
|
2020-01-22 13:44:02 +03:00
|
|
|
|
accountPasswordCorrect: null,
|
2020-01-28 22:42:09 +03:00
|
|
|
|
// status of the key backup toggle switch
|
|
|
|
|
useKeyBackup: true,
|
2019-12-05 18:05:28 +03:00
|
|
|
|
};
|
2019-12-19 14:26:20 +03:00
|
|
|
|
|
|
|
|
|
this._fetchBackupInfo();
|
2020-01-22 13:44:02 +03:00
|
|
|
|
this._queryKeyUploadAuth();
|
2020-01-24 22:11:57 +03:00
|
|
|
|
|
|
|
|
|
MatrixClientPeg.get().on('crypto.keyBackupStatus', this._onKeyBackupStatusChange);
|
2019-12-05 18:05:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
2020-01-24 22:11:57 +03:00
|
|
|
|
MatrixClientPeg.get().removeListener('crypto.keyBackupStatus', this._onKeyBackupStatusChange);
|
2019-12-05 18:05:28 +03:00
|
|
|
|
if (this._setZxcvbnResultTimeout !== null) {
|
|
|
|
|
clearTimeout(this._setZxcvbnResultTimeout);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 14:26:20 +03:00
|
|
|
|
async _fetchBackupInfo() {
|
|
|
|
|
const backupInfo = await MatrixClientPeg.get().getKeyBackupVersion();
|
2020-01-24 22:11:57 +03:00
|
|
|
|
const backupSigStatus = (
|
|
|
|
|
// we may not have started crypto yet, in which case we definitely don't trust the backup
|
|
|
|
|
MatrixClientPeg.get().isCryptoEnabled() && await MatrixClientPeg.get().isKeyBackupTrusted(backupInfo)
|
|
|
|
|
);
|
2020-01-09 23:49:37 +03:00
|
|
|
|
|
2020-02-07 17:55:01 +03:00
|
|
|
|
const { force } = this.props;
|
|
|
|
|
const phase = (backupInfo && !force) ? PHASE_MIGRATE : PHASE_PASSPHRASE;
|
2019-12-19 14:26:20 +03:00
|
|
|
|
|
|
|
|
|
this.setState({
|
2020-01-09 23:49:37 +03:00
|
|
|
|
phase,
|
2019-12-19 14:26:20 +03:00
|
|
|
|
backupInfo,
|
2020-01-09 23:49:37 +03:00
|
|
|
|
backupSigStatus,
|
2019-12-19 14:26:20 +03:00
|
|
|
|
});
|
2020-02-28 16:47:12 +03:00
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
backupInfo,
|
|
|
|
|
backupSigStatus,
|
|
|
|
|
};
|
2019-12-19 14:26:20 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 13:44:02 +03:00
|
|
|
|
async _queryKeyUploadAuth() {
|
|
|
|
|
try {
|
|
|
|
|
await MatrixClientPeg.get().uploadDeviceSigningKeys(null, {});
|
|
|
|
|
// We should never get here: the server should always require
|
|
|
|
|
// UI auth to upload device signing keys. If we do, we upload
|
|
|
|
|
// no keys which would be a no-op.
|
|
|
|
|
console.log("uploadDeviceSigningKeys unexpectedly succeeded without UI auth!");
|
|
|
|
|
} catch (error) {
|
|
|
|
|
if (!error.data.flows) {
|
|
|
|
|
console.log("uploadDeviceSigningKeys advertised no flows!");
|
|
|
|
|
}
|
|
|
|
|
const canUploadKeysWithPasswordOnly = error.data.flows.some(f => {
|
|
|
|
|
return f.stages.length === 1 && f.stages[0] === 'm.login.password';
|
|
|
|
|
});
|
|
|
|
|
this.setState({
|
|
|
|
|
canUploadKeysWithPasswordOnly,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-24 22:11:57 +03:00
|
|
|
|
_onKeyBackupStatusChange = () => {
|
2020-01-28 22:42:09 +03:00
|
|
|
|
if (this.state.phase === PHASE_MIGRATE) this._fetchBackupInfo();
|
2020-01-24 22:11:57 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-05 18:05:28 +03:00
|
|
|
|
_collectRecoveryKeyNode = (n) => {
|
|
|
|
|
this._recoveryKeyNode = n;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-28 22:42:09 +03:00
|
|
|
|
_onUseKeyBackupChange = (enabled) => {
|
|
|
|
|
this.setState({
|
|
|
|
|
useKeyBackup: enabled,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 13:44:02 +03:00
|
|
|
|
_onMigrateFormSubmit = (e) => {
|
|
|
|
|
e.preventDefault();
|
2020-01-28 19:36:07 +03:00
|
|
|
|
if (this.state.backupSigStatus.usable) {
|
|
|
|
|
this._bootstrapSecretStorage();
|
|
|
|
|
} else {
|
|
|
|
|
this._restoreBackup();
|
|
|
|
|
}
|
2019-12-19 14:26:20 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-05 18:05:28 +03:00
|
|
|
|
_onCopyClick = () => {
|
2020-04-15 02:16:11 +03:00
|
|
|
|
const successful = copyNode(this._recoveryKeyNode);
|
2019-12-05 18:05:28 +03:00
|
|
|
|
if (successful) {
|
|
|
|
|
this.setState({
|
|
|
|
|
copied: true,
|
|
|
|
|
phase: PHASE_KEEPITSAFE,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_onDownloadClick = () => {
|
2020-03-31 12:45:53 +03:00
|
|
|
|
const blob = new Blob([this._recoveryKey.encodedPrivateKey], {
|
2019-12-05 18:05:28 +03:00
|
|
|
|
type: 'text/plain;charset=us-ascii',
|
|
|
|
|
});
|
|
|
|
|
FileSaver.saveAs(blob, 'recovery-key.txt');
|
|
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
|
downloaded: true,
|
|
|
|
|
phase: PHASE_KEEPITSAFE,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 13:44:02 +03:00
|
|
|
|
_doBootstrapUIAuth = async (makeRequest) => {
|
2020-01-22 14:44:47 +03:00
|
|
|
|
if (this.state.canUploadKeysWithPasswordOnly && this.state.accountPassword) {
|
2020-01-22 13:44:02 +03:00
|
|
|
|
await makeRequest({
|
|
|
|
|
type: 'm.login.password',
|
|
|
|
|
identifier: {
|
|
|
|
|
type: 'm.id.user',
|
|
|
|
|
user: MatrixClientPeg.get().getUserId(),
|
|
|
|
|
},
|
|
|
|
|
// https://github.com/matrix-org/synapse/issues/5665
|
|
|
|
|
user: MatrixClientPeg.get().getUserId(),
|
|
|
|
|
password: this.state.accountPassword,
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
const InteractiveAuthDialog = sdk.getComponent("dialogs.InteractiveAuthDialog");
|
|
|
|
|
const { finished } = Modal.createTrackedDialog(
|
|
|
|
|
'Cross-signing keys dialog', '', InteractiveAuthDialog,
|
|
|
|
|
{
|
2020-01-31 18:04:51 +03:00
|
|
|
|
title: _t("Setting up keys"),
|
2020-01-22 13:44:02 +03:00
|
|
|
|
matrixClient: MatrixClientPeg.get(),
|
|
|
|
|
makeRequest,
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
const [confirmed] = await finished;
|
|
|
|
|
if (!confirmed) {
|
|
|
|
|
throw new Error("Cross-signing key upload auth canceled");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-05 18:05:28 +03:00
|
|
|
|
_bootstrapSecretStorage = async () => {
|
|
|
|
|
this.setState({
|
|
|
|
|
phase: PHASE_STORING,
|
|
|
|
|
error: null,
|
|
|
|
|
});
|
2020-01-22 13:44:02 +03:00
|
|
|
|
|
2019-12-05 18:05:28 +03:00
|
|
|
|
const cli = MatrixClientPeg.get();
|
2020-01-22 13:44:02 +03:00
|
|
|
|
|
2020-02-07 17:55:01 +03:00
|
|
|
|
const { force } = this.props;
|
|
|
|
|
|
2019-12-05 18:05:28 +03:00
|
|
|
|
try {
|
2020-02-11 20:56:25 +03:00
|
|
|
|
if (force) {
|
2020-02-11 18:56:32 +03:00
|
|
|
|
await cli.bootstrapSecretStorage({
|
|
|
|
|
authUploadDeviceSigningKeys: this._doBootstrapUIAuth,
|
2020-03-31 12:45:53 +03:00
|
|
|
|
createSecretStorageKey: async () => this._recoveryKey,
|
2020-02-11 20:56:25 +03:00
|
|
|
|
setupNewKeyBackup: true,
|
|
|
|
|
setupNewSecretStorage: true,
|
2020-02-11 18:56:32 +03:00
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
await cli.bootstrapSecretStorage({
|
|
|
|
|
authUploadDeviceSigningKeys: this._doBootstrapUIAuth,
|
2020-03-31 12:45:53 +03:00
|
|
|
|
createSecretStorageKey: async () => this._recoveryKey,
|
2020-02-11 20:56:25 +03:00
|
|
|
|
keyBackupInfo: this.state.backupInfo,
|
|
|
|
|
setupNewKeyBackup: !this.state.backupInfo && this.state.useKeyBackup,
|
2020-04-09 19:30:10 +03:00
|
|
|
|
getKeyBackupPassphrase: () => {
|
|
|
|
|
// We may already have the backup key if we earlier went
|
|
|
|
|
// through the restore backup path, so pass it along
|
|
|
|
|
// rather than prompting again.
|
|
|
|
|
if (this._backupKey) {
|
|
|
|
|
return this._backupKey;
|
|
|
|
|
}
|
|
|
|
|
return promptForBackupPassphrase();
|
|
|
|
|
},
|
2020-02-11 18:56:32 +03:00
|
|
|
|
});
|
|
|
|
|
}
|
2019-12-05 18:05:28 +03:00
|
|
|
|
this.setState({
|
|
|
|
|
phase: PHASE_DONE,
|
|
|
|
|
});
|
|
|
|
|
} catch (e) {
|
2020-01-22 13:44:02 +03:00
|
|
|
|
if (this.state.canUploadKeysWithPasswordOnly && e.httpStatus === 401 && e.data.flows) {
|
|
|
|
|
this.setState({
|
2020-01-28 19:36:07 +03:00
|
|
|
|
accountPassword: '',
|
2020-01-22 13:44:02 +03:00
|
|
|
|
accountPasswordCorrect: false,
|
|
|
|
|
phase: PHASE_MIGRATE,
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.setState({ error: e });
|
|
|
|
|
}
|
2019-12-05 18:05:28 +03:00
|
|
|
|
console.error("Error bootstrapping secret storage", e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_onCancel = () => {
|
|
|
|
|
this.props.onFinished(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_onDone = () => {
|
|
|
|
|
this.props.onFinished(true);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-28 19:36:07 +03:00
|
|
|
|
_restoreBackup = async () => {
|
2020-04-09 19:30:10 +03:00
|
|
|
|
// It's possible we'll need the backup key later on for bootstrapping,
|
|
|
|
|
// so let's stash it here, rather than prompting for it twice.
|
|
|
|
|
const keyCallback = k => this._backupKey = k;
|
|
|
|
|
|
2020-01-14 14:52:00 +03:00
|
|
|
|
const RestoreKeyBackupDialog = sdk.getComponent('dialogs.keybackup.RestoreKeyBackupDialog');
|
2020-01-28 19:36:07 +03:00
|
|
|
|
const { finished } = Modal.createTrackedDialog(
|
2020-04-09 19:30:10 +03:00
|
|
|
|
'Restore Backup', '', RestoreKeyBackupDialog,
|
|
|
|
|
{
|
|
|
|
|
showSummary: false,
|
|
|
|
|
keyCallback,
|
|
|
|
|
},
|
|
|
|
|
null, /* priority = */ false, /* static = */ false,
|
2020-01-14 14:52:00 +03:00
|
|
|
|
);
|
2020-01-28 19:36:07 +03:00
|
|
|
|
|
|
|
|
|
await finished;
|
2020-02-28 16:47:12 +03:00
|
|
|
|
const { backupSigStatus } = await this._fetchBackupInfo();
|
2020-01-28 19:36:07 +03:00
|
|
|
|
if (
|
2020-02-28 16:47:12 +03:00
|
|
|
|
backupSigStatus.usable &&
|
2020-01-28 19:36:07 +03:00
|
|
|
|
this.state.canUploadKeysWithPasswordOnly &&
|
|
|
|
|
this.state.accountPassword
|
|
|
|
|
) {
|
|
|
|
|
this._bootstrapSecretStorage();
|
|
|
|
|
}
|
2020-01-14 14:52:00 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-28 20:15:50 +03:00
|
|
|
|
_onSkipSetupClick = () => {
|
|
|
|
|
this.setState({phase: PHASE_CONFIRM_SKIP});
|
2019-12-05 18:05:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_onSetUpClick = () => {
|
|
|
|
|
this.setState({phase: PHASE_PASSPHRASE});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_onSkipPassPhraseClick = async () => {
|
2020-03-31 12:45:53 +03:00
|
|
|
|
this._recoveryKey =
|
2019-12-05 18:05:28 +03:00
|
|
|
|
await MatrixClientPeg.get().createRecoveryKeyFromPassphrase();
|
|
|
|
|
this.setState({
|
|
|
|
|
copied: false,
|
|
|
|
|
downloaded: false,
|
|
|
|
|
phase: PHASE_SHOWKEY,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-09 18:03:28 +03:00
|
|
|
|
_onPassPhraseNextClick = async (e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
2020-01-29 16:24:45 +03:00
|
|
|
|
// If we're waiting for the timeout before updating the result at this point,
|
|
|
|
|
// skip ahead and do it now, otherwise we'll deny the attempt to proceed
|
|
|
|
|
// even if the user entered a valid passphrase
|
|
|
|
|
if (this._setZxcvbnResultTimeout !== null) {
|
|
|
|
|
clearTimeout(this._setZxcvbnResultTimeout);
|
|
|
|
|
this._setZxcvbnResultTimeout = null;
|
|
|
|
|
await new Promise((resolve) => {
|
|
|
|
|
this.setState({
|
|
|
|
|
zxcvbnResult: scorePassword(this.state.passPhrase),
|
|
|
|
|
}, resolve);
|
|
|
|
|
});
|
2019-12-05 18:05:28 +03:00
|
|
|
|
}
|
2020-01-29 16:24:45 +03:00
|
|
|
|
if (this._passPhraseIsValid()) {
|
|
|
|
|
this.setState({phase: PHASE_PASSPHRASE_CONFIRM});
|
|
|
|
|
}
|
|
|
|
|
};
|
2019-12-05 18:05:28 +03:00
|
|
|
|
|
2020-02-09 18:03:28 +03:00
|
|
|
|
_onPassPhraseConfirmNextClick = async (e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
2020-01-29 16:24:45 +03:00
|
|
|
|
if (this.state.passPhrase !== this.state.passPhraseConfirm) return;
|
|
|
|
|
|
2020-03-31 12:45:53 +03:00
|
|
|
|
this._recoveryKey =
|
2019-12-05 18:05:28 +03:00
|
|
|
|
await MatrixClientPeg.get().createRecoveryKeyFromPassphrase(this.state.passPhrase);
|
|
|
|
|
this.setState({
|
|
|
|
|
copied: false,
|
|
|
|
|
downloaded: false,
|
|
|
|
|
phase: PHASE_SHOWKEY,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_onSetAgainClick = () => {
|
|
|
|
|
this.setState({
|
|
|
|
|
passPhrase: '',
|
|
|
|
|
passPhraseConfirm: '',
|
|
|
|
|
phase: PHASE_PASSPHRASE,
|
|
|
|
|
zxcvbnResult: null,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_onKeepItSafeBackClick = () => {
|
|
|
|
|
this.setState({
|
|
|
|
|
phase: PHASE_SHOWKEY,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_onPassPhraseChange = (e) => {
|
|
|
|
|
this.setState({
|
|
|
|
|
passPhrase: e.target.value,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (this._setZxcvbnResultTimeout !== null) {
|
|
|
|
|
clearTimeout(this._setZxcvbnResultTimeout);
|
|
|
|
|
}
|
|
|
|
|
this._setZxcvbnResultTimeout = setTimeout(() => {
|
|
|
|
|
this._setZxcvbnResultTimeout = null;
|
|
|
|
|
this.setState({
|
|
|
|
|
// precompute this and keep it in state: zxcvbn is fast but
|
|
|
|
|
// we use it in a couple of different places so no point recomputing
|
|
|
|
|
// it unnecessarily.
|
|
|
|
|
zxcvbnResult: scorePassword(this.state.passPhrase),
|
|
|
|
|
});
|
|
|
|
|
}, PASSPHRASE_FEEDBACK_DELAY);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_onPassPhraseConfirmChange = (e) => {
|
|
|
|
|
this.setState({
|
|
|
|
|
passPhraseConfirm: e.target.value,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_passPhraseIsValid() {
|
|
|
|
|
return this.state.zxcvbnResult && this.state.zxcvbnResult.score >= PASSWORD_MIN_SCORE;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 13:44:02 +03:00
|
|
|
|
_onAccountPasswordChange = (e) => {
|
|
|
|
|
this.setState({
|
|
|
|
|
accountPassword: e.target.value,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 14:26:20 +03:00
|
|
|
|
_renderPhaseMigrate() {
|
2019-12-19 22:49:36 +03:00
|
|
|
|
// TODO: This is a temporary screen so people who have the labs flag turned on and
|
2019-12-19 14:26:20 +03:00
|
|
|
|
// click the button are aware they're making a change to their account.
|
|
|
|
|
// Once we're confident enough in this (and it's supported enough) we can do
|
|
|
|
|
// it automatically.
|
2019-12-19 22:54:44 +03:00
|
|
|
|
// https://github.com/vector-im/riot-web/issues/11696
|
2019-12-19 14:26:20 +03:00
|
|
|
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
2020-01-22 13:44:02 +03:00
|
|
|
|
const Field = sdk.getComponent('views.elements.Field');
|
|
|
|
|
|
|
|
|
|
let authPrompt;
|
2020-01-28 19:36:07 +03:00
|
|
|
|
let nextCaption = _t("Next");
|
2020-02-28 14:25:04 +03:00
|
|
|
|
if (this.state.canUploadKeysWithPasswordOnly) {
|
2020-01-22 13:44:02 +03:00
|
|
|
|
authPrompt = <div>
|
|
|
|
|
<div>{_t("Enter your account password to confirm the upgrade:")}</div>
|
2020-01-29 16:24:45 +03:00
|
|
|
|
<div><Field
|
|
|
|
|
type="password"
|
2020-01-22 13:44:02 +03:00
|
|
|
|
label={_t("Password")}
|
|
|
|
|
value={this.state.accountPassword}
|
|
|
|
|
onChange={this._onAccountPasswordChange}
|
|
|
|
|
flagInvalid={this.state.accountPasswordCorrect === false}
|
|
|
|
|
autoFocus={true}
|
|
|
|
|
/></div>
|
|
|
|
|
</div>;
|
2020-02-28 14:25:04 +03:00
|
|
|
|
} else if (!this.state.backupSigStatus.usable) {
|
|
|
|
|
authPrompt = <div>
|
|
|
|
|
<div>{_t("Restore your key backup to upgrade your encryption")}</div>
|
|
|
|
|
</div>;
|
|
|
|
|
nextCaption = _t("Restore");
|
2020-01-22 13:44:02 +03:00
|
|
|
|
} else {
|
|
|
|
|
authPrompt = <p>
|
|
|
|
|
{_t("You'll need to authenticate with the server to confirm the upgrade.")}
|
|
|
|
|
</p>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return <form onSubmit={this._onMigrateFormSubmit}>
|
2019-12-19 14:26:20 +03:00
|
|
|
|
<p>{_t(
|
2020-01-29 18:48:25 +03:00
|
|
|
|
"Upgrade this session to allow it to verify other sessions, " +
|
2020-01-22 13:44:02 +03:00
|
|
|
|
"granting them access to encrypted messages and marking them " +
|
|
|
|
|
"as trusted for other users.",
|
2019-12-19 14:26:20 +03:00
|
|
|
|
)}</p>
|
2020-01-22 13:44:02 +03:00
|
|
|
|
<div>{authPrompt}</div>
|
2020-02-09 17:49:54 +03:00
|
|
|
|
<DialogButtons
|
|
|
|
|
primaryButton={nextCaption}
|
2020-02-28 15:04:27 +03:00
|
|
|
|
onPrimaryButtonClick={this._onMigrateFormSubmit}
|
2020-01-28 19:36:07 +03:00
|
|
|
|
hasCancel={false}
|
2020-01-22 13:44:02 +03:00
|
|
|
|
primaryDisabled={this.state.canUploadKeysWithPasswordOnly && !this.state.accountPassword}
|
2020-01-28 19:36:07 +03:00
|
|
|
|
>
|
2020-01-28 22:42:09 +03:00
|
|
|
|
<button type="button" className="danger" onClick={this._onSkipSetupClick}>
|
2020-01-28 19:36:07 +03:00
|
|
|
|
{_t('Skip')}
|
|
|
|
|
</button>
|
|
|
|
|
</DialogButtons>
|
2020-01-22 13:44:02 +03:00
|
|
|
|
</form>;
|
2019-12-19 14:26:20 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-05 18:05:28 +03:00
|
|
|
|
_renderPhasePassPhrase() {
|
|
|
|
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
2020-01-22 21:08:39 +03:00
|
|
|
|
const Field = sdk.getComponent('views.elements.Field');
|
2020-01-24 22:11:57 +03:00
|
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
2020-01-28 22:42:09 +03:00
|
|
|
|
const LabelledToggleSwitch = sdk.getComponent('views.elements.LabelledToggleSwitch');
|
2019-12-05 18:05:28 +03:00
|
|
|
|
|
|
|
|
|
let strengthMeter;
|
|
|
|
|
let helpText;
|
|
|
|
|
if (this.state.zxcvbnResult) {
|
|
|
|
|
if (this.state.zxcvbnResult.score >= PASSWORD_MIN_SCORE) {
|
2020-04-16 14:26:12 +03:00
|
|
|
|
helpText = _t("Great! This recovery passphrase looks strong enough.");
|
2019-12-05 18:05:28 +03:00
|
|
|
|
} else {
|
2020-01-31 13:59:35 +03:00
|
|
|
|
// We take the warning from zxcvbn or failing that, the first
|
|
|
|
|
// suggestion. In practice The first is generally the most relevant
|
|
|
|
|
// and it's probably better to present the user with one thing to
|
|
|
|
|
// improve about their password than a whole collection - it can
|
|
|
|
|
// spit out a warning and multiple suggestions which starts getting
|
|
|
|
|
// very information-dense.
|
|
|
|
|
const suggestion = (
|
|
|
|
|
this.state.zxcvbnResult.feedback.warning ||
|
|
|
|
|
this.state.zxcvbnResult.feedback.suggestions[0]
|
|
|
|
|
);
|
|
|
|
|
const suggestionBlock = <div>{suggestion || _t("Keep going...")}</div>;
|
2019-12-05 18:05:28 +03:00
|
|
|
|
|
|
|
|
|
helpText = <div>
|
|
|
|
|
{suggestionBlock}
|
|
|
|
|
</div>;
|
|
|
|
|
}
|
|
|
|
|
strengthMeter = <div>
|
|
|
|
|
<progress max={PASSWORD_MIN_SCORE} value={this.state.zxcvbnResult.score} />
|
|
|
|
|
</div>;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-09 17:49:54 +03:00
|
|
|
|
return <form onSubmit={this._onPassPhraseNextClick}>
|
2019-12-05 18:05:28 +03:00
|
|
|
|
<p>{_t(
|
2020-04-16 15:34:18 +03:00
|
|
|
|
"Set a recovery passphrase to secure encrypted information and recover it if you log out. " +
|
|
|
|
|
"This should be different to your account password:",
|
2019-12-05 18:05:28 +03:00
|
|
|
|
)}</p>
|
|
|
|
|
|
2020-01-22 21:08:39 +03:00
|
|
|
|
<div className="mx_CreateSecretStorageDialog_passPhraseContainer">
|
2020-01-29 16:24:45 +03:00
|
|
|
|
<Field
|
|
|
|
|
type="password"
|
2020-01-22 21:08:39 +03:00
|
|
|
|
className="mx_CreateSecretStorageDialog_passPhraseField"
|
|
|
|
|
onChange={this._onPassPhraseChange}
|
|
|
|
|
value={this.state.passPhrase}
|
2020-04-16 14:26:12 +03:00
|
|
|
|
label={_t("Enter a recovery passphrase")}
|
2020-01-22 21:08:39 +03:00
|
|
|
|
autoFocus={true}
|
2020-01-29 16:24:45 +03:00
|
|
|
|
autoComplete="new-password"
|
2020-01-22 21:08:39 +03:00
|
|
|
|
/>
|
|
|
|
|
<div className="mx_CreateSecretStorageDialog_passPhraseHelp">
|
|
|
|
|
{strengthMeter}
|
|
|
|
|
{helpText}
|
2019-12-05 18:05:28 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2020-01-28 22:42:09 +03:00
|
|
|
|
<LabelledToggleSwitch
|
2020-04-16 16:02:32 +03:00
|
|
|
|
label={ _t("Back up encrypted message keys")}
|
2020-01-28 22:42:09 +03:00
|
|
|
|
onChange={this._onUseKeyBackupChange} value={this.state.useKeyBackup}
|
|
|
|
|
/>
|
|
|
|
|
|
2020-01-29 16:24:45 +03:00
|
|
|
|
<DialogButtons
|
|
|
|
|
primaryButton={_t('Continue')}
|
2019-12-05 18:05:28 +03:00
|
|
|
|
onPrimaryButtonClick={this._onPassPhraseNextClick}
|
|
|
|
|
hasCancel={false}
|
|
|
|
|
disabled={!this._passPhraseIsValid()}
|
2020-01-22 21:08:39 +03:00
|
|
|
|
>
|
|
|
|
|
<button type="button"
|
2020-01-28 20:15:50 +03:00
|
|
|
|
onClick={this._onSkipSetupClick}
|
2020-01-22 21:08:39 +03:00
|
|
|
|
className="danger"
|
|
|
|
|
>{_t("Skip")}</button>
|
|
|
|
|
</DialogButtons>
|
2019-12-05 18:05:28 +03:00
|
|
|
|
|
|
|
|
|
<details>
|
|
|
|
|
<summary>{_t("Advanced")}</summary>
|
2020-01-30 01:31:19 +03:00
|
|
|
|
<AccessibleButton kind='primary' onClick={this._onSkipPassPhraseClick} >
|
2019-12-05 18:05:28 +03:00
|
|
|
|
{_t("Set up with a recovery key")}
|
2020-01-30 01:31:19 +03:00
|
|
|
|
</AccessibleButton>
|
2019-12-05 18:05:28 +03:00
|
|
|
|
</details>
|
2020-01-29 16:24:45 +03:00
|
|
|
|
</form>;
|
2019-12-05 18:05:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_renderPhasePassPhraseConfirm() {
|
|
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
2020-01-22 21:08:39 +03:00
|
|
|
|
const Field = sdk.getComponent('views.elements.Field');
|
2019-12-05 18:05:28 +03:00
|
|
|
|
|
|
|
|
|
let matchText;
|
|
|
|
|
if (this.state.passPhraseConfirm === this.state.passPhrase) {
|
|
|
|
|
matchText = _t("That matches!");
|
|
|
|
|
} else if (!this.state.passPhrase.startsWith(this.state.passPhraseConfirm)) {
|
|
|
|
|
// only tell them they're wrong if they've actually gone wrong.
|
|
|
|
|
// Security concious readers will note that if you left riot-web unattended
|
|
|
|
|
// on this screen, this would make it easy for a malicious person to guess
|
|
|
|
|
// your passphrase one letter at a time, but they could get this faster by
|
|
|
|
|
// just opening the browser's developer tools and reading it.
|
|
|
|
|
// Note that not having typed anything at all will not hit this clause and
|
|
|
|
|
// fall through so empty box === no hint.
|
|
|
|
|
matchText = _t("That doesn't match.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let passPhraseMatch = null;
|
|
|
|
|
if (matchText) {
|
2020-01-22 21:08:39 +03:00
|
|
|
|
passPhraseMatch = <div>
|
2019-12-05 18:05:28 +03:00
|
|
|
|
<div>{matchText}</div>
|
|
|
|
|
<div>
|
|
|
|
|
<AccessibleButton element="span" className="mx_linkButton" onClick={this._onSetAgainClick}>
|
|
|
|
|
{_t("Go back to set it again.")}
|
|
|
|
|
</AccessibleButton>
|
|
|
|
|
</div>
|
|
|
|
|
</div>;
|
|
|
|
|
}
|
|
|
|
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
2020-02-09 17:49:54 +03:00
|
|
|
|
return <form onSubmit={this._onPassPhraseConfirmNextClick}>
|
2019-12-05 18:05:28 +03:00
|
|
|
|
<p>{_t(
|
2020-04-16 14:26:12 +03:00
|
|
|
|
"Enter your recovery passphrase a second time to confirm it.",
|
2019-12-05 18:05:28 +03:00
|
|
|
|
)}</p>
|
2020-01-22 21:08:39 +03:00
|
|
|
|
<div className="mx_CreateSecretStorageDialog_passPhraseContainer">
|
2020-01-29 16:24:45 +03:00
|
|
|
|
<Field
|
|
|
|
|
type="password"
|
2020-01-22 21:08:39 +03:00
|
|
|
|
onChange={this._onPassPhraseConfirmChange}
|
|
|
|
|
value={this.state.passPhraseConfirm}
|
|
|
|
|
className="mx_CreateSecretStorageDialog_passPhraseField"
|
2020-04-16 14:26:12 +03:00
|
|
|
|
label={_t("Confirm your recovery passphrase")}
|
2020-01-22 21:08:39 +03:00
|
|
|
|
autoFocus={true}
|
2020-01-29 16:24:45 +03:00
|
|
|
|
autoComplete="new-password"
|
2020-01-22 21:08:39 +03:00
|
|
|
|
/>
|
|
|
|
|
<div className="mx_CreateSecretStorageDialog_passPhraseMatch">
|
2019-12-05 18:05:28 +03:00
|
|
|
|
{passPhraseMatch}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-01-29 16:24:45 +03:00
|
|
|
|
<DialogButtons
|
|
|
|
|
primaryButton={_t('Continue')}
|
2019-12-05 18:05:28 +03:00
|
|
|
|
onPrimaryButtonClick={this._onPassPhraseConfirmNextClick}
|
|
|
|
|
hasCancel={false}
|
|
|
|
|
disabled={this.state.passPhrase !== this.state.passPhraseConfirm}
|
2020-01-22 21:08:39 +03:00
|
|
|
|
>
|
|
|
|
|
<button type="button"
|
2020-01-28 20:15:50 +03:00
|
|
|
|
onClick={this._onSkipSetupClick}
|
2020-01-22 21:08:39 +03:00
|
|
|
|
className="danger"
|
|
|
|
|
>{_t("Skip")}</button>
|
|
|
|
|
</DialogButtons>
|
2020-01-29 16:24:45 +03:00
|
|
|
|
</form>;
|
2019-12-05 18:05:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_renderPhaseShowKey() {
|
2020-01-24 22:11:57 +03:00
|
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
2019-12-05 18:05:28 +03:00
|
|
|
|
return <div>
|
|
|
|
|
<p>{_t(
|
|
|
|
|
"Your recovery key is a safety net - you can use it to restore " +
|
2020-04-16 14:26:12 +03:00
|
|
|
|
"access to your encrypted messages if you forget your recovery passphrase.",
|
2019-12-05 18:05:28 +03:00
|
|
|
|
)}</p>
|
|
|
|
|
<p>{_t(
|
2020-01-31 15:15:19 +03:00
|
|
|
|
"Keep a copy of it somewhere secure, like a password manager or even a safe.",
|
2019-12-05 18:05:28 +03:00
|
|
|
|
)}</p>
|
|
|
|
|
<div className="mx_CreateSecretStorageDialog_primaryContainer">
|
|
|
|
|
<div className="mx_CreateSecretStorageDialog_recoveryKeyHeader">
|
2020-01-31 15:15:19 +03:00
|
|
|
|
{_t("Your recovery key")}
|
2019-12-05 18:05:28 +03:00
|
|
|
|
</div>
|
|
|
|
|
<div className="mx_CreateSecretStorageDialog_recoveryKeyContainer">
|
|
|
|
|
<div className="mx_CreateSecretStorageDialog_recoveryKey">
|
2020-03-31 12:45:53 +03:00
|
|
|
|
<code ref={this._collectRecoveryKeyNode}>{this._recoveryKey.encodedPrivateKey}</code>
|
2019-12-05 18:05:28 +03:00
|
|
|
|
</div>
|
|
|
|
|
<div className="mx_CreateSecretStorageDialog_recoveryKeyButtons">
|
2020-01-24 22:11:57 +03:00
|
|
|
|
<AccessibleButton kind='primary' className="mx_Dialog_primary" onClick={this._onCopyClick}>
|
2020-01-31 15:15:19 +03:00
|
|
|
|
{_t("Copy")}
|
2020-01-24 22:11:57 +03:00
|
|
|
|
</AccessibleButton>
|
|
|
|
|
<AccessibleButton kind='primary' className="mx_Dialog_primary" onClick={this._onDownloadClick}>
|
2019-12-05 18:05:28 +03:00
|
|
|
|
{_t("Download")}
|
2020-01-24 22:11:57 +03:00
|
|
|
|
</AccessibleButton>
|
2019-12-05 18:05:28 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_renderPhaseKeepItSafe() {
|
|
|
|
|
let introText;
|
|
|
|
|
if (this.state.copied) {
|
|
|
|
|
introText = _t(
|
|
|
|
|
"Your recovery key has been <b>copied to your clipboard</b>, paste it to:",
|
|
|
|
|
{}, {b: s => <b>{s}</b>},
|
|
|
|
|
);
|
|
|
|
|
} else if (this.state.downloaded) {
|
|
|
|
|
introText = _t(
|
|
|
|
|
"Your recovery key is in your <b>Downloads</b> folder.",
|
|
|
|
|
{}, {b: s => <b>{s}</b>},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
|
|
|
|
return <div>
|
|
|
|
|
{introText}
|
|
|
|
|
<ul>
|
|
|
|
|
<li>{_t("<b>Print it</b> and store it somewhere safe", {}, {b: s => <b>{s}</b>})}</li>
|
|
|
|
|
<li>{_t("<b>Save it</b> on a USB key or backup drive", {}, {b: s => <b>{s}</b>})}</li>
|
|
|
|
|
<li>{_t("<b>Copy it</b> to your personal cloud storage", {}, {b: s => <b>{s}</b>})}</li>
|
|
|
|
|
</ul>
|
2020-01-31 15:15:19 +03:00
|
|
|
|
<DialogButtons primaryButton={_t("Continue")}
|
2019-12-05 18:05:28 +03:00
|
|
|
|
onPrimaryButtonClick={this._bootstrapSecretStorage}
|
|
|
|
|
hasCancel={false}>
|
|
|
|
|
<button onClick={this._onKeepItSafeBackClick}>{_t("Back")}</button>
|
|
|
|
|
</DialogButtons>
|
|
|
|
|
</div>;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 14:26:20 +03:00
|
|
|
|
_renderBusyPhase() {
|
2019-12-05 18:05:28 +03:00
|
|
|
|
const Spinner = sdk.getComponent('views.elements.Spinner');
|
|
|
|
|
return <div>
|
|
|
|
|
<Spinner />
|
|
|
|
|
</div>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_renderPhaseDone() {
|
|
|
|
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
|
|
|
|
return <div>
|
|
|
|
|
<p>{_t(
|
2020-01-31 15:15:19 +03:00
|
|
|
|
"You can now verify your other devices, " +
|
|
|
|
|
"and other users to keep your chats safe.",
|
2019-12-05 18:05:28 +03:00
|
|
|
|
)}</p>
|
|
|
|
|
<DialogButtons primaryButton={_t('OK')}
|
|
|
|
|
onPrimaryButtonClick={this._onDone}
|
|
|
|
|
hasCancel={false}
|
|
|
|
|
/>
|
|
|
|
|
</div>;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-28 20:15:50 +03:00
|
|
|
|
_renderPhaseSkipConfirm() {
|
2019-12-05 18:05:28 +03:00
|
|
|
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
|
|
|
|
return <div>
|
|
|
|
|
{_t(
|
2020-01-29 18:48:25 +03:00
|
|
|
|
"Without completing security on this session, it won’t have " +
|
2020-01-28 20:15:50 +03:00
|
|
|
|
"access to encrypted messages.",
|
2019-12-05 18:05:28 +03:00
|
|
|
|
)}
|
2020-01-28 20:15:50 +03:00
|
|
|
|
<DialogButtons primaryButton={_t('Go back')}
|
2019-12-05 18:05:28 +03:00
|
|
|
|
onPrimaryButtonClick={this._onSetUpClick}
|
|
|
|
|
hasCancel={false}
|
|
|
|
|
>
|
2020-01-28 20:15:50 +03:00
|
|
|
|
<button type="button" className="danger" onClick={this._onCancel}>{_t('Skip')}</button>
|
2019-12-05 18:05:28 +03:00
|
|
|
|
</DialogButtons>
|
|
|
|
|
</div>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_titleForPhase(phase) {
|
|
|
|
|
switch (phase) {
|
2019-12-19 14:26:20 +03:00
|
|
|
|
case PHASE_MIGRATE:
|
2020-01-22 13:44:02 +03:00
|
|
|
|
return _t('Upgrade your encryption');
|
2019-12-05 18:05:28 +03:00
|
|
|
|
case PHASE_PASSPHRASE:
|
2020-01-22 21:08:39 +03:00
|
|
|
|
return _t('Set up encryption');
|
2019-12-05 18:05:28 +03:00
|
|
|
|
case PHASE_PASSPHRASE_CONFIRM:
|
2020-04-16 14:26:12 +03:00
|
|
|
|
return _t('Confirm recovery passphrase');
|
2020-01-28 20:15:50 +03:00
|
|
|
|
case PHASE_CONFIRM_SKIP:
|
|
|
|
|
return _t('Are you sure?');
|
2019-12-05 18:05:28 +03:00
|
|
|
|
case PHASE_SHOWKEY:
|
|
|
|
|
case PHASE_KEEPITSAFE:
|
2020-01-31 15:15:19 +03:00
|
|
|
|
return _t('Make a copy of your recovery key');
|
2019-12-05 18:05:28 +03:00
|
|
|
|
case PHASE_STORING:
|
2020-01-31 15:15:19 +03:00
|
|
|
|
return _t('Setting up keys');
|
2019-12-05 18:05:28 +03:00
|
|
|
|
case PHASE_DONE:
|
2020-01-31 15:15:19 +03:00
|
|
|
|
return _t("You're done!");
|
2019-12-05 18:05:28 +03:00
|
|
|
|
default:
|
2020-01-22 14:44:47 +03:00
|
|
|
|
return '';
|
2019-12-05 18:05:28 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render() {
|
|
|
|
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
|
|
|
|
|
|
|
|
|
let content;
|
|
|
|
|
if (this.state.error) {
|
|
|
|
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
|
|
|
|
content = <div>
|
|
|
|
|
<p>{_t("Unable to set up secret storage")}</p>
|
|
|
|
|
<div className="mx_Dialog_buttons">
|
|
|
|
|
<DialogButtons primaryButton={_t('Retry')}
|
|
|
|
|
onPrimaryButtonClick={this._bootstrapSecretStorage}
|
|
|
|
|
hasCancel={true}
|
|
|
|
|
onCancel={this._onCancel}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>;
|
|
|
|
|
} else {
|
|
|
|
|
switch (this.state.phase) {
|
2019-12-19 14:26:20 +03:00
|
|
|
|
case PHASE_LOADING:
|
|
|
|
|
content = this._renderBusyPhase();
|
|
|
|
|
break;
|
|
|
|
|
case PHASE_MIGRATE:
|
|
|
|
|
content = this._renderPhaseMigrate();
|
|
|
|
|
break;
|
2019-12-05 18:05:28 +03:00
|
|
|
|
case PHASE_PASSPHRASE:
|
|
|
|
|
content = this._renderPhasePassPhrase();
|
|
|
|
|
break;
|
|
|
|
|
case PHASE_PASSPHRASE_CONFIRM:
|
|
|
|
|
content = this._renderPhasePassPhraseConfirm();
|
|
|
|
|
break;
|
|
|
|
|
case PHASE_SHOWKEY:
|
|
|
|
|
content = this._renderPhaseShowKey();
|
|
|
|
|
break;
|
|
|
|
|
case PHASE_KEEPITSAFE:
|
|
|
|
|
content = this._renderPhaseKeepItSafe();
|
|
|
|
|
break;
|
|
|
|
|
case PHASE_STORING:
|
|
|
|
|
content = this._renderBusyPhase();
|
|
|
|
|
break;
|
|
|
|
|
case PHASE_DONE:
|
|
|
|
|
content = this._renderPhaseDone();
|
|
|
|
|
break;
|
2020-01-28 20:15:50 +03:00
|
|
|
|
case PHASE_CONFIRM_SKIP:
|
|
|
|
|
content = this._renderPhaseSkipConfirm();
|
2019-12-05 18:05:28 +03:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 14:44:47 +03:00
|
|
|
|
let headerImage;
|
|
|
|
|
if (this._titleForPhase(this.state.phase)) {
|
|
|
|
|
headerImage = require("../../../../../res/img/e2e/normal.svg");
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-05 18:05:28 +03:00
|
|
|
|
return (
|
|
|
|
|
<BaseDialog className='mx_CreateSecretStorageDialog'
|
|
|
|
|
onFinished={this.props.onFinished}
|
|
|
|
|
title={this._titleForPhase(this.state.phase)}
|
2020-01-22 14:44:47 +03:00
|
|
|
|
headerImage={headerImage}
|
2020-01-24 22:11:57 +03:00
|
|
|
|
hasCancel={this.props.hasCancel && [PHASE_PASSPHRASE].includes(this.state.phase)}
|
2020-01-28 19:36:07 +03:00
|
|
|
|
fixedWidth={false}
|
2019-12-05 18:05:28 +03:00
|
|
|
|
>
|
|
|
|
|
<div>
|
|
|
|
|
{content}
|
|
|
|
|
</div>
|
|
|
|
|
</BaseDialog>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|