Merge pull request #2599 from matrix-org/dbkr/unlabs_keybackup_sas
Remove key backup & sas from labs
This commit is contained in:
commit
09bf8099e0
6 changed files with 55 additions and 103 deletions
|
@ -1635,7 +1635,6 @@ module.exports = React.createClass({
|
||||||
);
|
);
|
||||||
|
|
||||||
const showRoomRecoveryReminder = (
|
const showRoomRecoveryReminder = (
|
||||||
SettingsStore.isFeatureEnabled("feature_keybackup") &&
|
|
||||||
SettingsStore.getValue("showRoomRecoveryReminder") &&
|
SettingsStore.getValue("showRoomRecoveryReminder") &&
|
||||||
MatrixClientPeg.get().isRoomEncrypted(this.state.room.roomId) &&
|
MatrixClientPeg.get().isRoomEncrypted(this.state.room.roomId) &&
|
||||||
!MatrixClientPeg.get().getKeyBackupEnabled()
|
!MatrixClientPeg.get().getKeyBackupEnabled()
|
||||||
|
|
|
@ -22,7 +22,6 @@ import MatrixClientPeg from '../../../MatrixClientPeg';
|
||||||
import sdk from '../../../index';
|
import sdk from '../../../index';
|
||||||
import * as FormattingUtils from '../../../utils/FormattingUtils';
|
import * as FormattingUtils from '../../../utils/FormattingUtils';
|
||||||
import { _t } from '../../../languageHandler';
|
import { _t } from '../../../languageHandler';
|
||||||
import SettingsStore from '../../../settings/SettingsStore';
|
|
||||||
import {verificationMethods} from 'matrix-js-sdk/lib/crypto';
|
import {verificationMethods} from 'matrix-js-sdk/lib/crypto';
|
||||||
|
|
||||||
const MODE_LEGACY = 'legacy';
|
const MODE_LEGACY = 'legacy';
|
||||||
|
@ -48,7 +47,7 @@ export default class DeviceVerifyDialog extends React.Component {
|
||||||
this._showSasEvent = null;
|
this._showSasEvent = null;
|
||||||
this.state = {
|
this.state = {
|
||||||
phase: PHASE_START,
|
phase: PHASE_START,
|
||||||
mode: SettingsStore.isFeatureEnabled("feature_sas") ? MODE_SAS : MODE_LEGACY,
|
mode: MODE_SAS,
|
||||||
sasVerified: false,
|
sasVerified: false,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,6 @@ import sdk from '../../../index';
|
||||||
import dis from '../../../dispatcher';
|
import dis from '../../../dispatcher';
|
||||||
import { _t } from '../../../languageHandler';
|
import { _t } from '../../../languageHandler';
|
||||||
import MatrixClientPeg from '../../../MatrixClientPeg';
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
||||||
import SettingsStore from "../../../settings/SettingsStore";
|
|
||||||
|
|
||||||
export default class LogoutDialog extends React.Component {
|
export default class LogoutDialog extends React.Component {
|
||||||
constructor() {
|
constructor() {
|
||||||
|
@ -79,9 +78,7 @@ export default class LogoutDialog extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
let description;
|
const description = <div>
|
||||||
if (SettingsStore.isFeatureEnabled("feature_keybackup")) {
|
|
||||||
description = <div>
|
|
||||||
<p>{_t(
|
<p>{_t(
|
||||||
"When you log out, you'll lose your secure message history. To prevent " +
|
"When you log out, you'll lose your secure message history. To prevent " +
|
||||||
"this, set up a recovery method.",
|
"this, set up a recovery method.",
|
||||||
|
@ -94,16 +91,7 @@ export default class LogoutDialog extends React.Component {
|
||||||
},
|
},
|
||||||
)}</p>
|
)}</p>
|
||||||
</div>;
|
</div>;
|
||||||
} else {
|
|
||||||
description = <div>{_t(
|
|
||||||
"For security, logging out will delete any end-to-end " +
|
|
||||||
"encryption keys from this browser. If you want to be able " +
|
|
||||||
"to decrypt your conversation history from future Riot sessions, " +
|
|
||||||
"please export your room keys for safe-keeping.",
|
|
||||||
)}</div>;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (SettingsStore.isFeatureEnabled("feature_keybackup")) {
|
|
||||||
if (!MatrixClientPeg.get().getKeyBackupEnabled()) {
|
if (!MatrixClientPeg.get().getKeyBackupEnabled()) {
|
||||||
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
||||||
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
||||||
|
@ -135,7 +123,7 @@ export default class LogoutDialog extends React.Component {
|
||||||
hasCancelButton={true}
|
hasCancelButton={true}
|
||||||
title={_t("Sign out")}
|
title={_t("Sign out")}
|
||||||
// TODO: This is made up by me and would need to also mention verifying
|
// TODO: This is made up by me and would need to also mention verifying
|
||||||
// once you can restorew a backup by verifying a device
|
// once you can restore a backup by verifying a device
|
||||||
description={_t(
|
description={_t(
|
||||||
"When signing in again, you can access encrypted chat history by " +
|
"When signing in again, you can access encrypted chat history by " +
|
||||||
"restoring your key backup. You'll need your recovery passphrase " +
|
"restoring your key backup. You'll need your recovery passphrase " +
|
||||||
|
@ -146,21 +134,5 @@ export default class LogoutDialog extends React.Component {
|
||||||
onFinished={this._onFinished}
|
onFinished={this._onFinished}
|
||||||
/>);
|
/>);
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
const QuestionDialog = sdk.getComponent('views.dialogs.QuestionDialog');
|
|
||||||
return (<QuestionDialog
|
|
||||||
hasCancelButton={true}
|
|
||||||
title={_t("Sign out")}
|
|
||||||
description={description}
|
|
||||||
button={_t("Sign out")}
|
|
||||||
extraButtons={[
|
|
||||||
(<button key="export" className="mx_Dialog_primary"
|
|
||||||
onClick={this._onExportE2eKeysClicked}>
|
|
||||||
{ _t("Export E2E room keys") }
|
|
||||||
</button>),
|
|
||||||
]}
|
|
||||||
onFinished={this._onFinished}
|
|
||||||
/>);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@ limitations under the License.
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import {_t} from "../../../../languageHandler";
|
import {_t} from "../../../../languageHandler";
|
||||||
import SettingsStore, {SettingLevel} from "../../../../settings/SettingsStore";
|
import {SettingLevel} from "../../../../settings/SettingsStore";
|
||||||
import MatrixClientPeg from "../../../../MatrixClientPeg";
|
import MatrixClientPeg from "../../../../MatrixClientPeg";
|
||||||
import * as FormattingUtils from "../../../../utils/FormattingUtils";
|
import * as FormattingUtils from "../../../../utils/FormattingUtils";
|
||||||
import AccessibleButton from "../../elements/AccessibleButton";
|
import AccessibleButton from "../../elements/AccessibleButton";
|
||||||
|
@ -196,10 +196,8 @@ export default class SecuritySettingsTab extends React.Component {
|
||||||
const DevicesPanel = sdk.getComponent('views.settings.DevicesPanel');
|
const DevicesPanel = sdk.getComponent('views.settings.DevicesPanel');
|
||||||
const SettingsFlag = sdk.getComponent('views.elements.SettingsFlag');
|
const SettingsFlag = sdk.getComponent('views.elements.SettingsFlag');
|
||||||
|
|
||||||
let keyBackup = null;
|
|
||||||
if (SettingsStore.isFeatureEnabled("feature_keybackup")) {
|
|
||||||
const KeyBackupPanel = sdk.getComponent('views.settings.KeyBackupPanel');
|
const KeyBackupPanel = sdk.getComponent('views.settings.KeyBackupPanel');
|
||||||
keyBackup = (
|
const keyBackup = (
|
||||||
<div className='mx_SettingsTab_section'>
|
<div className='mx_SettingsTab_section'>
|
||||||
<span className="mx_SettingsTab_subheading">{_t("Key backup")}</span>
|
<span className="mx_SettingsTab_subheading">{_t("Key backup")}</span>
|
||||||
<div className='mx_SettingsTab_subsectionText'>
|
<div className='mx_SettingsTab_subsectionText'>
|
||||||
|
@ -207,7 +205,6 @@ export default class SecuritySettingsTab extends React.Component {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_SettingsTab mx_SecuritySettingsTab">
|
<div className="mx_SettingsTab mx_SecuritySettingsTab">
|
||||||
|
|
|
@ -271,9 +271,7 @@
|
||||||
"Message Pinning": "Message Pinning",
|
"Message Pinning": "Message Pinning",
|
||||||
"Custom user status messages": "Custom user status messages",
|
"Custom user status messages": "Custom user status messages",
|
||||||
"Group & filter rooms by custom tags (refresh to apply changes)": "Group & filter rooms by custom tags (refresh to apply changes)",
|
"Group & filter rooms by custom tags (refresh to apply changes)": "Group & filter rooms by custom tags (refresh to apply changes)",
|
||||||
"Backup of encryption keys to server": "Backup of encryption keys to server",
|
|
||||||
"Render simple counters in room header": "Render simple counters in room header",
|
"Render simple counters in room header": "Render simple counters in room header",
|
||||||
"Two-way device verification using short text": "Two-way device verification using short text",
|
|
||||||
"Enable Emoji suggestions while typing": "Enable Emoji suggestions while typing",
|
"Enable Emoji suggestions while typing": "Enable Emoji suggestions while typing",
|
||||||
"Use compact timeline layout": "Use compact timeline layout",
|
"Use compact timeline layout": "Use compact timeline layout",
|
||||||
"Show a placeholder for removed messages": "Show a placeholder for removed messages",
|
"Show a placeholder for removed messages": "Show a placeholder for removed messages",
|
||||||
|
@ -372,7 +370,7 @@
|
||||||
"Robot": "Robot",
|
"Robot": "Robot",
|
||||||
"Hat": "Hat",
|
"Hat": "Hat",
|
||||||
"Glasses": "Glasses",
|
"Glasses": "Glasses",
|
||||||
"Wrench": "Wrench",
|
"Spanner": "Spanner",
|
||||||
"Santa": "Santa",
|
"Santa": "Santa",
|
||||||
"Thumbs up": "Thumbs up",
|
"Thumbs up": "Thumbs up",
|
||||||
"Umbrella": "Umbrella",
|
"Umbrella": "Umbrella",
|
||||||
|
@ -1105,7 +1103,6 @@
|
||||||
"Updating Riot": "Updating Riot",
|
"Updating Riot": "Updating Riot",
|
||||||
"When you log out, you'll lose your secure message history. To prevent this, set up a recovery method.": "When you log out, you'll lose your secure message history. To prevent this, set up a recovery method.",
|
"When you log out, you'll lose your secure message history. To prevent this, set up a recovery method.": "When you log out, you'll lose your secure message history. To prevent this, set up a recovery method.",
|
||||||
"Alternatively, advanced users can also manually export encryption keys in <a>Settings</a> before logging out.": "Alternatively, advanced users can also manually export encryption keys in <a>Settings</a> before logging out.",
|
"Alternatively, advanced users can also manually export encryption keys in <a>Settings</a> before logging out.": "Alternatively, advanced users can also manually export encryption keys in <a>Settings</a> before logging out.",
|
||||||
"For security, logging out will delete any end-to-end encryption keys from this browser. If you want to be able to decrypt your conversation history from future Riot sessions, please export your room keys for safe-keeping.": "For security, logging out will delete any end-to-end encryption keys from this browser. If you want to be able to decrypt your conversation history from future Riot sessions, please export your room keys for safe-keeping.",
|
|
||||||
"Set a Recovery Method": "Set a Recovery Method",
|
"Set a Recovery Method": "Set a Recovery Method",
|
||||||
"I understand, log out without": "I understand, log out without",
|
"I understand, log out without": "I understand, log out without",
|
||||||
"When signing in again, you can access encrypted chat history by restoring your key backup. You'll need your recovery passphrase or, if you didn't set a recovery passphrase, your recovery key (that you downloaded).": "When signing in again, you can access encrypted chat history by restoring your key backup. You'll need your recovery passphrase or, if you didn't set a recovery passphrase, your recovery key (that you downloaded).",
|
"When signing in again, you can access encrypted chat history by restoring your key backup. You'll need your recovery passphrase or, if you didn't set a recovery passphrase, your recovery key (that you downloaded).": "When signing in again, you can access encrypted chat history by restoring your key backup. You'll need your recovery passphrase or, if you didn't set a recovery passphrase, your recovery key (that you downloaded).",
|
||||||
|
|
|
@ -105,24 +105,12 @@ export const SETTINGS = {
|
||||||
supportedLevels: LEVELS_FEATURE,
|
supportedLevels: LEVELS_FEATURE,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
"feature_keybackup": {
|
|
||||||
isFeature: true,
|
|
||||||
displayName: _td("Backup of encryption keys to server"),
|
|
||||||
supportedLevels: LEVELS_FEATURE,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
"feature_state_counters": {
|
"feature_state_counters": {
|
||||||
isFeature: true,
|
isFeature: true,
|
||||||
displayName: _td("Render simple counters in room header"),
|
displayName: _td("Render simple counters in room header"),
|
||||||
supportedLevels: LEVELS_FEATURE,
|
supportedLevels: LEVELS_FEATURE,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
"feature_sas": {
|
|
||||||
isFeature: true,
|
|
||||||
displayName: _td("Two-way device verification using short text"),
|
|
||||||
supportedLevels: LEVELS_FEATURE,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
"MessageComposerInput.suggestEmoji": {
|
"MessageComposerInput.suggestEmoji": {
|
||||||
supportedLevels: LEVELS_ACCOUNT_SETTINGS,
|
supportedLevels: LEVELS_ACCOUNT_SETTINGS,
|
||||||
displayName: _td('Enable Emoji suggestions while typing'),
|
displayName: _td('Enable Emoji suggestions while typing'),
|
||||||
|
|
Loading…
Reference in a new issue