nheko/src/ui/UserProfile.cpp

81 lines
2.8 KiB
C++
Raw Normal View History

2020-05-17 15:34:47 +02:00
#include "UserProfile.h"
#include "Logging.h"
#include "Utils.h"
2020-05-22 07:47:02 +02:00
#include "mtx/responses/crypto.hpp"
#include <iostream>
2020-05-17 15:34:47 +02:00
UserProfile::UserProfile(QObject *parent)
: QObject(parent)
{}
2020-05-22 07:47:02 +02:00
QVector<DeviceInfo>
UserProfile::getDeviceList(){
UserProfile::fetchDeviceList(this->userId);
2020-05-17 15:34:47 +02:00
return this->deviceList;
}
2020-05-22 07:47:02 +02:00
QString
UserProfile::getUserId (){
return this->userId;
}
void
UserProfile::setUserId (const QString &user_id){
if(this->userId != userId)
return;
else
this->userId = user_id;
}
2020-05-17 15:34:47 +02:00
void
2020-05-22 07:47:02 +02:00
UserProfile::fetchDeviceList(const QString &userID)
2020-05-17 15:34:47 +02:00
{
auto localUser = utils::localUser();
mtx::requests::QueryKeys req;
2020-05-22 07:47:02 +02:00
mtx::responses::QueryKeys res;
req.device_keys[userID.toStdString()] = {};
2020-05-17 15:34:47 +02:00
http::client()->query_keys(
req,
2020-05-22 07:47:02 +02:00
[user_id = userID.toStdString(),this](const mtx::responses::QueryKeys &res,
2020-05-17 15:34:47 +02:00
mtx::http::RequestErr err) {
if (err) {
nhlog::net()->warn("failed to query device keys: {} {}",
err->matrix_error.error,
static_cast<int>(err->status_code));
return;
}
if (res.device_keys.empty() ||
(res.device_keys.find(user_id) == res.device_keys.end())) {
nhlog::net()->warn("no devices retrieved {}", user_id);
return;
}
auto devices = res.device_keys.at(user_id);
2020-05-22 07:47:02 +02:00
QVector<DeviceInfo> deviceInfo;
2020-05-17 15:34:47 +02:00
for (const auto &d : devices) {
auto device = d.second;
// TODO: Verify signatures and ignore those that don't pass.
2020-05-22 07:47:02 +02:00
// std::cout<<d.first<<std::endl;
// std::cout<<device.unsigned_info.device_display_name<<std::endl;
DeviceInfo newdevice(QString::fromStdString(d.first),QString::fromStdString(device.unsigned_info.device_display_name))
newdevice->device_id = QString::fromStdString(d.first);
newdevice->display_name = QString::fromStdString(device.unsigned_info.device_display_name)
deviceInfo.append(std::move(newdevice));
2020-05-17 15:34:47 +02:00
}
std::sort(deviceInfo.begin(),
deviceInfo.end(),
[](const DeviceInfo &a, const DeviceInfo &b) {
return a.device_id > b.device_id;
});
2020-05-22 07:47:02 +02:00
this->deviceList = deviceInfo;
emit UserProfile::deviceListUpdated();
2020-05-17 15:34:47 +02:00
});
}