/* Copyright 2018, 2019 New Vector Ltd 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 {debounce} from "lodash"; import classNames from 'classnames'; import React from 'react'; import PropTypes from "prop-types"; import * as sdk from '../../../../index'; import {MatrixClientPeg} from '../../../../MatrixClientPeg'; import Field from '../../elements/Field'; import AccessibleButton from '../../elements/AccessibleButton'; import { _t } from '../../../../languageHandler'; // Maximum acceptable size of a key file. It's 59 characters including the spaces we encode, // so this should be plenty and allow for people putting extra whitespace in the file because // maybe that's a thing people would do? const KEY_FILE_MAX_SIZE = 128; // Don't shout at the user that their key is invalid every time they type a key: wait a short time const VALIDATION_THROTTLE_MS = 200; /* * Access Secure Secret Storage by requesting the user's passphrase. */ export default class AccessSecretStorageDialog extends React.PureComponent { static propTypes = { // { passphrase, pubkey } keyInfo: PropTypes.object.isRequired, // Function from one of { passphrase, recoveryKey } -> boolean checkPrivateKey: PropTypes.func.isRequired, } constructor(props) { super(props); this._fileUpload = React.createRef(); this.state = { recoveryKey: "", recoveryKeyValid: null, recoveryKeyCorrect: null, recoveryKeyFileError: null, forceRecoveryKey: false, passPhrase: '', keyMatches: null, }; } _onCancel = () => { this.props.onFinished(false); } _onUseRecoveryKeyClick = () => { this.setState({ forceRecoveryKey: true, }); } _validateRecoveryKeyOnChange = debounce(() => { this._validateRecoveryKey(); }, VALIDATION_THROTTLE_MS); async _validateRecoveryKey() { if (this.state.recoveryKey === '') { this.setState({ recoveryKeyValid: null, recoveryKeyCorrect: null, }); return; } try { const cli = MatrixClientPeg.get(); const decodedKey = cli.keyBackupKeyFromRecoveryKey(this.state.recoveryKey); const correct = await cli.checkSecretStorageKey( decodedKey, this.props.keyInfo, ); this.setState({ recoveryKeyValid: true, recoveryKeyCorrect: correct, }); } catch (e) { this.setState({ recoveryKeyValid: false, recoveryKeyCorrect: false, }); } } _onRecoveryKeyChange = (e) => { this.setState({ recoveryKey: e.target.value, recoveryKeyFileError: null, }); // also clear the file upload control so that the user can upload the same file // the did before (otherwise the onchange wouldn't fire) if (this._fileUpload.current) this._fileUpload.current.value = null; // We don't use Field's validation here because a) we want it in a separate place rather // than in a tooltip and b) we want it to display feedback based on the uploaded file // as well as the text box. Ideally we would refactor Field's validation logic so we could // re-use some of it. this._validateRecoveryKeyOnChange(); } _onRecoveryKeyFileChange = async e => { if (e.target.files.length === 0) return; const f = e.target.files[0]; if (f.size > KEY_FILE_MAX_SIZE) { this.setState({ recoveryKeyFileError: true, recoveryKeyCorrect: false, recoveryKeyValid: false, }); } else { const contents = await f.text(); // test it's within the base58 alphabet. We could be more strict here, eg. require the // right number of characters, but it's really just to make sure that what we're reading is // text because we'll put it in the text field. if (/^[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz\s]+$/.test(contents)) { this.setState({ recoveryKeyFileError: null, recoveryKey: contents.trim(), }); this._validateRecoveryKey(); } else { this.setState({ recoveryKeyFileError: true, recoveryKeyCorrect: false, recoveryKeyValid: false, recoveryKey: '', }); } } } _onRecoveryKeyFileUploadClick = () => { this._fileUpload.current.click(); } _onPassPhraseNext = async (e) => { e.preventDefault(); if (this.state.passPhrase.length <= 0) return; this.setState({ keyMatches: null }); const input = { passphrase: this.state.passPhrase }; const keyMatches = await this.props.checkPrivateKey(input); if (keyMatches) { this.props.onFinished(input); } else { this.setState({ keyMatches }); } } _onRecoveryKeyNext = async (e) => { e.preventDefault(); if (!this.state.recoveryKeyValid) return; this.setState({ keyMatches: null }); const input = { recoveryKey: this.state.recoveryKey }; const keyMatches = await this.props.checkPrivateKey(input); if (keyMatches) { this.props.onFinished(input); } else { this.setState({ keyMatches }); } } _onPassPhraseChange = (e) => { this.setState({ passPhrase: e.target.value, keyMatches: null, }); } getKeyValidationText() { if (this.state.recoveryKeyFileError) { return _t("Wrong file type"); } else if (this.state.recoveryKeyCorrect) { return _t("Looks good!"); } else if (this.state.recoveryKeyValid) { return _t("Wrong Recovery Key"); } else if (this.state.recoveryKeyValid === null) { return ''; } else { return _t("Invalid Recovery Key"); } } render() { const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog'); const hasPassphrase = ( this.props.keyInfo && this.props.keyInfo.passphrase && this.props.keyInfo.passphrase.salt && this.props.keyInfo.passphrase.iterations ); let content; let title; let titleClass; if (hasPassphrase && !this.state.forceRecoveryKey) { const DialogButtons = sdk.getComponent('views.elements.DialogButtons'); const AccessibleButton = sdk.getComponent('elements.AccessibleButton'); title = _t("Security Phrase"); titleClass = ['mx_AccessSecretStorageDialog_titleWithIcon mx_AccessSecretStorageDialog_securePhraseTitle']; let keyStatus; if (this.state.keyMatches === false) { keyStatus =
{_t(
"Enter your Security Phrase or to continue.", {},
{
button: s =>
{_t("Use your Security Key to continue.")}