2016-09-22 21:23:34 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
|
|
|
import sdk from '../../../index';
|
|
|
|
import Modal from '../../../Modal';
|
|
|
|
|
|
|
|
export default React.createClass({
|
|
|
|
displayName: 'DeviceVerifyButtons',
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
userId: React.PropTypes.string.isRequired,
|
|
|
|
device: React.PropTypes.object.isRequired,
|
|
|
|
},
|
|
|
|
|
|
|
|
onVerifyClick: function() {
|
|
|
|
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 doesnt, then someone else is intercepting this device
|
2016-11-29 21:25:26 +03:00
|
|
|
and you probably want to press the blacklist button instead.
|
2016-09-22 21:23:34 +03:00
|
|
|
</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
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
onUnverifyClick: function() {
|
|
|
|
MatrixClientPeg.get().setDeviceVerified(
|
|
|
|
this.props.userId, this.props.device.deviceId, false
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2016-11-29 21:25:26 +03:00
|
|
|
onBlacklistClick: function() {
|
2016-09-22 21:23:34 +03:00
|
|
|
MatrixClientPeg.get().setDeviceBlocked(
|
|
|
|
this.props.userId, this.props.device.deviceId, true
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2016-11-29 21:25:26 +03:00
|
|
|
onUnblacklistClick: function() {
|
2016-09-22 21:23:34 +03:00
|
|
|
MatrixClientPeg.get().setDeviceBlocked(
|
|
|
|
this.props.userId, this.props.device.deviceId, false
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2016-11-29 21:25:26 +03:00
|
|
|
var blacklistButton = null, verifyButton = null;
|
2016-09-22 21:23:34 +03:00
|
|
|
|
|
|
|
if (this.props.device.isBlocked()) {
|
2016-11-29 21:25:26 +03:00
|
|
|
blacklistButton = (
|
|
|
|
<button className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_unblacklist"
|
|
|
|
onClick={this.onUnblacklistClick}>
|
|
|
|
Unblacklist
|
2016-09-22 21:23:34 +03:00
|
|
|
</button>
|
|
|
|
);
|
|
|
|
} else {
|
2016-11-29 21:25:26 +03:00
|
|
|
blacklistButton = (
|
|
|
|
<button className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_blacklist"
|
|
|
|
onClick={this.onBlacklistClick}>
|
|
|
|
Blacklist
|
2016-09-22 21:23:34 +03:00
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.props.device.isVerified()) {
|
|
|
|
verifyButton = (
|
|
|
|
<button className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_unverify"
|
|
|
|
onClick={this.onUnverifyClick}>
|
|
|
|
Unverify
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
verifyButton = (
|
|
|
|
<button className="mx_MemberDeviceInfo_textButton mx_MemberDeviceInfo_verify"
|
|
|
|
onClick={this.onVerifyClick}>
|
2016-11-29 21:25:26 +03:00
|
|
|
Verify...
|
2016-09-22 21:23:34 +03:00
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// mx_MemberDeviceInfo because the vector's CSS on EncryptedEventDialog is awful
|
|
|
|
return (
|
|
|
|
<div className="mx_MemberDeviceInfo mx_DeviceVerifyButtons" >
|
|
|
|
{ verifyButton }
|
2016-11-29 21:25:26 +03:00
|
|
|
{ blacklistButton }
|
2016-09-22 21:23:34 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|