Convert cross-signing feature flag to setting

This is intended as a temporary measure until we're comfortable with removing the flag entirely.
This commit is contained in:
Travis Ralston 2020-04-15 13:18:42 -06:00
parent 2929bcf998
commit b4e2daaf46
24 changed files with 38 additions and 37 deletions

View file

@ -124,7 +124,7 @@ export default class DeviceListener {
const cli = MatrixClientPeg.get(); const cli = MatrixClientPeg.get();
if ( if (
!SettingsStore.isFeatureEnabled("feature_cross_signing") || !SettingsStore.getValue("feature_cross_signing") ||
!await cli.doesServerSupportUnstableFeature("org.matrix.e2e_cross_signing") !await cli.doesServerSupportUnstableFeature("org.matrix.e2e_cross_signing")
) return; ) return;

View file

@ -35,7 +35,7 @@ export default class KeyRequestHandler {
handleKeyRequest(keyRequest) { handleKeyRequest(keyRequest) {
// Ignore own device key requests if cross-signing lab enabled // Ignore own device key requests if cross-signing lab enabled
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (SettingsStore.getValue("feature_cross_signing")) {
return; return;
} }
@ -70,7 +70,7 @@ export default class KeyRequestHandler {
handleKeyRequestCancellation(cancellation) { handleKeyRequestCancellation(cancellation) {
// Ignore own device key requests if cross-signing lab enabled // Ignore own device key requests if cross-signing lab enabled
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (SettingsStore.getValue("feature_cross_signing")) {
return; return;
} }

View file

@ -77,7 +77,7 @@ export default class CreateKeyBackupDialog extends React.PureComponent {
async componentDidMount() { async componentDidMount() {
const cli = MatrixClientPeg.get(); const cli = MatrixClientPeg.get();
const secureSecretStorage = ( const secureSecretStorage = (
SettingsStore.isFeatureEnabled("feature_cross_signing") && SettingsStore.getValue("feature_cross_signing") &&
await cli.doesServerSupportUnstableFeature("org.matrix.e2e_cross_signing") await cli.doesServerSupportUnstableFeature("org.matrix.e2e_cross_signing")
); );
this.setState({ secureSecretStorage }); this.setState({ secureSecretStorage });

View file

@ -1506,7 +1506,7 @@ export default createReactClass({
}); });
cli.on("crypto.verification.request", request => { cli.on("crypto.verification.request", request => {
const isFlagOn = SettingsStore.isFeatureEnabled("feature_cross_signing"); const isFlagOn = SettingsStore.getValue("feature_cross_signing");
if (!isFlagOn && !request.channel.deviceId) { if (!isFlagOn && !request.channel.deviceId) {
request.cancel({code: "m.invalid_message", reason: "This client has cross-signing disabled"}); request.cancel({code: "m.invalid_message", reason: "This client has cross-signing disabled"});
@ -1556,7 +1556,7 @@ export default createReactClass({
// changing colour. More advanced behaviour will come once // changing colour. More advanced behaviour will come once
// we implement more settings. // we implement more settings.
cli.setGlobalErrorOnUnknownDevices( cli.setGlobalErrorOnUnknownDevices(
!SettingsStore.isFeatureEnabled("feature_cross_signing"), !SettingsStore.getValue("feature_cross_signing"),
); );
} }
}, },
@ -1921,10 +1921,10 @@ export default createReactClass({
if (masterKeyInStorage) { if (masterKeyInStorage) {
// Auto-enable cross-signing for the new session when key found in // Auto-enable cross-signing for the new session when key found in
// secret storage. // secret storage.
SettingsStore.setFeatureEnabled("feature_cross_signing", true); SettingsStore.setValue("feature_cross_signing", null, SettingLevel.DEVICE, true);
this.setStateForNewView({ view: VIEWS.COMPLETE_SECURITY }); this.setStateForNewView({ view: VIEWS.COMPLETE_SECURITY });
} else if ( } else if (
SettingsStore.isFeatureEnabled("feature_cross_signing") && SettingsStore.getValue("feature_cross_signing") &&
await cli.doesServerSupportUnstableFeature("org.matrix.e2e_cross_signing") await cli.doesServerSupportUnstableFeature("org.matrix.e2e_cross_signing")
) { ) {
// This will only work if the feature is set to 'enable' in the config, // This will only work if the feature is set to 'enable' in the config,

View file

@ -219,7 +219,7 @@ export default class RightPanel extends React.Component {
break; break;
case RIGHT_PANEL_PHASES.RoomMemberInfo: case RIGHT_PANEL_PHASES.RoomMemberInfo:
case RIGHT_PANEL_PHASES.EncryptionPanel: case RIGHT_PANEL_PHASES.EncryptionPanel:
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (SettingsStore.getValue("feature_cross_signing")) {
const onClose = () => { const onClose = () => {
dis.dispatch({ dis.dispatch({
action: "view_user", action: "view_user",
@ -246,7 +246,7 @@ export default class RightPanel extends React.Component {
panel = <ThirdPartyMemberInfo event={this.state.event} key={this.props.roomId} />; panel = <ThirdPartyMemberInfo event={this.state.event} key={this.props.roomId} />;
break; break;
case RIGHT_PANEL_PHASES.GroupMemberInfo: case RIGHT_PANEL_PHASES.GroupMemberInfo:
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (SettingsStore.getValue("feature_cross_signing")) {
const onClose = () => { const onClose = () => {
dis.dispatch({ dis.dispatch({
action: "view_user", action: "view_user",

View file

@ -822,7 +822,7 @@ export default createReactClass({
}); });
return; return;
} }
if (!SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (!SettingsStore.getValue("feature_cross_signing")) {
room.hasUnverifiedDevices().then((hasUnverifiedDevices) => { room.hasUnverifiedDevices().then((hasUnverifiedDevices) => {
this.setState({ this.setState({
e2eStatus: hasUnverifiedDevices ? "warning" : "verified", e2eStatus: hasUnverifiedDevices ? "warning" : "verified",

View file

@ -65,7 +65,7 @@ export default createReactClass({
createOpts.creation_content = {'m.federate': false}; createOpts.creation_content = {'m.federate': false};
} }
if (!this.state.isPublic && SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (!this.state.isPublic && SettingsStore.getValue("feature_cross_signing")) {
opts.encryption = this.state.isEncrypted; opts.encryption = this.state.isEncrypted;
} }
@ -192,7 +192,7 @@ export default createReactClass({
} }
let e2eeSection; let e2eeSection;
if (!this.state.isPublic && SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (!this.state.isPublic && SettingsStore.getValue("feature_cross_signing")) {
e2eeSection = <React.Fragment> e2eeSection = <React.Fragment>
<LabelledToggleSwitch label={ _t("Enable end-to-end encryption")} onChange={this.onEncryptedChange} value={this.state.isEncrypted} /> <LabelledToggleSwitch label={ _t("Enable end-to-end encryption")} onChange={this.onEncryptedChange} value={this.state.isEncrypted} />
<p>{ _t("You cant disable this later. Bridges & most bots wont work yet.") }</p> <p>{ _t("You cant disable this later. Bridges & most bots wont work yet.") }</p>

View file

@ -131,7 +131,7 @@ export default class DeviceVerifyDialog extends React.Component {
} else { } else {
this._verifier = request.verifier; this._verifier = request.verifier;
} }
} else if (verifyingOwnDevice && SettingsStore.isFeatureEnabled("feature_cross_signing")) { } else if (verifyingOwnDevice && SettingsStore.getValue("feature_cross_signing")) {
this._request = await client.requestVerification(this.props.userId, [ this._request = await client.requestVerification(this.props.userId, [
verificationMethods.SAS, verificationMethods.SAS,
SHOW_QR_CODE_METHOD, SHOW_QR_CODE_METHOD,

View file

@ -574,7 +574,7 @@ export default class InviteDialog extends React.PureComponent {
const createRoomOptions = {inlineErrors: true}; const createRoomOptions = {inlineErrors: true};
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (SettingsStore.getValue("feature_cross_signing")) {
// Check whether all users have uploaded device keys before. // Check whether all users have uploaded device keys before.
// If so, enable encryption in the new room. // If so, enable encryption in the new room.
const client = MatrixClientPeg.get(); const client = MatrixClientPeg.get();

View file

@ -49,7 +49,7 @@ const OptionsButton = ({mxEvent, getTile, getReplyThread, permalinkCreator, onFo
}; };
let e2eInfoCallback = null; let e2eInfoCallback = null;
if (mxEvent.isEncrypted() && !SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (mxEvent.isEncrypted() && !SettingsStore.getValue("feature_cross_signing")) {
e2eInfoCallback = onCryptoClick; e2eInfoCallback = onCryptoClick;
} }

View file

@ -63,7 +63,7 @@ const _disambiguateDevices = (devices) => {
}; };
export const getE2EStatus = (cli, userId, devices) => { export const getE2EStatus = (cli, userId, devices) => {
if (!SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (!SettingsStore.getValue("feature_cross_signing")) {
const hasUnverifiedDevice = devices.some((device) => device.isUnverified()); const hasUnverifiedDevice = devices.some((device) => device.isUnverified());
return hasUnverifiedDevice ? "warning" : "verified"; return hasUnverifiedDevice ? "warning" : "verified";
} }
@ -111,7 +111,7 @@ async function openDMForUser(matrixClient, userId) {
dmUserId: userId, dmUserId: userId,
}; };
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (SettingsStore.getValue("feature_cross_signing")) {
// Check whether all users have uploaded device keys before. // Check whether all users have uploaded device keys before.
// If so, enable encryption in the new room. // If so, enable encryption in the new room.
const usersToDevicesMap = await matrixClient.downloadKeys([userId]); const usersToDevicesMap = await matrixClient.downloadKeys([userId]);
@ -166,7 +166,7 @@ function DeviceItem({userId, device}) {
// cross-signing so that other users can then safely trust you. // cross-signing so that other users can then safely trust you.
// For other people's devices, the more general verified check that // For other people's devices, the more general verified check that
// includes locally verified devices can be used. // includes locally verified devices can be used.
const isVerified = (isMe && SettingsStore.isFeatureEnabled("feature_cross_signing")) ? const isVerified = (isMe && SettingsStore.getValue("feature_cross_signing")) ?
deviceTrust.isCrossSigningVerified() : deviceTrust.isCrossSigningVerified() :
deviceTrust.isVerified(); deviceTrust.isVerified();
@ -237,7 +237,7 @@ function DevicesSection({devices, userId, loading}) {
// cross-signing so that other users can then safely trust you. // cross-signing so that other users can then safely trust you.
// For other people's devices, the more general verified check that // For other people's devices, the more general verified check that
// includes locally verified devices can be used. // includes locally verified devices can be used.
const isVerified = (isMe && SettingsStore.isFeatureEnabled("feature_cross_signing")) ? const isVerified = (isMe && SettingsStore.getValue("feature_cross_signing")) ?
deviceTrust.isCrossSigningVerified() : deviceTrust.isCrossSigningVerified() :
deviceTrust.isVerified(); deviceTrust.isVerified();
@ -1298,7 +1298,7 @@ const BasicUserInfo = ({room, member, groupId, devices, isRoomEncrypted}) => {
const userTrust = cli.checkUserTrust(member.userId); const userTrust = cli.checkUserTrust(member.userId);
const userVerified = userTrust.isCrossSigningVerified(); const userVerified = userTrust.isCrossSigningVerified();
const isMe = member.userId === cli.getUserId(); const isMe = member.userId === cli.getUserId();
const canVerify = SettingsStore.isFeatureEnabled("feature_cross_signing") && const canVerify = SettingsStore.getValue("feature_cross_signing") &&
homeserverSupportsCrossSigning && !userVerified && !isMe; homeserverSupportsCrossSigning && !userVerified && !isMe;
const setUpdating = (updating) => { const setUpdating = (updating) => {

View file

@ -20,7 +20,7 @@ import PropTypes from "prop-types";
import classNames from 'classnames'; import classNames from 'classnames';
import {_t, _td} from '../../../languageHandler'; import {_t, _td} from '../../../languageHandler';
import {useFeatureEnabled} from "../../../hooks/useSettings"; import {useFeatureEnabled, useSettingValue} from "../../../hooks/useSettings";
import AccessibleButton from "../elements/AccessibleButton"; import AccessibleButton from "../elements/AccessibleButton";
import Tooltip from "../elements/Tooltip"; import Tooltip from "../elements/Tooltip";
@ -62,7 +62,7 @@ const E2EIcon = ({isUser, status, className, size, onClick, hideTooltip}) => {
}, className); }, className);
let e2eTitle; let e2eTitle;
const crossSigning = useFeatureEnabled("feature_cross_signing"); const crossSigning = useSettingValue("feature_cross_signing");
if (crossSigning && isUser) { if (crossSigning && isUser) {
e2eTitle = crossSigningUserTitles[status]; e2eTitle = crossSigningUserTitles[status];
} else if (crossSigning && !isUser) { } else if (crossSigning && !isUser) {

View file

@ -323,7 +323,7 @@ export default createReactClass({
// If cross-signing is off, the old behaviour is to scream at the user // If cross-signing is off, the old behaviour is to scream at the user
// as if they've done something wrong, which they haven't // as if they've done something wrong, which they haven't
if (!SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (!SettingsStore.getValue("feature_cross_signing")) {
this.setState({ this.setState({
verified: E2E_STATE.WARNING, verified: E2E_STATE.WARNING,
}, this.props.onHeightChanged); }, this.props.onHeightChanged);

View file

@ -56,7 +56,7 @@ export default createReactClass({
} }
} }
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (SettingsStore.getValue("feature_cross_signing")) {
const { roomId } = this.props.member; const { roomId } = this.props.member;
if (roomId) { if (roomId) {
const isRoomEncrypted = cli.isRoomEncrypted(roomId); const isRoomEncrypted = cli.isRoomEncrypted(roomId);

View file

@ -270,7 +270,7 @@ export default class MessageComposer extends React.Component {
} }
renderPlaceholderText() { renderPlaceholderText() {
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (SettingsStore.getValue("feature_cross_signing")) {
if (this.state.isQuoting) { if (this.state.isQuoting) {
if (this.props.e2eStatus) { if (this.props.e2eStatus) {
return _t('Send an encrypted reply…'); return _t('Send an encrypted reply…');

View file

@ -364,7 +364,7 @@ export default class RoomBreadcrumbs extends React.Component {
} }
let dmIndicator; let dmIndicator;
if (this._isDmRoom(r.room) && !SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (this._isDmRoom(r.room) && !SettingsStore.getValue("feature_cross_signing")) {
dmIndicator = <img dmIndicator = <img
src={require("../../../../res/img/icon_person.svg")} src={require("../../../../res/img/icon_person.svg")}
className="mx_RoomBreadcrumbs_dmIndicator" className="mx_RoomBreadcrumbs_dmIndicator"

View file

@ -168,7 +168,7 @@ export default createReactClass({
const joinRule = joinRules && joinRules.getContent().join_rule; const joinRule = joinRules && joinRules.getContent().join_rule;
let privateIcon; let privateIcon;
// Don't show an invite-only icon for DMs. Users know they're invite-only. // Don't show an invite-only icon for DMs. Users know they're invite-only.
if (!dmUserId && SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (!dmUserId && SettingsStore.getValue("feature_cross_signing")) {
if (joinRule == "invite") { if (joinRule == "invite") {
privateIcon = <InviteOnlyIcon />; privateIcon = <InviteOnlyIcon />;
} }

View file

@ -155,7 +155,7 @@ export default createReactClass({
if (!cli.isRoomEncrypted(this.props.room.roomId)) { if (!cli.isRoomEncrypted(this.props.room.roomId)) {
return; return;
} }
if (!SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (!SettingsStore.getValue("feature_cross_signing")) {
return; return;
} }
@ -488,7 +488,7 @@ export default createReactClass({
let dmOnline; let dmOnline;
/* Post-cross-signing we don't show DM indicators at all, instead relying on user /* Post-cross-signing we don't show DM indicators at all, instead relying on user
context to let them know when that is. */ context to let them know when that is. */
if (dmUserId && !SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (dmUserId && !SettingsStore.getValue("feature_cross_signing")) {
dmIndicator = <img dmIndicator = <img
src={require("../../../../res/img/icon_person.svg")} src={require("../../../../res/img/icon_person.svg")}
className="mx_RoomTile_dm" className="mx_RoomTile_dm"
@ -532,7 +532,7 @@ export default createReactClass({
} }
let privateIcon = null; let privateIcon = null;
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (SettingsStore.getValue("feature_cross_signing")) {
if (this.state.joinRule == "invite" && !dmUserId) { if (this.state.joinRule == "invite" && !dmUserId) {
privateIcon = <InviteOnlyIcon collapsedPanel={this.props.collapsed} />; privateIcon = <InviteOnlyIcon collapsedPanel={this.props.collapsed} />;
} }

View file

@ -326,7 +326,7 @@ export default class KeyBackupPanel extends React.PureComponent {
</AccessibleButton> </AccessibleButton>
</div> </div>
); );
if (this.state.backupKeyStored && !SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (this.state.backupKeyStored && !SettingsStore.getValue("feature_cross_signing")) {
buttonRow = <p> {_t( buttonRow = <p> {_t(
"Backup key stored in secret storage, but this feature is not " + "Backup key stored in secret storage, but this feature is not " +
"enabled on this session. Please enable cross-signing in Labs to " + "enabled on this session. Please enable cross-signing in Labs to " +

View file

@ -62,6 +62,7 @@ export default class LabsUserSettingsTab extends React.Component {
</div> </div>
<div className="mx_SettingsTab_section"> <div className="mx_SettingsTab_section">
{flags} {flags}
<SettingsFlag name={"feature_cross_signing"} level={SettingLevel.DEVICE} />
<SettingsFlag name={"enableWidgetScreenshots"} level={SettingLevel.ACCOUNT} /> <SettingsFlag name={"enableWidgetScreenshots"} level={SettingLevel.ACCOUNT} />
<SettingsFlag name={"showHiddenEventsInTimeline"} level={SettingLevel.DEVICE} /> <SettingsFlag name={"showHiddenEventsInTimeline"} level={SettingLevel.DEVICE} />
<SettingsFlag name={"lowBandwidth"} level={SettingLevel.DEVICE} /> <SettingsFlag name={"lowBandwidth"} level={SettingLevel.DEVICE} />

View file

@ -270,7 +270,7 @@ export default class SecurityUserSettingsTab extends React.Component {
// can remove this. // can remove this.
const CrossSigningPanel = sdk.getComponent('views.settings.CrossSigningPanel'); const CrossSigningPanel = sdk.getComponent('views.settings.CrossSigningPanel');
let crossSigning; let crossSigning;
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (SettingsStore.getValue("feature_cross_signing")) {
crossSigning = ( crossSigning = (
<div className='mx_SettingsTab_section'> <div className='mx_SettingsTab_section'>
<span className="mx_SettingsTab_subheading">{_t("Cross-signing")}</span> <span className="mx_SettingsTab_subheading">{_t("Cross-signing")}</span>

View file

@ -227,7 +227,7 @@ export async function ensureDMExists(client, userId) {
roomId = existingDMRoom.roomId; roomId = existingDMRoom.roomId;
} else { } else {
let encryption; let encryption;
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (SettingsStore.getValue("feature_cross_signing")) {
encryption = canEncryptToAllUsers(client, [userId]); encryption = canEncryptToAllUsers(client, [userId]);
} }
roomId = await createRoom({encryption, dmUserId: userId, spinner: false, andView: false}); roomId = await createRoom({encryption, dmUserId: userId, spinner: false, andView: false});

View file

@ -152,10 +152,10 @@ export const SETTINGS = {
default: null, default: null,
}, },
"feature_cross_signing": { "feature_cross_signing": {
isFeature: true, //isFeature: true,
displayName: _td("Enable cross-signing to verify per-user instead of per-session (in development)"), displayName: _td("Enable cross-signing to verify per-user instead of per-session (in development)"),
supportedLevels: LEVELS_FEATURE, supportedLevels: LEVELS_FEATURE,
default: false, default: true,
}, },
"feature_event_indexing": { "feature_event_indexing": {
isFeature: true, isFeature: true,

View file

@ -27,7 +27,7 @@ import {verificationMethods} from 'matrix-js-sdk/src/crypto';
async function enable4SIfNeeded() { async function enable4SIfNeeded() {
const cli = MatrixClientPeg.get(); const cli = MatrixClientPeg.get();
if (!cli.isCryptoEnabled() || !SettingsStore.isFeatureEnabled("feature_cross_signing")) { if (!cli.isCryptoEnabled() || !SettingsStore.getValue("feature_cross_signing")) {
return false; return false;
} }
const usk = cli.getCrossSigningId("user_signing"); const usk = cli.getCrossSigningId("user_signing");