1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
/******************************************************************************
* SPDX-FileCopyrightText: 2015 Felix Rohrbach <kde@fxrh.de>
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "user.h"
#include "avatar.h"
#include "connection.h"
#include "room.h"
#include "csapi/content-repo.h"
#include "csapi/profile.h"
#include "csapi/room_state.h"
#include "events/event.h"
#include "events/roommemberevent.h"
#include <QtCore/QElapsedTimer>
#include <QtCore/QPointer>
#include <QtCore/QRegularExpression>
#include <QtCore/QStringBuilder>
#include <QtCore/QTimer>
#include <functional>
using namespace Quotient;
using std::move;
class User::Private {
public:
Private(QString userId) : id(move(userId)), hueF(stringToHueF(id)) { }
QString id;
qreal hueF;
QString defaultName;
Avatar defaultAvatar;
// NB: This container is ever-growing. Even if the user no more scrolls
// the timeline that far back, historical avatars are still kept around.
// This is consistent with the rest of Quotient, as room timelines
// are never vacuumed either. This will probably change in the future.
/// Map of mediaId to Avatar objects
static UnorderedMap<QString, Avatar> otherAvatars;
};
decltype(User::Private::otherAvatars) User::Private::otherAvatars {};
User::User(QString userId, Connection* connection)
: QObject(connection), d(new Private(move(userId)))
{
setObjectName(id());
}
Connection* User::connection() const
{
Q_ASSERT(parent());
return static_cast<Connection*>(parent());
}
User::~User() = default;
QString User::id() const { return d->id; }
bool User::isGuest() const
{
Q_ASSERT(!d->id.isEmpty() && d->id.startsWith('@'));
auto it = std::find_if_not(d->id.cbegin() + 1, d->id.cend(),
[](QChar c) { return c.isDigit(); });
Q_ASSERT(it != d->id.end());
return *it == ':';
}
int User::hue() const { return int(hueF() * 359); }
QString User::name(const Room* room) const
{
return room ? room->memberName(id()) : d->defaultName;
}
QString User::rawName(const Room* room) const { return name(room); }
void User::rename(const QString& newName)
{
const auto actualNewName = sanitized(newName);
if (actualNewName == d->defaultName)
return; // Nothing to do
connect(connection()->callApi<SetDisplayNameJob>(id(), actualNewName),
&BaseJob::success, this, [this, actualNewName] {
// Check again, it could have changed meanwhile
if (actualNewName != d->defaultName) {
d->defaultName = actualNewName;
emit defaultNameChanged();
} else
qCWarning(MAIN)
<< "User" << id() << "already has profile name set to"
<< actualNewName;
});
}
void User::rename(const QString& newName, const Room* r)
{
if (!r) {
qCWarning(MAIN) << "Passing a null room to two-argument User::rename()"
"is incorrect; client developer, please fix it";
rename(newName);
return;
}
Q_ASSERT_X(r->memberJoinState(this) == JoinState::Join, __FUNCTION__,
"Attempt to rename a user that's not a room member");
const auto actualNewName = sanitized(newName);
MemberEventContent evtC;
evtC.displayName = actualNewName;
r->setState<RoomMemberEvent>(id(), move(evtC));
// The state will be updated locally after it arrives with sync
}
template <typename SourceT>
inline bool User::doSetAvatar(SourceT&& source)
{
return d->defaultAvatar.upload(
connection(), source, [this](const QString& contentUri) {
auto* j = connection()->callApi<SetAvatarUrlJob>(id(), contentUri);
connect(j, &BaseJob::success, this,
[this, newUrl = QUrl(contentUri)] {
if (newUrl == d->defaultAvatar.url()) {
d->defaultAvatar.updateUrl(newUrl);
emit defaultAvatarChanged();
} else
qCWarning(MAIN) << "User" << id()
<< "already has avatar URL set to"
<< newUrl.toDisplayString();
});
});
}
bool User::setAvatar(const QString& fileName)
{
return doSetAvatar(fileName);
}
bool User::setAvatar(QIODevice* source)
{
return doSetAvatar(source);
}
void User::requestDirectChat() { connection()->requestDirectChat(this); }
void User::ignore() { connection()->addToIgnoredUsers(this); }
void User::unmarkIgnore() { connection()->removeFromIgnoredUsers(this); }
bool User::isIgnored() const { return connection()->isIgnored(this); }
QString User::displayname(const Room* room) const
{
return room ? room->safeMemberName(id())
: d->defaultName.isEmpty() ? d->id : d->defaultName;
}
QString User::fullName(const Room* room) const
{
const auto displayName = name(room);
return displayName.isEmpty() ? id() : (displayName % " (" % id() % ')');
}
QString User::bridged() const { return {}; }
const Avatar& User::avatarObject(const Room* room) const
{
if (!room)
return d->defaultAvatar;
const auto& url = room->memberAvatarUrl(id());
const auto& mediaId = url.authority() + url.path();
return d->otherAvatars.try_emplace(mediaId, url).first->second;
}
QImage User::avatar(int dimension, const Room* room)
{
return avatar(dimension, dimension, room);
}
QImage User::avatar(int width, int height, const Room* room)
{
return avatar(width, height, room, [] {});
}
QImage User::avatar(int width, int height, const Room* room,
const Avatar::get_callback_t& callback)
{
return avatarObject(room).get(connection(), width, height, callback);
}
QString User::avatarMediaId(const Room* room) const
{
return avatarObject(room).mediaId();
}
QUrl User::avatarUrl(const Room* room) const
{
return avatarObject(room).url();
}
qreal User::hueF() const { return d->hueF; }
|