2019-12-10 19:53:51 +03:00
|
|
|
/*
|
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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';
|
2019-12-16 20:16:22 +03:00
|
|
|
import EncryptionInfo from "./EncryptionInfo";
|
|
|
|
import VerificationPanel from "./VerificationPanel";
|
|
|
|
import MatrixClientPeg from "../../../MatrixClientPeg";
|
2019-12-19 19:43:10 +03:00
|
|
|
import {ensureDMExists} from "../../../createRoom";
|
2019-12-10 19:53:51 +03:00
|
|
|
|
|
|
|
export default class EncryptionPanel extends React.PureComponent {
|
2019-12-19 19:08:53 +03:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {};
|
|
|
|
}
|
|
|
|
|
2019-12-10 19:53:51 +03:00
|
|
|
render() {
|
2019-12-16 20:16:22 +03:00
|
|
|
const request = this.props.verificationRequest || this.state.verificationRequest;
|
|
|
|
const {member} = this.props;
|
2019-12-10 19:53:51 +03:00
|
|
|
if (request) {
|
2019-12-20 23:31:07 +03:00
|
|
|
return <VerificationPanel request={request} key={request.channel.transactionId} />;
|
2019-12-16 20:16:22 +03:00
|
|
|
} else if (member) {
|
|
|
|
return <EncryptionInfo onStartVerification={this._onStartVerification} member={member} />;
|
2019-12-19 19:08:53 +03:00
|
|
|
} else {
|
|
|
|
return <p>Not a member nor request, not sure what to render</p>;
|
2019-12-10 19:53:51 +03:00
|
|
|
}
|
|
|
|
}
|
2019-12-16 20:16:22 +03:00
|
|
|
|
|
|
|
_onStartVerification = async () => {
|
|
|
|
const client = MatrixClientPeg.get();
|
|
|
|
const {member} = this.props;
|
2019-12-19 19:43:10 +03:00
|
|
|
const roomId = await ensureDMExists(client, member.userId);
|
|
|
|
const verificationRequest = await client.requestVerificationDM(member.userId, roomId);
|
2019-12-16 20:16:22 +03:00
|
|
|
this.setState({verificationRequest});
|
|
|
|
};
|
2019-12-10 19:53:51 +03:00
|
|
|
}
|