|
|
@ -85,79 +85,124 @@ UserProfile::getUserStatus() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
|
void |
|
|
|
UserProfile::callback_fn(const mtx::responses::QueryKeys &res, |
|
|
|
UserProfile::fetchDeviceList(const QString &userID) |
|
|
|
mtx::http::RequestErr err, |
|
|
|
|
|
|
|
std::string user_id) |
|
|
|
|
|
|
|
{ |
|
|
|
{ |
|
|
|
if (err) { |
|
|
|
auto localUser = utils::localUser(); |
|
|
|
nhlog::net()->warn("failed to query device keys: {},{}", |
|
|
|
|
|
|
|
err->matrix_error.errcode, |
|
|
|
|
|
|
|
static_cast<int>(err->status_code)); |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (res.device_keys.empty() || (res.device_keys.find(user_id) == res.device_keys.end())) { |
|
|
|
mtx::requests::QueryKeys req; |
|
|
|
nhlog::net()->warn("no devices retrieved {}", user_id); |
|
|
|
req.device_keys[userID.toStdString()] = {}; |
|
|
|
return; |
|
|
|
ChatPage::instance()->query_keys( |
|
|
|
} |
|
|
|
req, |
|
|
|
|
|
|
|
[user_id = userID.toStdString(), local_user_id = localUser.toStdString(), this]( |
|
|
|
|
|
|
|
const mtx::responses::QueryKeys &res, mtx::http::RequestErr err) { |
|
|
|
|
|
|
|
if (err) { |
|
|
|
|
|
|
|
nhlog::net()->warn("failed to query device keys: {},{}", |
|
|
|
|
|
|
|
err->matrix_error.errcode, |
|
|
|
|
|
|
|
static_cast<int>(err->status_code)); |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
auto devices = res.device_keys.at(user_id); |
|
|
|
if (res.device_keys.empty() || |
|
|
|
std::vector<DeviceInfo> deviceInfo; |
|
|
|
(res.device_keys.find(user_id) == res.device_keys.end())) { |
|
|
|
auto device_verified = cache::getVerifiedCache(user_id); |
|
|
|
nhlog::net()->warn("no devices retrieved {}", user_id); |
|
|
|
|
|
|
|
return; |
|
|
|
for (const auto &d : devices) { |
|
|
|
} |
|
|
|
auto device = d.second; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TODO: Verify signatures and ignore those that don't pass.
|
|
|
|
|
|
|
|
verification::Status verified = verification::Status::UNVERIFIED; |
|
|
|
|
|
|
|
isUserVerified = device_verified->is_user_verified; |
|
|
|
|
|
|
|
if (device_verified.has_value()) { |
|
|
|
|
|
|
|
if (std::find(device_verified->cross_verified.begin(), |
|
|
|
|
|
|
|
device_verified->cross_verified.end(), |
|
|
|
|
|
|
|
d.first) != device_verified->cross_verified.end()) |
|
|
|
|
|
|
|
verified = verification::Status::VERIFIED; |
|
|
|
|
|
|
|
if (std::find(device_verified->device_verified.begin(), |
|
|
|
|
|
|
|
device_verified->device_verified.end(), |
|
|
|
|
|
|
|
d.first) != device_verified->device_verified.end()) |
|
|
|
|
|
|
|
verified = verification::Status::VERIFIED; |
|
|
|
|
|
|
|
if (std::find(device_verified->device_blocked.begin(), |
|
|
|
|
|
|
|
device_verified->device_blocked.end(), |
|
|
|
|
|
|
|
d.first) != device_verified->device_blocked.end()) |
|
|
|
|
|
|
|
verified = verification::Status::BLOCKED; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
deviceInfo.push_back( |
|
|
|
auto devices = res.device_keys.at(user_id); |
|
|
|
{QString::fromStdString(d.first), |
|
|
|
std::vector<DeviceInfo> deviceInfo; |
|
|
|
QString::fromStdString(device.unsigned_info.device_display_name), |
|
|
|
auto device_verified = cache::getVerifiedCache(user_id); |
|
|
|
verified}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::sort( |
|
|
|
for (const auto &d : devices) { |
|
|
|
deviceInfo.begin(), deviceInfo.end(), [](const DeviceInfo &a, const DeviceInfo &b) { |
|
|
|
auto device = d.second; |
|
|
|
return a.device_id > b.device_id; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this->deviceList_.queueReset(std::move(deviceInfo)); |
|
|
|
// TODO: Verify signatures and ignore those that don't pass.
|
|
|
|
} |
|
|
|
verification::Status verified = verification::Status::UNVERIFIED; |
|
|
|
|
|
|
|
isUserVerified = device_verified->is_user_verified; |
|
|
|
|
|
|
|
if (device_verified.has_value()) { |
|
|
|
|
|
|
|
if (std::find(device_verified->cross_verified.begin(), |
|
|
|
|
|
|
|
device_verified->cross_verified.end(), |
|
|
|
|
|
|
|
d.first) != device_verified->cross_verified.end()) |
|
|
|
|
|
|
|
verified = verification::Status::VERIFIED; |
|
|
|
|
|
|
|
if (std::find(device_verified->device_verified.begin(), |
|
|
|
|
|
|
|
device_verified->device_verified.end(), |
|
|
|
|
|
|
|
d.first) != device_verified->device_verified.end()) |
|
|
|
|
|
|
|
verified = verification::Status::VERIFIED; |
|
|
|
|
|
|
|
if (std::find(device_verified->device_blocked.begin(), |
|
|
|
|
|
|
|
device_verified->device_blocked.end(), |
|
|
|
|
|
|
|
d.first) != device_verified->device_blocked.end()) |
|
|
|
|
|
|
|
verified = verification::Status::BLOCKED; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
|
deviceInfo.push_back( |
|
|
|
UserProfile::fetchDeviceList(const QString &userID) |
|
|
|
{QString::fromStdString(d.first), |
|
|
|
{ |
|
|
|
QString::fromStdString(device.unsigned_info.device_display_name), |
|
|
|
auto localUser = utils::localUser(); |
|
|
|
verified}); |
|
|
|
auto user_cache = cache::getUserCache(userID.toStdString()); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (user_cache.has_value()) { |
|
|
|
// Finding if the User is Verified or not based on the Signatures
|
|
|
|
this->callback_fn(user_cache->keys, {}, userID.toStdString()); |
|
|
|
mtx::requests::QueryKeys req; |
|
|
|
} else { |
|
|
|
req.device_keys[local_user_id] = {}; |
|
|
|
mtx::requests::QueryKeys req; |
|
|
|
|
|
|
|
req.device_keys[userID.toStdString()] = {}; |
|
|
|
ChatPage::instance()->query_keys( |
|
|
|
http::client()->query_keys( |
|
|
|
req, |
|
|
|
req, |
|
|
|
[&local_user_id, &user_id, other_res = res, this]( |
|
|
|
[user_id = userID.toStdString(), this](const mtx::responses::QueryKeys &res, |
|
|
|
const mtx::responses::QueryKeys &res, mtx::http::RequestErr err) { |
|
|
|
mtx::http::RequestErr err) { |
|
|
|
using namespace mtx; |
|
|
|
this->callback_fn(res, err, user_id); |
|
|
|
|
|
|
|
}); |
|
|
|
if (err) { |
|
|
|
} |
|
|
|
nhlog::net()->warn("failed to query device keys: {},{}", |
|
|
|
|
|
|
|
err->matrix_error.errcode, |
|
|
|
|
|
|
|
static_cast<int>(err->status_code)); |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::optional<crypto::CrossSigningKeys> lmk, lsk, luk, mk, sk, uk; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (res.master_keys.find(local_user_id) != res.master_keys.end()) |
|
|
|
|
|
|
|
lmk = res.master_keys.at(local_user_id); |
|
|
|
|
|
|
|
if (res.user_signing_keys.find(local_user_id) != |
|
|
|
|
|
|
|
res.user_signing_keys.end()) |
|
|
|
|
|
|
|
luk = res.user_signing_keys.at(local_user_id); |
|
|
|
|
|
|
|
if (res.self_signing_keys.find(local_user_id) != |
|
|
|
|
|
|
|
res.self_signing_keys.end()) |
|
|
|
|
|
|
|
lsk = res.self_signing_keys.at(local_user_id); |
|
|
|
|
|
|
|
if (other_res.master_keys.find(user_id) != other_res.master_keys.end()) |
|
|
|
|
|
|
|
mk = other_res.master_keys.at(user_id); |
|
|
|
|
|
|
|
if (other_res.user_signing_keys.find(user_id) != |
|
|
|
|
|
|
|
other_res.user_signing_keys.end()) |
|
|
|
|
|
|
|
uk = other_res.user_signing_keys.at(user_id); |
|
|
|
|
|
|
|
if (other_res.self_signing_keys.find(user_id) != |
|
|
|
|
|
|
|
other_res.self_signing_keys.end()) |
|
|
|
|
|
|
|
sk = other_res.self_signing_keys.at(user_id); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// First checking if the user is verified
|
|
|
|
|
|
|
|
if (lmk.has_value() && luk.has_value()) { |
|
|
|
|
|
|
|
bool is_user_verified = false; |
|
|
|
|
|
|
|
for (auto sign_key : lmk.value().keys) { |
|
|
|
|
|
|
|
if (!luk.value().signatures.empty()) { |
|
|
|
|
|
|
|
for (auto signature : |
|
|
|
|
|
|
|
luk.value().signatures.at(local_user_id)) { |
|
|
|
|
|
|
|
is_user_verified = |
|
|
|
|
|
|
|
is_user_verified || |
|
|
|
|
|
|
|
(olm::client()->ed25519_verify_sig( |
|
|
|
|
|
|
|
sign_key.second, |
|
|
|
|
|
|
|
json(luk.value()), |
|
|
|
|
|
|
|
signature.second)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
std::cout << (isUserVerified ? "Yes" : "No") << std::endl; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::sort(deviceInfo.begin(), |
|
|
|
|
|
|
|
deviceInfo.end(), |
|
|
|
|
|
|
|
[](const DeviceInfo &a, const DeviceInfo &b) { |
|
|
|
|
|
|
|
return a.device_id > b.device_id; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this->deviceList_.queueReset(std::move(deviceInfo)); |
|
|
|
|
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
|
void |
|
|
|