2016-06-08 15:13:41 +03:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket 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.
|
|
|
|
*/
|
|
|
|
|
2016-09-04 16:01:19 +03:00
|
|
|
import React from 'react';
|
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
2016-09-15 03:55:51 +03:00
|
|
|
import sdk from '../../../index';
|
|
|
|
import Modal from '../../../Modal';
|
2016-06-08 15:13:41 +03:00
|
|
|
|
2016-09-04 16:01:19 +03:00
|
|
|
export default class MemberDeviceInfo extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.onVerifyClick = this.onVerifyClick.bind(this);
|
|
|
|
this.onUnverifyClick = this.onUnverifyClick.bind(this);
|
|
|
|
this.onBlockClick = this.onBlockClick.bind(this);
|
|
|
|
this.onUnblockClick = this.onUnblockClick.bind(this);
|
|
|
|
}
|
2016-06-08 15:13:41 +03:00
|
|
|
|
2016-09-04 16:01:19 +03:00
|
|
|
onVerifyClick() {
|
2016-09-15 03:55:51 +03:00
|
|
|
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(
|
|
|
|
this.props.userId, this.props.device.deviceId, true
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
2016-09-04 16:01:19 +03:00
|
|
|
}
|
2016-06-09 21:07:01 +03:00
|
|
|
|
2016-09-04 16:01:19 +03:00
|
|
|
onUnverifyClick() {
|
2016-06-09 21:07:01 +03:00
|
|
|
MatrixClientPeg.get().setDeviceVerified(
|
2016-09-04 23:49:32 +03:00
|
|
|
this.props.userId, this.props.device.deviceId, false
|
2016-06-09 21:07:01 +03:00
|
|
|
);
|
2016-09-04 16:01:19 +03:00
|
|
|
}
|
2016-06-08 15:13:41 +03:00
|
|
|
|
2016-09-04 16:01:19 +03:00
|
|
|
onBlockClick() {
|
2016-06-23 19:27:23 +03:00
|
|
|
MatrixClientPeg.get().setDeviceBlocked(
|
2016-09-04 23:49:32 +03:00
|
|
|
this.props.userId, this.props.device.deviceId, true
|
2016-06-23 19:27:23 +03:00
|
|
|
);
|
2016-09-04 16:01:19 +03:00
|
|
|
}
|
2016-06-23 19:27:23 +03:00
|
|
|
|
2016-09-04 16:01:19 +03:00
|
|
|
onUnblockClick() {
|
2016-06-23 19:27:23 +03:00
|
|
|
MatrixClientPeg.get().setDeviceBlocked(
|
2016-09-04 23:49:32 +03:00
|
|
|
this.props.userId, this.props.device.deviceId, false
|
2016-06-23 19:27:23 +03:00
|
|
|
);
|
2016-09-04 16:01:19 +03:00
|
|
|
}
|
2016-06-23 19:27:23 +03:00
|
|
|
|
2016-09-04 16:01:19 +03:00
|
|
|
render() {
|
2016-09-15 04:44:55 +03:00
|
|
|
if (!this.props.device) {
|
|
|
|
return <div className="mx_MemberDeviceInfo"/>;
|
|
|
|
}
|
|
|
|
|
2016-06-23 19:27:23 +03:00
|
|
|
var indicator = null, blockButton = null, verifyButton = null;
|
2016-09-04 23:49:32 +03:00
|
|
|
if (this.props.device.isBlocked()) {
|
2016-06-23 19:27:23 +03:00
|
|
|
blockButton = (
|
2016-09-13 01:42:24 +03:00
|
|
|
<button className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_unblock"
|
2016-06-23 19:27:23 +03:00
|
|
|
onClick={this.onUnblockClick}>
|
|
|
|
Unblock
|
2016-09-13 01:42:24 +03:00
|
|
|
</button>
|
2016-06-23 19:27:23 +03:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
blockButton = (
|
2016-09-13 01:42:24 +03:00
|
|
|
<button className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_block"
|
2016-06-23 19:27:23 +03:00
|
|
|
onClick={this.onBlockClick}>
|
|
|
|
Block
|
2016-09-13 01:42:24 +03:00
|
|
|
</button>
|
2016-06-08 15:13:41 +03:00
|
|
|
);
|
2016-06-23 19:27:23 +03:00
|
|
|
}
|
|
|
|
|
2016-09-04 23:49:32 +03:00
|
|
|
if (this.props.device.isVerified()) {
|
2016-06-23 19:27:23 +03:00
|
|
|
verifyButton = (
|
2016-09-13 01:42:24 +03:00
|
|
|
<button className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_unverify"
|
2016-06-09 21:07:01 +03:00
|
|
|
onClick={this.onUnverifyClick}>
|
|
|
|
Unverify
|
2016-09-13 01:42:24 +03:00
|
|
|
</button>
|
2016-06-09 21:07:01 +03:00
|
|
|
);
|
2016-06-08 15:13:41 +03:00
|
|
|
} else {
|
2016-06-23 19:27:23 +03:00
|
|
|
verifyButton = (
|
2016-09-13 01:42:24 +03:00
|
|
|
<button className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_verify"
|
2016-06-08 15:13:41 +03:00
|
|
|
onClick={this.onVerifyClick}>
|
|
|
|
Verify
|
2016-09-13 01:42:24 +03:00
|
|
|
</button>
|
2016-06-08 15:13:41 +03:00
|
|
|
);
|
|
|
|
}
|
2016-06-23 19:27:23 +03:00
|
|
|
|
2016-09-15 04:44:55 +03:00
|
|
|
if (!this.props.hideInfo) {
|
|
|
|
if (this.props.device.isBlocked()) {
|
|
|
|
indicator = (
|
|
|
|
<div className="mx_MemberDeviceInfo_blocked">
|
|
|
|
<img src="img/e2e-blocked.svg" width="12" height="12" style={{ marginLeft: "-1px" }} alt="Blocked"/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else if (this.props.device.isVerified()) {
|
|
|
|
indicator = (
|
|
|
|
<div className="mx_MemberDeviceInfo_verified">
|
|
|
|
<img src="img/e2e-verified.svg" width="10" height="12" alt="Verified"/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
indicator = (
|
|
|
|
<div className="mx_MemberDeviceInfo_unverified">
|
|
|
|
<img src="img/e2e-warning.svg" width="15" height="12" style={{ marginLeft: "-2px" }} alt="Unverified"/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-06-23 19:27:23 +03:00
|
|
|
|
2016-09-17 22:12:56 +03:00
|
|
|
var deviceName = this.props.device.ambiguous ?
|
|
|
|
(this.props.device.getDisplayName() ? this.props.device.getDisplayName() : "") + " (" + this.props.device.deviceId + ")" :
|
|
|
|
this.props.device.getDisplayName();
|
2016-08-03 16:18:09 +03:00
|
|
|
|
2016-09-15 04:44:55 +03:00
|
|
|
var info = (
|
2016-09-17 22:12:56 +03:00
|
|
|
<div className="mx_MemberDeviceInfo_deviceInfo">
|
2016-09-15 04:44:55 +03:00
|
|
|
<div className="mx_MemberDeviceInfo_deviceId">{deviceName}{indicator}</div>
|
2016-09-13 01:42:24 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-06-08 15:13:41 +03:00
|
|
|
return (
|
2016-09-15 04:44:55 +03:00
|
|
|
<div className="mx_MemberDeviceInfo">
|
2016-09-13 01:42:24 +03:00
|
|
|
{ info }
|
|
|
|
{ verifyButton }
|
|
|
|
{ blockButton }
|
2016-06-08 15:13:41 +03:00
|
|
|
</div>
|
|
|
|
);
|
2016-09-04 16:01:19 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
MemberDeviceInfo.displayName = 'MemberDeviceInfo';
|
|
|
|
MemberDeviceInfo.propTypes = {
|
|
|
|
userId: React.PropTypes.string.isRequired,
|
|
|
|
device: React.PropTypes.object.isRequired,
|
2016-09-13 01:42:24 +03:00
|
|
|
hideInfo: React.PropTypes.bool,
|
2016-09-04 16:01:19 +03:00
|
|
|
};
|