Skip to content

Commit

Permalink
Some issue with UserProfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Chethan2k1 committed Jul 3, 2020
1 parent 362ab16 commit 9e3f900
Show file tree
Hide file tree
Showing 10 changed files with 154 additions and 115 deletions.
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ set(CMAKE_CXX_STANDARD 17 CACHE STRING "C++ standard")
set(CMAKE_CXX_STANDARD_REQUIRED ON CACHE BOOL "Require C++ standard to be supported")
set(CMAKE_POSITION_INDEPENDENT_CODE ON CACHE BOOL "compile as PIC by default")

# set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=address")
# set (CMAKE_LINKER_FLAGS_DEBUG "${CMAKE_LINKER_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=address")

option(HUNTER_ENABLED "Enable Hunter package manager" OFF)
include("cmake/HunterGate.cmake")
HunterGate(
Expand Down
44 changes: 21 additions & 23 deletions resources/qml/UserProfile.qml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,6 @@ ApplicationWindow{
Layout.alignment: Qt.AlignHCenter
palette: colors

UserProfileList{
id: userProfileList
userId: user_data.userId
onUserIdChanged : {
userProfileList.updateDeviceList()
}
onDeviceListUpdated : {
modelDeviceList.deviceList = userProfileList
}
}

Component {
id: deviceVerificationDialog
DeviceVerification {}
Expand Down Expand Up @@ -94,7 +83,7 @@ ApplicationWindow{
ToolTip.visible: hovered
ToolTip.text: qsTr("Ban the user")
onClicked : {
userProfileList.banUser()
modelDeviceList.deviceList.banUser()
}
}
// ImageButton{
Expand All @@ -106,7 +95,7 @@ ApplicationWindow{
// ToolTip.visible: hovered
// ToolTip.text: qsTr("Ignore messages from this user")
// onClicked : {
// userProfileList.ignoreUser()
// modelDeviceList.deviceList.ignoreUser()
// }
// }
ImageButton{
Expand All @@ -118,7 +107,7 @@ ApplicationWindow{
ToolTip.visible: hovered
ToolTip.text: qsTr("Start a private chat")
onClicked : {
userProfileList.startChat()
modelDeviceList.deviceList.startChat()
}
}
ImageButton{
Expand All @@ -130,7 +119,7 @@ ApplicationWindow{
ToolTip.visible: hovered
ToolTip.text: qsTr("Kick the user")
onClicked : {
userProfileList.kickUser()
modelDeviceList.deviceList.kickUser()
}
}
}
Expand All @@ -142,27 +131,36 @@ ApplicationWindow{
Layout.alignment: Qt.AlignHCenter

ListView{
id: deviceList
id: devicelist
anchors.fill: parent
clip: true
spacing: 4

model: UserProfileModel{
id: modelDeviceList
}
deviceList.userId : user_data.userId
}

delegate: RowLayout{
width: parent.width
Layout.margins : {
top : 50
}
ColumnLayout{
Text{
Layout.fillWidth: true
color: colors.text
font.bold: true
Layout.alignment: Qt.AlignRight
text: deviceID
RowLayout{
Text{
Layout.fillWidth: true
color: colors.text
font.bold: true
Layout.alignment: Qt.AlignLeft
text: deviceID
}
Text{
Layout.fillWidth: true
color:colors.text
Layout.alignment: Qt.AlignLeft
text: (verified_status == UserProfileList.VERIFIED?"V":(verified_status == UserProfileList.UNVERIFIED?"NV":"B"))
}
}
Text{
Layout.fillWidth: true
Expand Down
32 changes: 16 additions & 16 deletions src/Cache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2318,7 +2318,6 @@ Cache::statusMessage(const std::string &user_id)
void
to_json(json &j, const UserCache &info)
{
j["user_id"] = info.user_id;
j["is_user_verified"] = info.is_user_verified;
j["cross_verified"] = info.cross_verified;
j["keys"] = info.keys;
Expand All @@ -2327,13 +2326,12 @@ to_json(json &j, const UserCache &info)
void
from_json(const json &j, UserCache &info)
{
info.user_id = j.at("user_id");
info.is_user_verified = j.at("is_user_verified");
info.cross_verified = j.at("cross_verified").get<std::vector<std::string>>();
info.keys = j.at("keys").get<mtx::responses::QueryKeys>();
}

UserCache
std::optional<UserCache>
Cache::getUserCache(const std::string &user_id)
{
lmdb::val verifiedVal;
Expand All @@ -2342,14 +2340,15 @@ Cache::getUserCache(const std::string &user_id)
auto db = getUserCacheDb(txn);
auto res = lmdb::dbi_get(txn, db, lmdb::val(user_id), verifiedVal);

txn.commit();

UserCache verified_state;
if (res) {
verified_state = json::parse(std::string(verifiedVal.data(), verifiedVal.size()));
return verified_state;
} else {
return {};
}

txn.commit();

return verified_state;
}

//! be careful when using make sure is_user_verified is not changed
Expand Down Expand Up @@ -2381,18 +2380,18 @@ Cache::deleteUserCache(const std::string &user_id)
void
to_json(json &j, const DeviceVerifiedCache &info)
{
j["user_id"] = info.user_id;
j["device_verified"] = info.device_verified;
j["device_blocked"] = info.device_blocked;
}

void
from_json(const json &j, DeviceVerifiedCache &info)
{
info.user_id = j.at("user_id");
info.device_verified = j.at("device_verified").get<std::vector<std::string>>();
info.device_blocked = j.at("device_blocked").get<std::vector<std::string>>();
}

DeviceVerifiedCache
std::optional<DeviceVerifiedCache>
Cache::getVerifiedCache(const std::string &user_id)
{
lmdb::val verifiedVal;
Expand All @@ -2401,14 +2400,15 @@ Cache::getVerifiedCache(const std::string &user_id)
auto db = getDeviceVerifiedDb(txn);
auto res = lmdb::dbi_get(txn, db, lmdb::val(user_id), verifiedVal);

txn.commit();

DeviceVerifiedCache verified_state;
if (res) {
verified_state = json::parse(std::string(verifiedVal.data(), verifiedVal.size()));
return verified_state;
} else {
return {};
}

txn.commit();

return verified_state;
}

int
Expand Down Expand Up @@ -2605,7 +2605,7 @@ statusMessage(const std::string &user_id)
{
return instance_->statusMessage(user_id);
}
UserCache
std::optional<UserCache>
getUserCache(const std::string &user_id)
{
return instance_->getUserCache(user_id);
Expand All @@ -2623,7 +2623,7 @@ deleteUserCache(const std::string &user_id)
return instance_->deleteUserCache(user_id);
}

DeviceVerifiedCache
std::optional<DeviceVerifiedCache>
getVerifiedCache(const std::string &user_id)
{
return instance_->getVerifiedCache(user_id);
Expand Down
4 changes: 2 additions & 2 deletions src/Cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ std::string
statusMessage(const std::string &user_id);

//! user Cache
UserCache
std::optional<UserCache>
getUserCache(const std::string &user_id);

int
Expand All @@ -71,7 +71,7 @@ int
deleteUserCache(const std::string &user_id);

//! verified Cache
DeviceVerifiedCache
std::optional<DeviceVerifiedCache>
getVerifiedCache(const std::string &user_id);

int
Expand Down
5 changes: 1 addition & 4 deletions src/CacheCryptoStructs.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ struct OlmSessionStorage

struct UserCache
{
//! user_id of the user
std::string user_id;
//! this stores if the user is verified (with cross-signing)
bool is_user_verified = false;
//! list of verified device_ids with cross-signing
Expand All @@ -85,10 +83,9 @@ from_json(const nlohmann::json &j, UserCache &info);

struct DeviceVerifiedCache
{
//! user_id of the user
std::string user_id;
//! list of verified device_ids with device-verification
std::vector<std::string> device_verified;
std::vector<std::string> device_blocked;
};

void
Expand Down
4 changes: 2 additions & 2 deletions src/Cache_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ class Cache : public QObject
std::string statusMessage(const std::string &user_id);

// user cache stores user keys
UserCache getUserCache(const std::string &user_id);
std::optional<UserCache> getUserCache(const std::string &user_id);
int setUserCache(const std::string &user_id, const UserCache &body);
int deleteUserCache(const std::string &user_id);

// device verified cache
DeviceVerifiedCache getVerifiedCache(const std::string &user_id);
std::optional<DeviceVerifiedCache> getVerifiedCache(const std::string &user_id);
int setVerifiedCache(const std::string &user_id, const DeviceVerifiedCache &body);

static void removeDisplayName(const QString &room_id, const QString &user_id);
Expand Down
71 changes: 48 additions & 23 deletions src/ui/UserProfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,25 @@

#include <iostream> // only for debugging

Q_DECLARE_METATYPE(UserProfile::Status)

UserProfile::UserProfile(QObject *parent)
: QObject(parent)
{}
{
qRegisterMetaType<UserProfile::Status>();
connect(
this, &UserProfile::updateDeviceList, this, [this]() { fetchDeviceList(this->userId); });
connect(
this,
&UserProfile::appendDeviceList,
this,
[this](QString device_id, QString device_name, UserProfile::Status verification_status) {
this->deviceList.push_back(
DeviceInfo{device_id, device_name, verification_status});
});
}

QVector<DeviceInfo>
std::vector<DeviceInfo>
UserProfile::getDeviceList()
{
return this->deviceList;
Expand All @@ -37,7 +51,8 @@ UserProfile::setUserId(const QString &user_id)
void
UserProfile::callback_fn(const mtx::responses::QueryKeys &res,
mtx::http::RequestErr err,
std::string user_id)
std::string user_id,
std::optional<std::vector<std::string>> cross_verified)
{
if (err) {
nhlog::net()->warn("failed to query device keys: {},{}",
Expand All @@ -52,24 +67,40 @@ UserProfile::callback_fn(const mtx::responses::QueryKeys &res,
}

auto devices = res.device_keys.at(user_id);
QVector<DeviceInfo> deviceInfo;
std::vector<DeviceInfo> deviceInfo;
auto device_verified = cache::getVerifiedCache(user_id);

for (const auto &d : devices) {
auto device = d.second;

// TODO: Verify signatures and ignore those that don't pass.
DeviceInfo newdevice(
UserProfile::Status verified = UserProfile::Status::UNVERIFIED;
if (cross_verified.has_value()) {
if (std::find(cross_verified->begin(), cross_verified->end(), d.first) !=
cross_verified->end())
verified = UserProfile::Status::VERIFIED;
} else if (device_verified.has_value()) {
if (std::find(device_verified->device_verified.begin(),
device_verified->device_verified.end(),
d.first) != device_verified->device_verified.end())
verified = UserProfile::Status::VERIFIED;
} else if (device_verified.has_value()) {
if (std::find(device_verified->device_blocked.begin(),
device_verified->device_blocked.end(),
d.first) != device_verified->device_blocked.end())
verified = UserProfile::Status::BLOCKED;
}

emit UserProfile::appendDeviceList(
QString::fromStdString(d.first),
QString::fromStdString(device.unsigned_info.device_display_name));
QString::fromStdString(device.unsigned_info.device_display_name);

deviceInfo.append(std::move(newdevice));
QString::fromStdString(device.unsigned_info.device_display_name),
verified);
}

std::sort(
deviceInfo.begin(), deviceInfo.end(), [](const DeviceInfo &a, const DeviceInfo &b) {
return a.device_id > b.device_id;
});
// std::sort(
// deviceInfo.begin(), deviceInfo.end(), [](const DeviceInfo &a, const DeviceInfo &b) {
// return a.device_id > b.device_id;
// });

this->deviceList = std::move(deviceInfo);
emit UserProfile::deviceListUpdated();
Expand All @@ -81,27 +112,21 @@ UserProfile::fetchDeviceList(const QString &userID)
auto localUser = utils::localUser();
auto user_cache = cache::getUserCache(userID.toStdString());

if (user_cache.user_id == userID.toStdString()) {
mtx::http::ClientError error;
this->callback_fn(user_cache.keys, std::move(error), userID.toStdString());
if (user_cache.has_value()) {
this->callback_fn(
user_cache->keys, {}, userID.toStdString(), user_cache->cross_verified);
} else {
mtx::requests::QueryKeys req;
req.device_keys[userID.toStdString()] = {};
http::client()->query_keys(
req,
[user_id = userID.toStdString(), this](const mtx::responses::QueryKeys &res,
mtx::http::RequestErr err) {
this->callback_fn(res, err, user_id);
this->callback_fn(res, err, user_id, {});
});
}
}

void
UserProfile::updateDeviceList()
{
fetchDeviceList(this->userId);
}

void
UserProfile::banUser()
{
Expand Down
Loading

0 comments on commit 9e3f900

Please sign in to comment.