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
|
/******************************************************************************
* Copyright (C) 2015 Felix Rohrbach <kde@fxrh.de>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "user.h"
#include "connection.h"
#include "avatar.h"
#include "events/event.h"
#include "events/roommemberevent.h"
#include "jobs/generated/profile.h"
#include <QtCore/QTimer>
#include <QtCore/QRegularExpression>
using namespace QMatrixClient;
class User::Private
{
public:
Private(QString userId, Connection* connection)
: userId(std::move(userId)), connection(connection)
, avatar(connection, QIcon::fromTheme(QStringLiteral("user-available")))
{ }
QString userId;
QString name;
QString bridged;
Connection* connection;
Avatar avatar;
};
User::User(QString userId, Connection* connection)
: QObject(connection), d(new Private(std::move(userId), connection))
{ }
User::~User()
{
delete d;
}
QString User::id() const
{
return d->userId;
}
QString User::name() const
{
return d->name;
}
void User::updateName(const QString& newName)
{
const auto oldName = name();
if (d->name != newName)
{
d->name = newName;
emit nameChanged(this, oldName);
}
}
void User::rename(const QString& newName)
{
auto job = d->connection->callApi<SetDisplayNameJob>(id(), newName);
connect(job, &BaseJob::success, this, [=] { updateName(newName); });
}
QString User::displayname() const
{
if( !d->name.isEmpty() )
return d->name;
return d->userId;
}
QString User::bridged() const {
return d->bridged;
}
Avatar& User::avatarObject()
{
return d->avatar;
}
QPixmap User::avatar(int width, int height)
{
return d->avatar.get(width, height, [=] { emit avatarChanged(this); });
}
QUrl User::avatarUrl() const
{
return d->avatar.url();
}
void User::processEvent(Event* event)
{
if( event->type() == EventType::RoomMember )
{
auto e = static_cast<RoomMemberEvent*>(event);
if (e->membership() == MembershipType::Leave)
return;
auto newName = e->displayName();
QRegularExpression reSuffix(" \\((IRC|Gitter|Telegram)\\)$");
auto match = reSuffix.match(newName);
if (match.hasMatch())
{
d->bridged = match.captured(1);
newName.truncate(match.capturedStart(0));
}
updateName(newName);
if (d->avatar.updateUrl(e->avatarUrl()))
emit avatarChanged(this);
}
}
|