Tweak UI for device verification and Add more slots

This commit is contained in:
Chethan2k1 2020-06-04 19:14:15 +05:30 committed by CH Chethan Reddy
parent f9c0f4dd54
commit b628f485ff
4 changed files with 146 additions and 13 deletions

View File

@ -5,6 +5,8 @@ import QtQuick.Window 2.3
import im.nheko 1.0 import im.nheko 1.0
import "./device-verification"
ApplicationWindow{ ApplicationWindow{
property var user_data property var user_data
property var colors: currentActivePalette property var colors: currentActivePalette
@ -20,7 +22,6 @@ ApplicationWindow{
id: userProfileList id: userProfileList
userId: user_data.userId userId: user_data.userId
onUserIdChanged : { onUserIdChanged : {
console.log(userId)
userProfileList.updateDeviceList() userProfileList.updateDeviceList()
} }
onDeviceListUpdated : { onDeviceListUpdated : {
@ -84,15 +85,34 @@ ApplicationWindow{
delegate: RowLayout{ delegate: RowLayout{
width: parent.width width: parent.width
Text{ ColumnLayout{
Layout.fillWidth: true Text{
color: colors.text Layout.fillWidth: true
text: deviceID color: colors.text
Layout.alignment: Qt.AlignRight
text: deviceID
}
Text{
Layout.fillWidth: true
color:colors.text
Layout.alignment: Qt.AlignRight
text: displayName
}
Component {
id: deviceVerificationDialog
DeviceVerification {}
}
DeviceVerificationFlow {
id: deviceVerificationFlow
}
} }
Text{ Button{
Layout.fillWidth: true text:"Verify"
color:colors.text onClicked: {
text: displayName var dialog = deviceVerificationDialog.createObject(userProfileDialog,
{flow: deviceVerificationFlow,sender: true});
dialog.show();
}
} }
} }
} }

View File

@ -7,6 +7,7 @@ import Qt.labs.settings 1.0
import im.nheko 1.0 import im.nheko 1.0
ApplicationWindow { ApplicationWindow {
property bool sender: true
title: stack.currentItem.title title: stack.currentItem.title
id: dialog id: dialog
@ -24,7 +25,7 @@ ApplicationWindow {
width: stack.implicitWidth width: stack.implicitWidth
StackView { StackView {
id: stack id: stack
initialItem: newVerificationRequest initialItem: sender == true?newVerificationRequest:acceptNewVerificationRequest
implicitWidth: currentItem.implicitWidth implicitWidth: currentItem.implicitWidth
implicitHeight: currentItem.implicitHeight implicitHeight: currentItem.implicitHeight
} }
@ -47,7 +48,7 @@ ApplicationWindow {
Component { Component {
id: newVerificationRequest id: newVerificationRequest
Pane { Pane {
property string title: "Device Verification Request" property string title: "Sending Device Verification Request"
ColumnLayout { ColumnLayout {
spacing: 16 spacing: 16
Label { Label {
@ -82,6 +83,42 @@ ApplicationWindow {
Button { Button {
Layout.alignment: Qt.AlignRight Layout.alignment: Qt.AlignRight
text: "Start verification" text: "Start verification"
onClicked: { stack.replace(awaitingVerificationRequestAccept); flow.sendVerificationRequest(); }
}
}
}
}
}
Component {
id: acceptNewVerificationRequest
Pane {
property string title: "Recieving Device Verification Request"
ColumnLayout {
spacing: 16
Label {
Layout.maximumWidth: 400
Layout.fillHeight: true
Layout.fillWidth: true
wrapMode: Text.Wrap
text: "The device was requested to be verified"
verticalAlignment: Text.AlignVCenter
}
RowLayout {
Button {
Layout.alignment: Qt.AlignLeft
text: "Deny"
onClicked: { dialog.close(); flow.cancelVerification(); }
}
Item {
Layout.fillWidth: true
}
Button {
Layout.alignment: Qt.AlignRight
text: "Accept"
onClicked: { stack.replace(awaitingVerificationRequestAccept); flow.acceptVerificationRequest(); } onClicked: { stack.replace(awaitingVerificationRequestAccept); flow.acceptVerificationRequest(); }
} }
} }

View File

@ -1,5 +1,8 @@
#include "DeviceVerificationFlow.h" #include "DeviceVerificationFlow.h"
#include <MatrixClient.h>
#include <QDateTime>
#include <QDebug> // only for debugging
#include <QTimer> #include <QTimer>
static constexpr int TIMEOUT = 2 * 60 * 1000; // 2 minutes static constexpr int TIMEOUT = 2 * 60 * 1000; // 2 minutes
@ -15,17 +18,80 @@ DeviceVerificationFlow::DeviceVerificationFlow(QObject *)
timeout->start(TIMEOUT); timeout->start(TIMEOUT);
} }
//! accepts a verification and starts the verification flow std::string
DeviceVerificationFlow::generate_txn_id()
{
this->transaction_id = mtx::client::utils::random_token(32, false);
return this->transaction_id;
}
//! accepts a verification
void void
DeviceVerificationFlow::acceptVerificationRequest() DeviceVerificationFlow::acceptVerificationRequest()
{ {
mtx::requests::ToDeviceMessages<mtx::events::msg::KeyVerificationAccept> body;
mtx::events::msg::KeyVerificationAccept req;
req.transaction_id = this->transaction_id;
req.method = mtx::events::msg::VerificationMethods::SASv1;
req.key_agreement_protocol = "";
req.hash = "";
req.message_authentication_code = "";
// req.short_authentication_string = "";
req.commitment = "";
emit verificationRequestAccepted(rand() % 2 ? Emoji : Decimal); emit verificationRequestAccepted(rand() % 2 ? Emoji : Decimal);
// Yet to add send to_device message
}
//! starts the verification flow
void
DeviceVerificationFlow::startVerificationRequest()
{
mtx::requests::ToDeviceMessages<mtx::events::msg::KeyVerificationAccept> body;
mtx::events::msg::KeyVerificationAccept req;
// req.from_device = "";
req.transaction_id = this->transaction_id;
req.method = mtx::events::msg::VerificationMethods::SASv1;
req.key_agreement_protocol = {};
// req.hashes = {};
req.message_authentication_code = {};
// req.short_authentication_string = "";
// Yet to add send to_device message
}
//! sends a verification request
void
DeviceVerificationFlow::sendVerificationRequest()
{
QDateTime CurrentTime = QDateTime::currentDateTimeUtc();
mtx::requests::ToDeviceMessages<mtx::events::msg::KeyVerificationRequest> body;
mtx::events::msg::KeyVerificationRequest req;
req.from_device = "";
req.transaction_id = generate_txn_id();
req.methods.resize(1);
req.methods[0] = mtx::events::msg::VerificationMethods::SASv1;
req.timestamp = (uint64_t)CurrentTime.toTime_t();
// Yet to add send to_device message
} }
//! cancels a verification flow //! cancels a verification flow
void void
DeviceVerificationFlow::cancelVerification() DeviceVerificationFlow::cancelVerification()
{ {
mtx::requests::ToDeviceMessages<mtx::events::msg::KeyVerificationCancel> body;
mtx::events::msg::KeyVerificationCancel req;
req.transaction_id = this->transaction_id;
req.reason = "";
req.code = "";
this->deleteLater(); this->deleteLater();
// Yet to add send to_device message
} }
//! Completes the verification flow //! Completes the verification flow
void void
@ -33,4 +99,6 @@ DeviceVerificationFlow::acceptDevice()
{ {
emit deviceVerified(); emit deviceVerified();
this->deleteLater(); this->deleteLater();
// Yet to add send to_device message
} }

View File

@ -20,8 +20,12 @@ public:
DeviceVerificationFlow(QObject *parent = nullptr); DeviceVerificationFlow(QObject *parent = nullptr);
public slots: public slots:
//! accepts a verification and starts the verification flow //! sends a verification request
void sendVerificationRequest();
//! accepts a verification
void acceptVerificationRequest(); void acceptVerificationRequest();
//! starts the verification flow
void startVerificationRequest();
//! cancels a verification flow //! cancels a verification flow
void cancelVerification(); void cancelVerification();
//! Completes the verification flow //! Completes the verification flow
@ -34,5 +38,9 @@ signals:
void verificationCanceled(); void verificationCanceled();
private: private:
//! generates a unique transaction id
std::string generate_txn_id();
QTimer *timeout = nullptr; QTimer *timeout = nullptr;
std::string transaction_id;
}; };