mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
basic verification UI
This commit is contained in:
parent
d8770b2b41
commit
8bda0bb095
@ -72,6 +72,7 @@ module.exports = React.createClass({
|
|||||||
getInitialState: function() {
|
getInitialState: function() {
|
||||||
return {
|
return {
|
||||||
avatarUrl: null,
|
avatarUrl: null,
|
||||||
|
myDevice: null,
|
||||||
threePids: [],
|
threePids: [],
|
||||||
phase: "UserSettings.LOADING", // LOADING, DISPLAY
|
phase: "UserSettings.LOADING", // LOADING, DISPLAY
|
||||||
email_add_pending: false,
|
email_add_pending: false,
|
||||||
@ -342,14 +343,17 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
var client = MatrixClientPeg.get();
|
var client = MatrixClientPeg.get();
|
||||||
var deviceId = client.deviceId;
|
var deviceId = client.deviceId;
|
||||||
var olmKey = client.getDeviceEd25519Key() || "<not supported>";
|
var identityKey = client.getDeviceEd25519Key() || "<not supported>";
|
||||||
|
|
||||||
|
var myDevice = client.getStoredDevicesForUser(MatrixClientPeg.get().credentials.userId)[0];
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<h3>Cryptography</h3>
|
<h3>Cryptography</h3>
|
||||||
<div className="mx_UserSettings_section">
|
<div className="mx_UserSettings_section mx_UserSettings_cryptoSection">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Device ID: {deviceId}</li>
|
<li><label>Device name:</label> <span>{ myDevice.getDisplayName() }</span></li>
|
||||||
<li>Device key: {olmKey}</li>
|
<li><label>Device ID:</label> <span><code>{deviceId}</code></span></li>
|
||||||
|
<li><label>Device key:</label> <span><code><b>{identityKey}</b></code></span></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -364,7 +368,7 @@ module.exports = React.createClass({
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<h3>Devices</h3>
|
<h3>Devices</h3>
|
||||||
<DevicesPanel className="mx_UserSettings_section" />
|
<DevicesPanel className="mx_UserSettings_section"/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
@ -16,6 +16,8 @@ limitations under the License.
|
|||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import MatrixClientPeg from '../../../MatrixClientPeg';
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
||||||
|
import sdk from '../../../index';
|
||||||
|
import Modal from '../../../Modal';
|
||||||
|
|
||||||
export default class MemberDeviceInfo extends React.Component {
|
export default class MemberDeviceInfo extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
@ -27,10 +29,44 @@ export default class MemberDeviceInfo extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onVerifyClick() {
|
onVerifyClick() {
|
||||||
|
var QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
|
||||||
|
Modal.createDialog(QuestionDialog, {
|
||||||
|
title: "Verify device",
|
||||||
|
description: (
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
To verify that this device can be trusted, please contact its
|
||||||
|
owner using some other means (e.g. in person or a phone call)
|
||||||
|
and ask them whether the key they see in their User Settings
|
||||||
|
for this device matches the key below:
|
||||||
|
</p>
|
||||||
|
<div className="mx_UserSettings_cryptoSection">
|
||||||
|
<ul>
|
||||||
|
<li><label>Device name:</label> <span>{ this.props.device.getDisplayName() }</span></li>
|
||||||
|
<li><label>Device ID:</label> <span><code>{ this.props.device.deviceId}</code></span></li>
|
||||||
|
<li><label>Device key:</label> <span><code><b>{ this.props.device.getFingerprint() }</b></code></span></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
If it matches, press the verify button below.
|
||||||
|
If it doesn't, then someone else is intercepting this device
|
||||||
|
and you probably want to press the block button instead.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
In future this verification process will be more sophisticated.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
),
|
||||||
|
button: "I verify that the keys match",
|
||||||
|
onFinished: confirm=>{
|
||||||
|
if (confirm) {
|
||||||
MatrixClientPeg.get().setDeviceVerified(
|
MatrixClientPeg.get().setDeviceVerified(
|
||||||
this.props.userId, this.props.device.deviceId, true
|
this.props.userId, this.props.device.deviceId, true
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
onUnverifyClick() {
|
onUnverifyClick() {
|
||||||
MatrixClientPeg.get().setDeviceVerified(
|
MatrixClientPeg.get().setDeviceVerified(
|
||||||
@ -104,12 +140,9 @@ export default class MemberDeviceInfo extends React.Component {
|
|||||||
var info;
|
var info;
|
||||||
if (!this.props.hideInfo) {
|
if (!this.props.hideInfo) {
|
||||||
info = (
|
info = (
|
||||||
<div>
|
<div className="mx_MemberDeviceInfo_deviceInfo">
|
||||||
<div className="mx_MemberDeviceInfo_deviceId">{deviceName}</div>
|
<div className="mx_MemberDeviceInfo_deviceId">{deviceName}</div>
|
||||||
{indicator}
|
{indicator}
|
||||||
<div className="mx_MemberDeviceInfo_deviceKey">
|
|
||||||
{this.props.device.getFingerprint()}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -137,3 +137,8 @@ export default class DevicesPanel extends React.Component {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DevicesPanel.displayName = 'MemberDeviceInfo';
|
||||||
|
DevicesPanel.propTypes = {
|
||||||
|
className: React.PropTypes.string,
|
||||||
|
};
|
||||||
|
@ -107,8 +107,13 @@ export default class DevicesPanelEntry extends React.Component {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var myDeviceClass = '';
|
||||||
|
if (device.device_id === MatrixClientPeg.get().getDeviceId()) {
|
||||||
|
myDeviceClass = " mx_DevicesPanel_myDevice";
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_DevicesPanel_device">
|
<div className={ "mx_DevicesPanel_device" + myDeviceClass }>
|
||||||
<div className="mx_DevicesPanel_deviceId">
|
<div className="mx_DevicesPanel_deviceId">
|
||||||
{device.device_id}
|
{device.device_id}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user