2017-05-17 18:40:48 +03:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
|
|
|
Copyright 2017 Vector Creations 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';
|
2017-05-22 14:01:09 +03:00
|
|
|
import * as FormattingUtils from '../../../utils/FormattingUtils';
|
2017-05-30 17:09:57 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2017-05-17 18:40:48 +03:00
|
|
|
|
|
|
|
export default function DeviceVerifyDialog(props) {
|
|
|
|
const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
|
|
|
|
|
2017-05-22 14:01:09 +03:00
|
|
|
const key = FormattingUtils.formatCryptoKey(props.device.getFingerprint());
|
2017-05-17 18:40:48 +03:00
|
|
|
const body = (
|
|
|
|
<div>
|
|
|
|
<p>
|
2017-09-28 13:21:06 +03:00
|
|
|
{ _t("To verify that this device can be trusted, please contact its " +
|
2017-05-30 17:09:57 +03:00
|
|
|
"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 " +
|
2017-09-28 13:21:06 +03:00
|
|
|
"for this device matches the key below:") }
|
2017-05-17 18:40:48 +03:00
|
|
|
</p>
|
|
|
|
<div className="mx_UserSettings_cryptoSection">
|
|
|
|
<ul>
|
2017-09-28 13:21:06 +03:00
|
|
|
<li><label>{ _t("Device name") }:</label> <span>{ props.device.getDisplayName() }</span></li>
|
|
|
|
<li><label>{ _t("Device ID") }:</label> <span><code>{ props.device.deviceId }</code></span></li>
|
|
|
|
<li><label>{ _t("Device key") }:</label> <span><code><b>{ key }</b></code></span></li>
|
2017-05-17 18:40:48 +03:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<p>
|
2017-09-28 13:21:06 +03:00
|
|
|
{ _t("If it matches, press the verify button below. " +
|
2017-05-30 17:09:57 +03:00
|
|
|
"If it doesn't, then someone else is intercepting this device " +
|
2017-09-28 13:21:06 +03:00
|
|
|
"and you probably want to press the blacklist button instead.") }
|
2017-05-17 18:40:48 +03:00
|
|
|
</p>
|
|
|
|
<p>
|
2017-09-28 13:21:06 +03:00
|
|
|
{ _t("In future this verification process will be more sophisticated.") }
|
2017-05-17 18:40:48 +03:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
function onFinished(confirm) {
|
|
|
|
if (confirm) {
|
|
|
|
MatrixClientPeg.get().setDeviceVerified(
|
|
|
|
props.userId, props.device.deviceId, true,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
props.onFinished(confirm);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<QuestionDialog
|
2017-05-30 17:09:57 +03:00
|
|
|
title={_t("Verify device")}
|
2017-05-17 18:40:48 +03:00
|
|
|
description={body}
|
2017-05-30 17:09:57 +03:00
|
|
|
button={_t("I verify that the keys match")}
|
2017-05-17 18:40:48 +03:00
|
|
|
onFinished={onFinished}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
DeviceVerifyDialog.propTypes = {
|
|
|
|
userId: React.PropTypes.string.isRequired,
|
|
|
|
device: React.PropTypes.object.isRequired,
|
|
|
|
onFinished: React.PropTypes.func.isRequired,
|
|
|
|
};
|