2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-02-01 19:43:04 +03:00
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QImageReader>
|
|
|
|
#include <QMimeDatabase>
|
|
|
|
#include <QStandardPaths>
|
|
|
|
|
2020-10-08 00:03:14 +03:00
|
|
|
#include "Cache_p.h"
|
2020-06-26 01:54:42 +03:00
|
|
|
#include "ChatPage.h"
|
2020-07-05 19:03:27 +03:00
|
|
|
#include "DeviceVerificationFlow.h"
|
2020-05-17 16:34:47 +03:00
|
|
|
#include "Logging.h"
|
2021-02-01 19:43:04 +03:00
|
|
|
#include "UserProfile.h"
|
2020-05-17 16:34:47 +03:00
|
|
|
#include "Utils.h"
|
2020-05-22 08:47:02 +03:00
|
|
|
#include "mtx/responses/crypto.hpp"
|
2020-08-09 06:05:15 +03:00
|
|
|
#include "timeline/TimelineModel.h"
|
2020-10-05 23:12:10 +03:00
|
|
|
#include "timeline/TimelineViewManager.h"
|
2020-05-17 16:34:47 +03:00
|
|
|
|
2020-10-05 23:12:10 +03:00
|
|
|
UserProfile::UserProfile(QString roomid,
|
|
|
|
QString userid,
|
|
|
|
TimelineViewManager *manager_,
|
2021-01-28 21:39:11 +03:00
|
|
|
TimelineModel *parent)
|
2020-07-04 05:24:28 +03:00
|
|
|
: QObject(parent)
|
|
|
|
, roomid_(roomid)
|
|
|
|
, userid_(userid)
|
2020-10-05 23:12:10 +03:00
|
|
|
, manager(manager_)
|
2020-08-09 06:05:15 +03:00
|
|
|
, model(parent)
|
2020-07-04 05:24:28 +03:00
|
|
|
{
|
2021-02-02 15:16:02 +03:00
|
|
|
globalAvatarUrl = "";
|
2020-10-08 00:03:14 +03:00
|
|
|
|
2021-05-15 00:35:34 +03:00
|
|
|
connect(this,
|
|
|
|
&UserProfile::globalUsernameRetrieved,
|
|
|
|
this,
|
|
|
|
&UserProfile::setGlobalUsername,
|
|
|
|
Qt::QueuedConnection);
|
|
|
|
|
|
|
|
if (isGlobalUserProfile()) {
|
|
|
|
getGlobalProfileData();
|
|
|
|
}
|
|
|
|
|
2021-06-12 17:05:45 +03:00
|
|
|
if (!cache::client() || !cache::client()->isDatabaseReady() ||
|
|
|
|
!ChatPage::instance()->timelineManager())
|
2021-05-15 00:35:34 +03:00
|
|
|
return;
|
|
|
|
|
2020-10-08 00:03:14 +03:00
|
|
|
connect(cache::client(),
|
|
|
|
&Cache::verificationStatusChanged,
|
|
|
|
this,
|
|
|
|
[this](const std::string &user_id) {
|
|
|
|
if (user_id != this->userid_.toStdString())
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto status = cache::verificationStatus(user_id);
|
|
|
|
if (!status)
|
|
|
|
return;
|
|
|
|
this->isUserVerified = status->user_verified;
|
|
|
|
emit userStatusChanged();
|
|
|
|
|
|
|
|
for (auto &deviceInfo : deviceList_.deviceList_) {
|
|
|
|
deviceInfo.verification_status =
|
|
|
|
std::find(status->verified_devices.begin(),
|
|
|
|
status->verified_devices.end(),
|
|
|
|
deviceInfo.device_id.toStdString()) ==
|
|
|
|
status->verified_devices.end()
|
|
|
|
? verification::UNVERIFIED
|
|
|
|
: verification::VERIFIED;
|
|
|
|
}
|
|
|
|
deviceList_.reset(deviceList_.deviceList_);
|
2021-05-22 15:31:38 +03:00
|
|
|
emit devicesChanged();
|
2020-10-08 00:03:14 +03:00
|
|
|
});
|
2021-05-22 15:31:38 +03:00
|
|
|
fetchDeviceList(this->userid_);
|
2020-07-04 05:24:28 +03:00
|
|
|
}
|
2020-06-28 18:31:34 +03:00
|
|
|
|
2020-07-04 05:24:28 +03:00
|
|
|
QHash<int, QByteArray>
|
|
|
|
DeviceInfoModel::roleNames() const
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
{DeviceId, "deviceId"},
|
|
|
|
{DeviceName, "deviceName"},
|
|
|
|
{VerificationStatus, "verificationStatus"},
|
|
|
|
};
|
|
|
|
}
|
2020-07-01 15:17:10 +03:00
|
|
|
|
2020-07-04 05:24:28 +03:00
|
|
|
QVariant
|
|
|
|
DeviceInfoModel::data(const QModelIndex &index, int role) const
|
2020-07-01 15:17:10 +03:00
|
|
|
{
|
2020-07-04 05:24:28 +03:00
|
|
|
if (!index.isValid() || index.row() >= (int)deviceList_.size() || index.row() < 0)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
switch (role) {
|
|
|
|
case DeviceId:
|
|
|
|
return deviceList_[index.row()].device_id;
|
|
|
|
case DeviceName:
|
|
|
|
return deviceList_[index.row()].display_name;
|
|
|
|
case VerificationStatus:
|
|
|
|
return QVariant::fromValue(deviceList_[index.row()].verification_status);
|
|
|
|
default:
|
|
|
|
return {};
|
|
|
|
}
|
2020-07-01 15:17:10 +03:00
|
|
|
}
|
2020-05-17 16:34:47 +03:00
|
|
|
|
2020-07-04 05:24:28 +03:00
|
|
|
void
|
|
|
|
DeviceInfoModel::reset(const std::vector<DeviceInfo> &deviceList)
|
2020-05-27 11:49:26 +03:00
|
|
|
{
|
2020-07-04 05:24:28 +03:00
|
|
|
beginResetModel();
|
|
|
|
this->deviceList_ = std::move(deviceList);
|
|
|
|
endResetModel();
|
|
|
|
}
|
|
|
|
|
|
|
|
DeviceInfoModel *
|
|
|
|
UserProfile::deviceList()
|
|
|
|
{
|
|
|
|
return &this->deviceList_;
|
2020-05-17 16:34:47 +03:00
|
|
|
}
|
|
|
|
|
2020-05-22 08:47:02 +03:00
|
|
|
QString
|
2020-07-04 05:24:28 +03:00
|
|
|
UserProfile::userid()
|
2020-05-27 11:49:26 +03:00
|
|
|
{
|
2020-07-04 05:24:28 +03:00
|
|
|
return this->userid_;
|
2020-05-22 08:47:02 +03:00
|
|
|
}
|
|
|
|
|
2020-07-04 05:24:28 +03:00
|
|
|
QString
|
|
|
|
UserProfile::displayName()
|
2020-05-27 11:49:26 +03:00
|
|
|
{
|
2021-01-29 09:25:24 +03:00
|
|
|
return isGlobalUserProfile() ? globalUsername : cache::displayName(roomid_, userid_);
|
2020-07-04 05:24:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
|
|
|
UserProfile::avatarUrl()
|
|
|
|
{
|
2021-06-12 17:05:45 +03:00
|
|
|
return isGlobalUserProfile() ? globalAvatarUrl : cache::avatarUrl(roomid_, userid_);
|
2020-05-22 08:47:02 +03:00
|
|
|
}
|
|
|
|
|
2021-01-28 17:33:50 +03:00
|
|
|
bool
|
2021-01-29 09:25:24 +03:00
|
|
|
UserProfile::isGlobalUserProfile() const
|
2021-01-28 17:33:50 +03:00
|
|
|
{
|
2021-01-29 09:25:24 +03:00
|
|
|
return roomid_ == "";
|
2021-01-28 17:33:50 +03:00
|
|
|
}
|
|
|
|
|
2021-05-07 13:19:46 +03:00
|
|
|
crypto::Trust
|
2020-07-17 23:16:30 +03:00
|
|
|
UserProfile::getUserStatus()
|
|
|
|
{
|
|
|
|
return isUserVerified;
|
|
|
|
}
|
|
|
|
|
2021-01-12 16:49:15 +03:00
|
|
|
bool
|
|
|
|
UserProfile::userVerificationEnabled() const
|
|
|
|
{
|
|
|
|
return hasMasterKey;
|
|
|
|
}
|
|
|
|
bool
|
|
|
|
UserProfile::isSelf() const
|
|
|
|
{
|
|
|
|
return this->userid_ == utils::localUser();
|
|
|
|
}
|
|
|
|
|
2020-06-28 18:31:34 +03:00
|
|
|
void
|
|
|
|
UserProfile::fetchDeviceList(const QString &userID)
|
|
|
|
{
|
2020-08-24 11:26:50 +03:00
|
|
|
auto localUser = utils::localUser();
|
|
|
|
|
2021-05-15 00:35:34 +03:00
|
|
|
if (!cache::client() || !cache::client()->isDatabaseReady())
|
|
|
|
return;
|
|
|
|
|
2020-10-27 19:45:28 +03:00
|
|
|
cache::client()->query_keys(
|
2020-10-02 02:14:42 +03:00
|
|
|
userID.toStdString(),
|
|
|
|
[other_user_id = userID.toStdString(), this](const UserKeyCache &other_user_keys,
|
|
|
|
mtx::http::RequestErr err) {
|
2020-08-24 11:26:50 +03:00
|
|
|
if (err) {
|
|
|
|
nhlog::net()->warn("failed to query device keys: {},{}",
|
2021-03-05 02:56:25 +03:00
|
|
|
mtx::errors::to_string(err->matrix_error.errcode),
|
2020-08-24 11:26:50 +03:00
|
|
|
static_cast<int>(err->status_code));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-01-12 16:49:15 +03:00
|
|
|
// Ensure local key cache is up to date
|
2020-10-27 19:45:28 +03:00
|
|
|
cache::client()->query_keys(
|
2020-10-02 02:14:42 +03:00
|
|
|
utils::localUser().toStdString(),
|
2021-01-12 16:49:15 +03:00
|
|
|
[other_user_id, other_user_keys, this](const UserKeyCache &,
|
2020-10-02 02:14:42 +03:00
|
|
|
mtx::http::RequestErr err) {
|
2020-08-24 11:26:50 +03:00
|
|
|
using namespace mtx;
|
2020-08-25 13:11:27 +03:00
|
|
|
std::string local_user_id = utils::localUser().toStdString();
|
2020-08-24 11:26:50 +03:00
|
|
|
|
|
|
|
if (err) {
|
2021-03-05 03:11:08 +03:00
|
|
|
nhlog::net()->warn(
|
|
|
|
"failed to query device keys: {},{}",
|
|
|
|
mtx::errors::to_string(err->matrix_error.errcode),
|
|
|
|
static_cast<int>(err->status_code));
|
2020-08-24 11:26:50 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-01-12 16:49:15 +03:00
|
|
|
this->hasMasterKey = !other_user_keys.master_keys.keys.empty();
|
2020-08-25 13:11:27 +03:00
|
|
|
|
|
|
|
std::vector<DeviceInfo> deviceInfo;
|
2020-10-08 00:03:14 +03:00
|
|
|
auto devices = other_user_keys.device_keys;
|
|
|
|
auto verificationStatus =
|
|
|
|
cache::client()->verificationStatus(other_user_id);
|
2020-08-25 13:11:27 +03:00
|
|
|
|
2020-10-08 00:03:14 +03:00
|
|
|
isUserVerified = verificationStatus.user_verified;
|
|
|
|
emit userStatusChanged();
|
2020-08-24 11:26:50 +03:00
|
|
|
|
2020-08-25 13:11:27 +03:00
|
|
|
for (const auto &d : devices) {
|
|
|
|
auto device = d.second;
|
|
|
|
verification::Status verified =
|
|
|
|
verification::Status::UNVERIFIED;
|
|
|
|
|
2020-10-08 00:03:14 +03:00
|
|
|
if (std::find(verificationStatus.verified_devices.begin(),
|
|
|
|
verificationStatus.verified_devices.end(),
|
|
|
|
device.device_id) !=
|
|
|
|
verificationStatus.verified_devices.end() &&
|
|
|
|
mtx::crypto::verify_identity_signature(
|
|
|
|
device,
|
|
|
|
DeviceId(device.device_id),
|
|
|
|
UserId(other_user_id)))
|
|
|
|
verified = verification::Status::VERIFIED;
|
2020-08-25 13:11:27 +03:00
|
|
|
|
|
|
|
deviceInfo.push_back(
|
|
|
|
{QString::fromStdString(d.first),
|
|
|
|
QString::fromStdString(
|
|
|
|
device.unsigned_info.device_display_name),
|
|
|
|
verified});
|
|
|
|
}
|
|
|
|
|
|
|
|
this->deviceList_.queueReset(std::move(deviceInfo));
|
2021-05-22 15:31:38 +03:00
|
|
|
emit devicesChanged();
|
2020-08-25 13:11:27 +03:00
|
|
|
});
|
2020-08-24 11:26:50 +03:00
|
|
|
});
|
2020-05-17 16:34:47 +03:00
|
|
|
}
|
2020-05-27 11:49:26 +03:00
|
|
|
|
2020-06-26 01:54:42 +03:00
|
|
|
void
|
|
|
|
UserProfile::banUser()
|
|
|
|
{
|
2020-07-04 05:24:28 +03:00
|
|
|
ChatPage::instance()->banUser(this->userid_, "");
|
2020-06-26 01:54:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// void ignoreUser(){
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
void
|
|
|
|
UserProfile::kickUser()
|
|
|
|
{
|
2020-07-04 05:24:28 +03:00
|
|
|
ChatPage::instance()->kickUser(this->userid_, "");
|
2020-06-26 01:54:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UserProfile::startChat()
|
|
|
|
{
|
2021-01-10 20:36:06 +03:00
|
|
|
ChatPage::instance()->startChat(this->userid_);
|
2020-07-17 23:16:30 +03:00
|
|
|
}
|
|
|
|
|
2021-01-27 08:33:08 +03:00
|
|
|
void
|
|
|
|
UserProfile::changeUsername(QString username)
|
|
|
|
{
|
2021-01-29 09:25:24 +03:00
|
|
|
if (isGlobalUserProfile()) {
|
2021-01-28 17:33:50 +03:00
|
|
|
// change global
|
|
|
|
http::client()->set_displayname(
|
2021-02-02 20:57:21 +03:00
|
|
|
username.toStdString(), [](mtx::http::RequestErr err) {
|
2021-01-28 17:33:50 +03:00
|
|
|
if (err) {
|
|
|
|
nhlog::net()->warn("could not change username");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// change room username
|
|
|
|
mtx::events::state::Member member;
|
|
|
|
member.display_name = username.toStdString();
|
|
|
|
member.avatar_url =
|
|
|
|
cache::avatarUrl(roomid_,
|
|
|
|
QString::fromStdString(http::client()->user_id().to_string()))
|
|
|
|
.toStdString();
|
|
|
|
member.membership = mtx::events::state::Membership::Join;
|
|
|
|
|
2021-02-01 19:43:04 +03:00
|
|
|
updateRoomMemberState(std::move(member));
|
2021-01-28 17:33:50 +03:00
|
|
|
}
|
2021-01-27 08:33:08 +03:00
|
|
|
}
|
|
|
|
|
2020-10-05 23:12:10 +03:00
|
|
|
void
|
|
|
|
UserProfile::verify(QString device)
|
2020-07-17 23:16:30 +03:00
|
|
|
{
|
2020-10-05 23:12:10 +03:00
|
|
|
if (!device.isEmpty())
|
|
|
|
manager->verifyDevice(userid_, device);
|
2020-08-09 06:05:15 +03:00
|
|
|
else {
|
2020-10-05 23:12:10 +03:00
|
|
|
manager->verifyUser(userid_);
|
2020-08-09 06:05:15 +03:00
|
|
|
}
|
2020-08-30 20:33:10 +03:00
|
|
|
}
|
2020-10-05 23:12:10 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
UserProfile::unverify(QString device)
|
|
|
|
{
|
|
|
|
cache::markDeviceUnverified(userid_.toStdString(), device.toStdString());
|
|
|
|
}
|
2021-01-28 17:33:50 +03:00
|
|
|
|
2021-01-28 21:39:11 +03:00
|
|
|
void
|
2021-01-28 21:45:40 +03:00
|
|
|
UserProfile::setGlobalUsername(const QString &globalUser)
|
2021-01-28 21:39:11 +03:00
|
|
|
{
|
|
|
|
globalUsername = globalUser;
|
|
|
|
emit displayNameChanged();
|
2021-02-01 19:43:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UserProfile::changeAvatar()
|
|
|
|
{
|
|
|
|
const QString picturesFolder =
|
|
|
|
QStandardPaths::writableLocation(QStandardPaths::PicturesLocation);
|
|
|
|
const QString fileName = QFileDialog::getOpenFileName(
|
|
|
|
nullptr, tr("Select an avatar"), picturesFolder, tr("All Files (*)"));
|
|
|
|
|
|
|
|
if (fileName.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
QMimeDatabase db;
|
|
|
|
QMimeType mime = db.mimeTypeForFile(fileName, QMimeDatabase::MatchContent);
|
|
|
|
|
|
|
|
const auto format = mime.name().split("/")[0];
|
|
|
|
|
|
|
|
QFile file{fileName, this};
|
|
|
|
if (format != "image") {
|
2021-02-02 11:00:47 +03:00
|
|
|
emit displayError(tr("The selected file is not an image"));
|
2021-02-01 19:43:04 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!file.open(QIODevice::ReadOnly)) {
|
2021-02-02 11:00:47 +03:00
|
|
|
emit displayError(tr("Error while reading file: %1").arg(file.errorString()));
|
2021-02-01 19:43:04 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-09 19:00:06 +03:00
|
|
|
const auto bin = file.peek(file.size());
|
|
|
|
const auto payload = std::string(bin.data(), bin.size());
|
2021-02-01 19:43:04 +03:00
|
|
|
|
2021-02-02 14:54:08 +03:00
|
|
|
isLoading_ = true;
|
|
|
|
emit loadingChanged();
|
|
|
|
|
2021-02-01 19:43:04 +03:00
|
|
|
// First we need to create a new mxc URI
|
|
|
|
// (i.e upload media to the Matrix content repository) for the new avatar.
|
|
|
|
http::client()->upload(
|
|
|
|
payload,
|
|
|
|
mime.name().toStdString(),
|
|
|
|
QFileInfo(fileName).fileName().toStdString(),
|
|
|
|
[this,
|
|
|
|
payload,
|
|
|
|
mimetype = mime.name().toStdString(),
|
|
|
|
size = payload.size(),
|
|
|
|
room_id = roomid_.toStdString(),
|
|
|
|
content = std::move(bin)](const mtx::responses::ContentURI &res,
|
|
|
|
mtx::http::RequestErr err) {
|
|
|
|
if (err) {
|
|
|
|
nhlog::ui()->error("Failed to upload image", err->matrix_error.error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isGlobalUserProfile()) {
|
|
|
|
http::client()->set_avatar_url(
|
2021-02-02 14:54:08 +03:00
|
|
|
res.content_uri, [this](mtx::http::RequestErr err) {
|
2021-02-01 19:43:04 +03:00
|
|
|
if (err) {
|
|
|
|
nhlog::ui()->error("Failed to set user avatar url",
|
|
|
|
err->matrix_error.error);
|
|
|
|
}
|
2021-02-02 14:54:08 +03:00
|
|
|
|
|
|
|
isLoading_ = false;
|
|
|
|
emit loadingChanged();
|
2021-02-02 15:16:02 +03:00
|
|
|
getGlobalProfileData();
|
2021-02-01 19:43:04 +03:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// change room username
|
|
|
|
mtx::events::state::Member member;
|
|
|
|
member.display_name = cache::displayName(roomid_, userid_).toStdString();
|
|
|
|
member.avatar_url = res.content_uri;
|
|
|
|
member.membership = mtx::events::state::Membership::Join;
|
|
|
|
|
|
|
|
updateRoomMemberState(std::move(member));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UserProfile::updateRoomMemberState(mtx::events::state::Member member)
|
|
|
|
{
|
2021-02-09 19:00:06 +03:00
|
|
|
http::client()->send_state_event(roomid_.toStdString(),
|
|
|
|
http::client()->user_id().to_string(),
|
|
|
|
member,
|
|
|
|
[](mtx::responses::EventId, mtx::http::RequestErr err) {
|
|
|
|
if (err)
|
|
|
|
nhlog::net()->error(
|
|
|
|
"Failed to update room member state : ",
|
|
|
|
err->matrix_error.error);
|
|
|
|
});
|
2021-02-02 14:54:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UserProfile::updateAvatarUrl()
|
|
|
|
{
|
|
|
|
isLoading_ = false;
|
|
|
|
emit loadingChanged();
|
|
|
|
|
|
|
|
emit avatarUrlChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
UserProfile::isLoading() const
|
|
|
|
{
|
|
|
|
return isLoading_;
|
2021-02-02 15:16:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UserProfile::getGlobalProfileData()
|
|
|
|
{
|
|
|
|
http::client()->get_profile(
|
|
|
|
userid_.toStdString(),
|
|
|
|
[this](const mtx::responses::Profile &res, mtx::http::RequestErr err) {
|
|
|
|
if (err) {
|
|
|
|
nhlog::net()->warn("failed to retrieve own profile info");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
emit globalUsernameRetrieved(QString::fromStdString(res.display_name));
|
|
|
|
globalAvatarUrl = QString::fromStdString(res.avatar_url);
|
|
|
|
emit avatarUrlChanged();
|
|
|
|
});
|
2021-02-03 05:17:28 +03:00
|
|
|
}
|