/* Copyright 2018 New Vector Ltd 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 sdk from '../../../../index'; import MatrixClientPeg from '../../../../MatrixClientPeg'; import Promise from 'bluebird'; import { _t, _td } from '../../../../languageHandler'; const PHASE_INTRO = 0; const PHASE_GENERATING = 1; const PHASE_SHOWKEY = 2; const PHASE_MAKEBACKUP = 3; const PHASE_UPLOAD = 4; const PHASE_DONE = 5; // XXX: copied from ShareDialog: factor out into utils function selectText(target) { const range = document.createRange(); range.selectNodeContents(target); const selection = window.getSelection(); selection.removeAllRanges(); selection.addRange(range); } /** * Walks the user through the process of creating an e22 key backup * on the server. */ export default React.createClass({ getInitialState: function() { return { phase: PHASE_INTRO, }; }, componentWillMount: function() { this._recoveryKeyNode = null; this._keyBackupInfo = null; }, _collectRecoveryKeyNode: function(n) { this._recoveryKeyNode = n; }, _copyRecoveryKey: function() { selectText(this._recoveryKeyNode); const successful = document.execCommand('copy'); if (successful) { this.setState({copied: true}); } }, _createBackup: function() { this.setState({ phase: PHASE_MAKEBACKUP, error: null, }); this._createBackupPromise = MatrixClientPeg.get().createKeyBackupVersion( this._keyBackupInfo, ).then((info) => { this.setState({ phase: PHASE_UPLOAD, }); return MatrixClientPeg.get().backupAllGroupSessions(info.version); }).then(() => { this.setState({ phase: PHASE_DONE, }); }).catch(e => { console.log("Error creating key backup", e); this.setState({ error: e, }); }); }, _onCancel: function() { this.props.onFinished(false); }, _onDone: function() { this.props.onFinished(true); }, _generateKey: async function() { this.setState({ phase: PHASE_GENERATING, }); // Look, work is being done! await Promise.delay(1200); this._keyBackupInfo = MatrixClientPeg.get().prepareKeyBackupVersion(); this.setState({ phase: PHASE_SHOWKEY, }); }, _renderPhaseIntro: function() { const DialogButtons = sdk.getComponent('views.elements.DialogButtons'); return
To avoid ever losing your encrypted message history, you can save your encryption keys on the server, protected by a recovery key.
To maximise security, your recovery key is never stored by the app, so you must store it yourself somewhere safe.
Warning: storing your encryption keys on the server means that if someone gains access to your account and also steals your recovery key, they will be able to read all of your encrypted conversation history.
Do you wish to generate a recovery key and backup your encryption keys on the server?
{_t("Here is your recovery key:")}
{this._keyBackupInfo.recovery_key}
{_t("This key can decrypt your full message history.")}
{_t( "When you've saved it somewhere safe, proceed to the next step where the key will be used to "+ "create an encrypted backup of your message keys and then destroyed.", )}
{_t(text)}
{_t("Backup created")}
{_t("Your encryption keys are now being backed up to your Homeserver.")}
{_t("Unable to create key backup")}