mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 04:21:32 +03:00
292b1f09af
Continues from Matthew's work: adds a feature flag & panel in user settings to create a backup. Can't restore a backup yet, nor even continue backing up to the same backup after a refresh.
134 lines
4.6 KiB
JavaScript
134 lines
4.6 KiB
JavaScript
/*
|
|
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 PropTypes from 'prop-types';
|
|
|
|
import sdk from '../../../index';
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
|
import { _t } from '../../../languageHandler';
|
|
import Modal from '../../../Modal';
|
|
|
|
export default class KeyBackupPanel extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this._startNewBackup = this._startNewBackup.bind(this);
|
|
this._deleteBackup = this._deleteBackup.bind(this);
|
|
|
|
this._unmounted = false;
|
|
this.state = {
|
|
loading: true,
|
|
error: null,
|
|
backupInfo: null,
|
|
};
|
|
this._loadBackupStatus();
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this._unmounted = true;
|
|
}
|
|
|
|
async _loadBackupStatus() {
|
|
this.setState({loading: true});
|
|
try {
|
|
const backupInfo = await MatrixClientPeg.get().getKeyBackupVersion();
|
|
if (this._unmounted) return;
|
|
this.setState({
|
|
backupInfo,
|
|
loading: false,
|
|
});
|
|
} catch (e) {
|
|
console.log("Unable to fetch key backup status", e);
|
|
if (this._unmounted) return;
|
|
this.setState({
|
|
error: e,
|
|
loading: false,
|
|
});
|
|
return;
|
|
}
|
|
}
|
|
|
|
_startNewBackup() {
|
|
const CreateKeyBackupDialog = sdk.getComponent("dialogs.keybackup.CreateKeyBackupDialog");
|
|
Modal.createTrackedDialog('Key Backup', 'Key Backup', CreateKeyBackupDialog, {
|
|
onFinished: () => {
|
|
this._loadBackupStatus();
|
|
},
|
|
});
|
|
}
|
|
|
|
_deleteBackup() {
|
|
const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
|
|
Modal.createTrackedDialog('Delete Backup', '', QuestionDialog, {
|
|
title: _t("Delete Backup"),
|
|
description: _t(
|
|
"Delete your backed up encryption keys from the server? " +
|
|
"You will no longer be able to use your recovery key to read encrypted message history"
|
|
),
|
|
button: _t('Delete backup'),
|
|
danger: true,
|
|
onFinished: (proceed) => {
|
|
if (!proceed) return;
|
|
this.setState({loading: true});
|
|
MatrixClientPeg.get().deleteKeyBackupVersion(this.state.backupInfo.version).then(() => {
|
|
this._loadBackupStatus();
|
|
});
|
|
},
|
|
});
|
|
|
|
}
|
|
|
|
render() {
|
|
const Spinner = sdk.getComponent("elements.Spinner");
|
|
const AccessibleButton = sdk.getComponent("elements.AccessibleButton");
|
|
|
|
if (this.state.error) {
|
|
return (
|
|
<div className="error">
|
|
{_t("Unable to load key backup status")}
|
|
</div>
|
|
);
|
|
} else if (this.state.loading) {
|
|
return <Spinner />;
|
|
} else if (this.state.backupInfo) {
|
|
let clientBackupStatus;
|
|
if (MatrixClientPeg.get().getKeyBackupEnabled()) {
|
|
clientBackupStatus = _t("This device is uploading keys to this backup");
|
|
} else {
|
|
// XXX: display why and how to fix it
|
|
clientBackupStatus = _t("This device is <b>not</b> uploading keys to this backup", {}, {b: x => <b>{x}</b>});
|
|
}
|
|
return <div>
|
|
{_t("Backup version: ")}{this.state.backupInfo.version}<br />
|
|
{_t("Algorithm: ")}{this.state.backupInfo.algorithm}<br />
|
|
{clientBackupStatus}<br /><br />
|
|
<AccessibleButton className="mx_UserSettings_button danger"
|
|
onClick={this._deleteBackup}>
|
|
{ _t("Delete backup") }
|
|
</AccessibleButton>
|
|
</div>;
|
|
} else {
|
|
return <div>
|
|
{_t("No backup is present")}<br /><br />
|
|
<AccessibleButton className="mx_UserSettings_button"
|
|
onClick={this._startNewBackup}>
|
|
{ _t("Start a new backup") }
|
|
</AccessibleButton>
|
|
</div>;
|
|
}
|
|
}
|
|
}
|