2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2022-01-01 06:57:53 +03:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2021-03-05 02:35:15 +03:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-02-01 19:43:04 +03:00
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QImageReader>
|
|
|
|
#include <QMimeDatabase>
|
|
|
|
#include <QStandardPaths>
|
|
|
|
|
2022-06-16 02:19:26 +03:00
|
|
|
#include "Cache.h"
|
2020-10-08 00:03:14 +03:00
|
|
|
#include "Cache_p.h"
|
2020-06-26 01:54:42 +03:00
|
|
|
#include "ChatPage.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"
|
2021-10-14 23:53:11 +03:00
|
|
|
#include "encryption/DeviceVerificationFlow.h"
|
2022-06-16 02:19:26 +03:00
|
|
|
#include "encryption/VerificationManager.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"
|
2021-10-16 15:17:55 +03:00
|
|
|
#include "ui/UIA.h"
|
2020-05-17 16:34:47 +03:00
|
|
|
|
2022-10-04 00:57:30 +03:00
|
|
|
UserProfile::UserProfile(const QString &roomid,
|
|
|
|
const QString &userid,
|
2020-10-05 23:12:10 +03:00
|
|
|
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)
|
2022-10-04 00:57:30 +03:00
|
|
|
, globalAvatarUrl{QLatin1String("")}
|
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-09-18 01:22:33 +03:00
|
|
|
connect(this,
|
|
|
|
&UserProfile::globalUsernameRetrieved,
|
|
|
|
this,
|
|
|
|
&UserProfile::setGlobalUsername,
|
|
|
|
Qt::QueuedConnection);
|
2021-10-07 20:55:27 +03:00
|
|
|
connect(this, &UserProfile::verificationStatiChanged, &UserProfile::updateVerificationStatus);
|
2021-09-18 01:22:33 +03:00
|
|
|
|
|
|
|
if (isGlobalUserProfile()) {
|
|
|
|
getGlobalProfileData();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!cache::client() || !cache::client()->isDatabaseReady() ||
|
|
|
|
!ChatPage::instance()->timelineManager())
|
|
|
|
return;
|
|
|
|
|
|
|
|
connect(
|
|
|
|
cache::client(), &Cache::verificationStatusChanged, this, [this](const std::string &user_id) {
|
|
|
|
if (user_id != this->userid_.toStdString())
|
|
|
|
return;
|
|
|
|
|
2021-10-07 20:55:27 +03:00
|
|
|
emit verificationStatiChanged();
|
2021-09-18 01:22:33 +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
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
return {
|
|
|
|
{DeviceId, "deviceId"},
|
|
|
|
{DeviceName, "deviceName"},
|
|
|
|
{VerificationStatus, "verificationStatus"},
|
2021-10-17 18:25:16 +03:00
|
|
|
{LastIp, "lastIp"},
|
|
|
|
{LastTs, "lastTs"},
|
2021-09-18 01:22:33 +03:00
|
|
|
};
|
2020-07-04 05:24:28 +03:00
|
|
|
}
|
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
|
|
|
{
|
2021-09-18 01:22:33 +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);
|
2021-10-17 18:25:16 +03:00
|
|
|
case LastIp:
|
|
|
|
return deviceList_[index.row()].lastIp;
|
|
|
|
case LastTs:
|
|
|
|
return deviceList_[index.row()].lastTs;
|
2021-09-18 01:22:33 +03:00
|
|
|
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
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
beginResetModel();
|
|
|
|
this->deviceList_ = std::move(deviceList);
|
|
|
|
endResetModel();
|
2020-07-04 05:24:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
DeviceInfoModel *
|
|
|
|
UserProfile::deviceList()
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
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
|
|
|
{
|
2021-09-18 01:22:33 +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-09-18 01:22:33 +03:00
|
|
|
return isGlobalUserProfile() ? globalUsername : cache::displayName(roomid_, userid_);
|
2020-07-04 05:24:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
|
|
|
UserProfile::avatarUrl()
|
|
|
|
{
|
2021-09-18 01:22:33 +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-12-29 06:28:08 +03:00
|
|
|
return roomid_ == QLatin1String("");
|
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()
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
return isUserVerified;
|
2020-07-17 23:16:30 +03:00
|
|
|
}
|
|
|
|
|
2021-01-12 16:49:15 +03:00
|
|
|
bool
|
|
|
|
UserProfile::userVerificationEnabled() const
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
return hasMasterKey;
|
2021-01-12 16:49:15 +03:00
|
|
|
}
|
|
|
|
bool
|
|
|
|
UserProfile::isSelf() const
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
return this->userid_ == utils::localUser();
|
2021-01-12 16:49:15 +03:00
|
|
|
}
|
|
|
|
|
2021-10-16 15:17:55 +03:00
|
|
|
void
|
|
|
|
UserProfile::signOutDevice(const QString &deviceID)
|
|
|
|
{
|
|
|
|
http::client()->delete_device(
|
|
|
|
deviceID.toStdString(),
|
|
|
|
UIA::instance()->genericHandler(tr("Sign out device %1").arg(deviceID)),
|
|
|
|
[this, deviceID](mtx::http::RequestErr e) {
|
|
|
|
if (e) {
|
|
|
|
nhlog::ui()->critical("Failure when attempting to sign out device {}",
|
|
|
|
deviceID.toStdString());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
nhlog::ui()->info("Device {} successfully signed out!", deviceID.toStdString());
|
|
|
|
// This is us. Let's update the interface accordingly
|
|
|
|
if (isSelf() && deviceID.toStdString() == ::http::client()->device_id()) {
|
|
|
|
ChatPage::instance()->dropToLoginPageCb(tr("You signed out this device."));
|
|
|
|
}
|
|
|
|
refreshDevices();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-09-19 23:55:12 +03:00
|
|
|
void
|
|
|
|
UserProfile::refreshDevices()
|
|
|
|
{
|
2021-10-07 20:59:03 +03:00
|
|
|
cache::client()->markUserKeysOutOfDate({this->userid_.toStdString()});
|
2021-09-19 23:55:12 +03:00
|
|
|
fetchDeviceList(this->userid_);
|
|
|
|
}
|
|
|
|
|
2020-06-28 18:31:34 +03:00
|
|
|
void
|
|
|
|
UserProfile::fetchDeviceList(const QString &userID)
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (!cache::client() || !cache::client()->isDatabaseReady())
|
|
|
|
return;
|
|
|
|
|
|
|
|
cache::client()->query_keys(
|
|
|
|
userID.toStdString(),
|
2021-10-07 20:55:27 +03:00
|
|
|
[other_user_id = userID.toStdString(), this](const UserKeyCache &,
|
2021-09-18 01:22:33 +03:00
|
|
|
mtx::http::RequestErr err) {
|
|
|
|
if (err) {
|
|
|
|
nhlog::net()->warn("failed to query device keys: {},{}",
|
|
|
|
mtx::errors::to_string(err->matrix_error.errcode),
|
|
|
|
static_cast<int>(err->status_code));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure local key cache is up to date
|
|
|
|
cache::client()->query_keys(
|
|
|
|
utils::localUser().toStdString(),
|
2021-10-07 20:55:27 +03:00
|
|
|
[this](const UserKeyCache &, mtx::http::RequestErr err) {
|
2021-09-18 01:22:33 +03:00
|
|
|
using namespace mtx;
|
|
|
|
std::string local_user_id = utils::localUser().toStdString();
|
|
|
|
|
|
|
|
if (err) {
|
|
|
|
nhlog::net()->warn("failed to query device keys: {},{}",
|
|
|
|
mtx::errors::to_string(err->matrix_error.errcode),
|
|
|
|
static_cast<int>(err->status_code));
|
|
|
|
}
|
|
|
|
|
2021-10-07 20:55:27 +03:00
|
|
|
emit verificationStatiChanged();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2021-09-18 01:22:33 +03:00
|
|
|
|
2021-10-07 20:55:27 +03:00
|
|
|
void
|
|
|
|
UserProfile::updateVerificationStatus()
|
|
|
|
{
|
|
|
|
if (!cache::client() || !cache::client()->isDatabaseReady())
|
|
|
|
return;
|
2021-09-18 01:22:33 +03:00
|
|
|
|
2021-10-07 20:55:27 +03:00
|
|
|
auto user_keys = cache::client()->userKeys(userid_.toStdString());
|
|
|
|
if (!user_keys) {
|
|
|
|
this->hasMasterKey = false;
|
|
|
|
this->isUserVerified = crypto::Trust::Unverified;
|
|
|
|
this->deviceList_.reset({});
|
|
|
|
emit userStatusChanged();
|
|
|
|
return;
|
|
|
|
}
|
2021-09-18 01:22:33 +03:00
|
|
|
|
2021-10-07 20:55:27 +03:00
|
|
|
this->hasMasterKey = !user_keys->master_keys.keys.empty();
|
2021-09-18 01:22:33 +03:00
|
|
|
|
2021-10-07 20:55:27 +03:00
|
|
|
std::vector<DeviceInfo> deviceInfo;
|
|
|
|
auto devices = user_keys->device_keys;
|
|
|
|
auto verificationStatus = cache::client()->verificationStatus(userid_.toStdString());
|
2021-09-18 01:22:33 +03:00
|
|
|
|
2021-10-07 20:55:27 +03:00
|
|
|
this->isUserVerified = verificationStatus.user_verified;
|
|
|
|
emit userStatusChanged();
|
2021-09-19 23:55:12 +03:00
|
|
|
|
2021-12-29 08:01:38 +03:00
|
|
|
deviceInfo.reserve(devices.size());
|
2021-10-07 20:55:27 +03:00
|
|
|
for (const auto &d : devices) {
|
|
|
|
auto device = d.second;
|
|
|
|
verification::Status verified =
|
|
|
|
std::find(verificationStatus.verified_devices.begin(),
|
|
|
|
verificationStatus.verified_devices.end(),
|
|
|
|
device.device_id) == verificationStatus.verified_devices.end()
|
|
|
|
? verification::UNVERIFIED
|
|
|
|
: verification::VERIFIED;
|
2021-09-18 01:22:33 +03:00
|
|
|
|
2021-10-07 20:55:27 +03:00
|
|
|
if (isSelf() && device.device_id == ::http::client()->device_id())
|
|
|
|
verified = verification::Status::SELF;
|
|
|
|
|
2021-12-29 08:01:38 +03:00
|
|
|
deviceInfo.emplace_back(QString::fromStdString(d.first),
|
|
|
|
QString::fromStdString(device.unsigned_info.device_display_name),
|
|
|
|
verified);
|
2021-10-07 20:55:27 +03:00
|
|
|
}
|
|
|
|
|
2021-10-16 15:17:55 +03:00
|
|
|
// For self, also query devices without keys
|
|
|
|
if (isSelf()) {
|
|
|
|
http::client()->query_devices(
|
|
|
|
[this, deviceInfo](const mtx::responses::QueryDevices &allDevs,
|
|
|
|
mtx::http::RequestErr err) mutable {
|
|
|
|
if (err) {
|
|
|
|
nhlog::net()->warn("failed to query devices: {} {}",
|
|
|
|
err->matrix_error.error,
|
|
|
|
static_cast<int>(err->status_code));
|
|
|
|
this->deviceList_.queueReset(std::move(deviceInfo));
|
|
|
|
emit devicesChanged();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (const auto &d : allDevs.devices) {
|
|
|
|
// First, check if we already have an entry for this device
|
|
|
|
bool found = false;
|
|
|
|
for (auto &e : deviceInfo) {
|
|
|
|
if (e.device_id.toStdString() == d.device_id) {
|
|
|
|
found = true;
|
|
|
|
// Gottem! Let's fill in the blanks
|
|
|
|
e.lastIp = QString::fromStdString(d.last_seen_ip);
|
2021-12-29 08:01:38 +03:00
|
|
|
e.lastTs = static_cast<qlonglong>(d.last_seen_ts);
|
2021-10-16 15:17:55 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// No entry? Let's add one.
|
|
|
|
if (!found) {
|
2021-12-29 08:01:38 +03:00
|
|
|
deviceInfo.emplace_back(QString::fromStdString(d.device_id),
|
|
|
|
QString::fromStdString(d.display_name),
|
|
|
|
verification::NOT_APPLICABLE,
|
|
|
|
QString::fromStdString(d.last_seen_ip),
|
|
|
|
d.last_seen_ts);
|
2021-10-16 15:17:55 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this->deviceList_.queueReset(std::move(deviceInfo));
|
|
|
|
emit devicesChanged();
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-10-07 20:55:27 +03:00
|
|
|
this->deviceList_.queueReset(std::move(deviceInfo));
|
|
|
|
emit devicesChanged();
|
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()
|
|
|
|
{
|
2022-05-07 19:53:16 +03:00
|
|
|
ChatPage::instance()->banUser(roomid_, this->userid_, QLatin1String(""));
|
2020-06-26 01:54:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// void ignoreUser(){
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
void
|
|
|
|
UserProfile::kickUser()
|
|
|
|
{
|
2022-05-07 19:53:16 +03:00
|
|
|
ChatPage::instance()->kickUser(roomid_, this->userid_, QLatin1String(""));
|
2020-06-26 01:54:42 +03:00
|
|
|
}
|
|
|
|
|
2022-03-29 05:50:25 +03:00
|
|
|
void
|
|
|
|
UserProfile::startChat(bool encryption)
|
|
|
|
{
|
|
|
|
ChatPage::instance()->startChat(this->userid_, encryption);
|
|
|
|
}
|
|
|
|
|
2020-06-26 01:54:42 +03:00
|
|
|
void
|
|
|
|
UserProfile::startChat()
|
|
|
|
{
|
2022-03-29 05:50:25 +03:00
|
|
|
ChatPage::instance()->startChat(this->userid_, std::nullopt);
|
2020-07-17 23:16:30 +03:00
|
|
|
}
|
|
|
|
|
2021-01-27 08:33:08 +03:00
|
|
|
void
|
2022-10-04 00:57:30 +03:00
|
|
|
UserProfile::changeUsername(const QString &username)
|
2021-01-27 08:33:08 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (isGlobalUserProfile()) {
|
|
|
|
// change global
|
|
|
|
http::client()->set_displayname(username.toStdString(), [](mtx::http::RequestErr err) {
|
|
|
|
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;
|
|
|
|
|
|
|
|
updateRoomMemberState(std::move(member));
|
|
|
|
}
|
2021-01-27 08:33:08 +03:00
|
|
|
}
|
|
|
|
|
2021-10-17 18:25:16 +03:00
|
|
|
void
|
2022-10-04 00:57:30 +03:00
|
|
|
UserProfile::changeDeviceName(const QString &deviceID, const QString &deviceName)
|
2021-10-17 18:25:16 +03:00
|
|
|
{
|
|
|
|
http::client()->set_device_name(
|
|
|
|
deviceID.toStdString(), deviceName.toStdString(), [this](mtx::http::RequestErr err) {
|
|
|
|
if (err) {
|
|
|
|
nhlog::net()->warn("could not change device name");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
refreshDevices();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-10-05 23:12:10 +03:00
|
|
|
void
|
|
|
|
UserProfile::verify(QString device)
|
2020-07-17 23:16:30 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
if (!device.isEmpty())
|
2021-10-15 03:44:48 +03:00
|
|
|
manager->verificationManager()->verifyDevice(userid_, device);
|
2021-09-18 01:22:33 +03:00
|
|
|
else {
|
2021-10-15 03:44:48 +03:00
|
|
|
manager->verificationManager()->verifyUser(userid_);
|
2021-09-18 01:22:33 +03:00
|
|
|
}
|
2020-08-30 20:33:10 +03:00
|
|
|
}
|
2020-10-05 23:12:10 +03:00
|
|
|
|
|
|
|
void
|
2022-10-04 00:57:30 +03:00
|
|
|
UserProfile::unverify(const QString &device)
|
2020-10-05 23:12:10 +03:00
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
cache::markDeviceUnverified(userid_.toStdString(), device.toStdString());
|
2020-10-05 23:12:10 +03:00
|
|
|
}
|
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
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
globalUsername = globalUser;
|
|
|
|
emit displayNameChanged();
|
2021-02-01 19:43:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UserProfile::changeAvatar()
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
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);
|
|
|
|
|
2021-12-29 06:28:08 +03:00
|
|
|
const auto format = mime.name().split(QStringLiteral("/"))[0];
|
2021-09-18 01:22:33 +03:00
|
|
|
|
|
|
|
QFile file{fileName, this};
|
2021-12-29 06:28:08 +03:00
|
|
|
if (format != QLatin1String("image")) {
|
2021-09-18 01:22:33 +03:00
|
|
|
emit displayError(tr("The selected file is not an image"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!file.open(QIODevice::ReadOnly)) {
|
|
|
|
emit displayError(tr("Error while reading file: %1").arg(file.errorString()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto bin = file.peek(file.size());
|
|
|
|
const auto payload = std::string(bin.data(), bin.size());
|
|
|
|
|
|
|
|
isLoading_ = true;
|
|
|
|
emit loadingChanged();
|
|
|
|
|
|
|
|
// 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(res.content_uri, [this](mtx::http::RequestErr err) {
|
2021-02-01 19:43:04 +03:00
|
|
|
if (err) {
|
2021-09-18 01:22:33 +03:00
|
|
|
nhlog::ui()->error("Failed to set user avatar url", err->matrix_error.error);
|
2021-02-01 19:43:04 +03:00
|
|
|
}
|
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
isLoading_ = false;
|
|
|
|
emit loadingChanged();
|
|
|
|
getGlobalProfileData();
|
|
|
|
});
|
|
|
|
} 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));
|
|
|
|
}
|
|
|
|
});
|
2021-02-01 19:43:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UserProfile::updateRoomMemberState(mtx::events::state::Member member)
|
|
|
|
{
|
2021-09-18 01:22:33 +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()
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
isLoading_ = false;
|
|
|
|
emit loadingChanged();
|
2021-02-02 14:54:08 +03:00
|
|
|
|
2021-09-18 01:22:33 +03:00
|
|
|
emit avatarUrlChanged();
|
2021-02-02 14:54:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
UserProfile::isLoading() const
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
return isLoading_;
|
2021-02-02 15:16:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UserProfile::getGlobalProfileData()
|
|
|
|
{
|
2022-08-13 17:28:41 +03:00
|
|
|
auto profProx = std::make_shared<UserProfileFetchProxy>();
|
|
|
|
connect(profProx.get(),
|
|
|
|
&UserProfileFetchProxy::profileFetched,
|
|
|
|
this,
|
|
|
|
[this](const mtx::responses::Profile &res) {
|
|
|
|
emit globalUsernameRetrieved(QString::fromStdString(res.display_name));
|
|
|
|
globalAvatarUrl = QString::fromStdString(res.avatar_url);
|
|
|
|
emit avatarUrlChanged();
|
|
|
|
});
|
2021-09-18 01:22:33 +03:00
|
|
|
|
2022-08-13 17:28:41 +03:00
|
|
|
http::client()->get_profile(userid_.toStdString(),
|
|
|
|
[prox = std::move(profProx), user = userid_.toStdString()](
|
|
|
|
const mtx::responses::Profile &res, mtx::http::RequestErr err) {
|
|
|
|
if (err) {
|
|
|
|
nhlog::net()->warn("failed to retrieve profile info for {}",
|
|
|
|
user);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
emit prox->profileFetched(res);
|
|
|
|
});
|
2021-02-03 05:17:28 +03:00
|
|
|
}
|
2021-09-05 19:15:25 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
UserProfile::openGlobalProfile()
|
|
|
|
{
|
2021-09-18 01:22:33 +03:00
|
|
|
emit manager->openGlobalUserProfile(userid_);
|
2021-09-05 19:15:25 +03:00
|
|
|
}
|