/* Copyright 2018, 2019 New Vector Ltd Copyright 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 React from 'react'; import Modal from '../../../Modal'; import * as sdk from '../../../index'; import dis from '../../../dispatcher'; import { _t } from '../../../languageHandler'; import {MatrixClientPeg} from '../../../MatrixClientPeg'; import SettingsStore from "../../../settings/SettingsStore"; export default class LogoutDialog extends React.Component { defaultProps = { onFinished: function() {}, }; constructor() { super(); this._onSettingsLinkClick = this._onSettingsLinkClick.bind(this); this._onExportE2eKeysClicked = this._onExportE2eKeysClicked.bind(this); this._onFinished = this._onFinished.bind(this); this._onSetRecoveryMethodClick = this._onSetRecoveryMethodClick.bind(this); this._onLogoutConfirm = this._onLogoutConfirm.bind(this); const lowBandwidth = SettingsStore.getValue("lowBandwidth"); const shouldLoadBackupStatus = !lowBandwidth && !MatrixClientPeg.get().getKeyBackupEnabled(); this.state = { shouldLoadBackupStatus: shouldLoadBackupStatus, loading: shouldLoadBackupStatus, backupInfo: null, error: null, }; if (shouldLoadBackupStatus) { this._loadBackupStatus(); } } async _loadBackupStatus() { try { const backupInfo = await MatrixClientPeg.get().getKeyBackupVersion(); this.setState({ loading: false, backupInfo, }); } catch (e) { console.log("Unable to fetch key backup status", e); this.setState({ loading: false, error: e, }); } } _onSettingsLinkClick() { // close dialog this.props.onFinished(); } _onExportE2eKeysClicked() { Modal.createTrackedDialogAsync('Export E2E Keys', '', import('../../../async-components/views/dialogs/ExportE2eKeysDialog'), { matrixClient: MatrixClientPeg.get(), }, ); } _onFinished(confirmed) { if (confirmed) { dis.dispatch({action: 'logout'}); } // close dialog this.props.onFinished(); } _onSetRecoveryMethodClick() { if (this.state.backupInfo) { // A key backup exists for this account, but the creating device is not // verified, so restore the backup which will give us the keys from it and // allow us to trust it (ie. upload keys to it) const RestoreKeyBackupDialog = sdk.getComponent('dialogs.keybackup.RestoreKeyBackupDialog'); Modal.createTrackedDialog( 'Restore Backup', '', RestoreKeyBackupDialog, null, null, /* priority = */ false, /* static = */ true, ); } else { Modal.createTrackedDialogAsync("Key Backup", "Key Backup", import("../../../async-components/views/dialogs/keybackup/CreateKeyBackupDialog"), null, null, /* priority = */ false, /* static = */ true, ); } // close dialog this.props.onFinished(); } _onLogoutConfirm() { dis.dispatch({action: 'logout'}); // close dialog this.props.onFinished(); } render() { if (this.state.shouldLoadBackupStatus) { const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog'); const description =

{_t( "Encrypted messages are secured with end-to-end encryption. " + "Only you and the recipient(s) have the keys to read these messages.", )}

{_t("Back up your keys before signing out to avoid losing them.")}

; let dialogContent; if (this.state.loading) { const Spinner = sdk.getComponent('views.elements.Spinner'); dialogContent = ; } else { const DialogButtons = sdk.getComponent('views.elements.DialogButtons'); let setupButtonCaption; if (this.state.backupInfo) { setupButtonCaption = _t("Connect this device to Key Backup"); } else { // if there's an error fetching the backup info, we'll just assume there's // no backup for the purpose of the button caption setupButtonCaption = _t("Start using Key Backup"); } dialogContent =
{ description }
{_t("Advanced")}

; } // Not quite a standard question dialog as the primary button cancels // the action and does something else instead, whilst non-default button // confirms the action. return ( {dialogContent} ); } else { const QuestionDialog = sdk.getComponent('views.dialogs.QuestionDialog'); return (); } } }