ircuser: Fix setting of away message time by pre-0.13 cores
[quassel.git] / src / common / ircuser.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "ircuser.h"
22 #include "util.h"
23
24 #include "network.h"
25 #include "signalproxy.h"
26 #include "ircchannel.h"
27
28 #include <QTextCodec>
29 #include <QDebug>
30
31 INIT_SYNCABLE_OBJECT(IrcUser)
32 IrcUser::IrcUser(const QString &hostmask, Network *network) : SyncableObject(network),
33     _initialized(false),
34     _nick(nickFromMask(hostmask)),
35     _user(userFromMask(hostmask)),
36     _host(hostFromMask(hostmask)),
37     _realName(),
38     _awayMessage(),
39     _away(false),
40     _server(),
41     // _idleTime(QDateTime::currentDateTime()),
42     _ircOperator(),
43     _lastAwayMessageTime(),
44     _whoisServiceReply(),
45     _encrypted(false),
46     _network(network),
47     _codecForEncoding(0),
48     _codecForDecoding(0)
49 {
50     updateObjectName();
51     _lastAwayMessageTime.setTimeSpec(Qt::UTC);
52     _lastAwayMessageTime.setMSecsSinceEpoch(0);
53 }
54
55
56 IrcUser::~IrcUser()
57 {
58 }
59
60
61 // ====================
62 //  PUBLIC:
63 // ====================
64
65 QString IrcUser::hostmask() const
66 {
67     return QString("%1!%2@%3").arg(nick()).arg(user()).arg(host());
68 }
69
70
71 QDateTime IrcUser::idleTime()
72 {
73     if ((QDateTime::currentDateTime().toMSecsSinceEpoch() - _idleTimeSet.toMSecsSinceEpoch())
74             > 1200000) {
75         // 20 * 60 * 1000 = 1200000
76         // 20 minutes have elapsed, clear the known idle time as it's likely inaccurate by now
77         _idleTime = QDateTime();
78     }
79     return _idleTime;
80 }
81
82
83 QStringList IrcUser::channels() const
84 {
85     QStringList chanList;
86     IrcChannel *channel;
87     foreach(channel, _channels) {
88         chanList << channel->name();
89     }
90     return chanList;
91 }
92
93
94 void IrcUser::setCodecForEncoding(const QString &name)
95 {
96     setCodecForEncoding(QTextCodec::codecForName(name.toLatin1()));
97 }
98
99
100 void IrcUser::setCodecForEncoding(QTextCodec *codec)
101 {
102     _codecForEncoding = codec;
103 }
104
105
106 void IrcUser::setCodecForDecoding(const QString &name)
107 {
108     setCodecForDecoding(QTextCodec::codecForName(name.toLatin1()));
109 }
110
111
112 void IrcUser::setCodecForDecoding(QTextCodec *codec)
113 {
114     _codecForDecoding = codec;
115 }
116
117
118 QString IrcUser::decodeString(const QByteArray &text) const
119 {
120     if (!codecForDecoding()) return network()->decodeString(text);
121     return ::decodeString(text, codecForDecoding());
122 }
123
124
125 QByteArray IrcUser::encodeString(const QString &string) const
126 {
127     if (codecForEncoding()) {
128         return codecForEncoding()->fromUnicode(string);
129     }
130     return network()->encodeString(string);
131 }
132
133
134 // ====================
135 //  PUBLIC SLOTS:
136 // ====================
137 void IrcUser::setUser(const QString &user)
138 {
139     if (!user.isEmpty() && _user != user) {
140         _user = user;
141         SYNC(ARG(user));
142     }
143 }
144
145
146 void IrcUser::setRealName(const QString &realName)
147 {
148     if (!realName.isEmpty() && _realName != realName) {
149         _realName = realName;
150         SYNC(ARG(realName))
151     }
152 }
153
154
155 void IrcUser::setAccount(const QString &account)
156 {
157     if (_account != account) {
158         _account = account;
159         SYNC(ARG(account))
160     }
161 }
162
163
164 void IrcUser::setAway(bool away)
165 {
166     if (away != _away) {
167         _away = away;
168         markAwayChanged();
169         SYNC(ARG(away))
170         emit awaySet(away);
171     }
172 }
173
174
175 void IrcUser::setAwayMessage(const QString &awayMessage)
176 {
177     if (!awayMessage.isEmpty() && _awayMessage != awayMessage) {
178         _awayMessage = awayMessage;
179         markAwayChanged();
180         SYNC(ARG(awayMessage))
181     }
182 }
183
184
185 void IrcUser::setIdleTime(const QDateTime &idleTime)
186 {
187     if (idleTime.isValid() && _idleTime != idleTime) {
188         _idleTime = idleTime;
189         _idleTimeSet = QDateTime::currentDateTime();
190         SYNC(ARG(idleTime))
191     }
192 }
193
194
195 void IrcUser::setLoginTime(const QDateTime &loginTime)
196 {
197     if (loginTime.isValid() && _loginTime != loginTime) {
198         _loginTime = loginTime;
199         SYNC(ARG(loginTime))
200     }
201 }
202
203
204 void IrcUser::setServer(const QString &server)
205 {
206     if (!server.isEmpty() && _server != server) {
207         _server = server;
208         SYNC(ARG(server))
209     }
210 }
211
212
213 void IrcUser::setIrcOperator(const QString &ircOperator)
214 {
215     if (!ircOperator.isEmpty() && _ircOperator != ircOperator) {
216         _ircOperator = ircOperator;
217         SYNC(ARG(ircOperator))
218     }
219 }
220
221
222 // This function is only ever called by SYNC calls from legacy cores (pre-0.13).
223 // Therefore, no SYNC call is needed here.
224 void IrcUser::setLastAwayMessage(int lastAwayMessage)
225 {
226 #if QT_VERSION >= 0x050800
227     QDateTime lastAwayMessageTime = QDateTime::fromSecsSinceEpoch(lastAwayMessage);
228 #else
229     // toSecsSinceEpoch() was added in Qt 5.8.  Manually downconvert to seconds for now.
230     // See https://doc.qt.io/qt-5/qdatetime.html#toMSecsSinceEpoch
231     QDateTime lastAwayMessageTime = QDateTime::fromMSecsSinceEpoch(lastAwayMessage * 1000);
232 #endif
233     lastAwayMessageTime.setTimeSpec(Qt::UTC);
234     setLastAwayMessageTime(lastAwayMessageTime);
235 }
236
237
238 void IrcUser::setLastAwayMessageTime(const QDateTime &lastAwayMessageTime)
239 {
240     if (lastAwayMessageTime > _lastAwayMessageTime) {
241         _lastAwayMessageTime = lastAwayMessageTime;
242         SYNC(ARG(lastAwayMessageTime))
243     }
244 }
245
246
247 void IrcUser::setHost(const QString &host)
248 {
249     if (!host.isEmpty() && _host != host) {
250         _host = host;
251         SYNC(ARG(host))
252     }
253 }
254
255
256 void IrcUser::setNick(const QString &nick)
257 {
258     if (!nick.isEmpty() && nick != _nick) {
259         _nick = nick;
260         updateObjectName();
261         SYNC(ARG(nick))
262         emit nickSet(nick);
263     }
264 }
265
266
267 void IrcUser::setWhoisServiceReply(const QString &whoisServiceReply)
268 {
269     if (!whoisServiceReply.isEmpty() && whoisServiceReply != _whoisServiceReply) {
270         _whoisServiceReply = whoisServiceReply;
271         SYNC(ARG(whoisServiceReply))
272     }
273 }
274
275
276 void IrcUser::setSuserHost(const QString &suserHost)
277 {
278     if (!suserHost.isEmpty() && suserHost != _suserHost) {
279         _suserHost = suserHost;
280         SYNC(ARG(suserHost))
281     }
282 }
283
284
285 void IrcUser::setEncrypted(bool encrypted)
286 {
287     _encrypted = encrypted;
288     emit encryptedSet(encrypted);
289     SYNC(ARG(encrypted))
290 }
291
292
293 void IrcUser::updateObjectName()
294 {
295     renameObject(QString::number(network()->networkId().toInt()) + "/" + _nick);
296 }
297
298
299 void IrcUser::updateHostmask(const QString &mask)
300 {
301     if (mask == hostmask())
302         return;
303
304     QString user = userFromMask(mask);
305     QString host = hostFromMask(mask);
306     setUser(user);
307     setHost(host);
308 }
309
310
311 void IrcUser::joinChannel(IrcChannel *channel, bool skip_channel_join)
312 {
313     Q_ASSERT(channel);
314     if (!_channels.contains(channel)) {
315         _channels.insert(channel);
316         if (!skip_channel_join)
317             channel->joinIrcUser(this);
318     }
319 }
320
321
322 void IrcUser::joinChannel(const QString &channelname)
323 {
324     joinChannel(network()->newIrcChannel(channelname));
325 }
326
327
328 void IrcUser::partChannel(IrcChannel *channel)
329 {
330     if (_channels.contains(channel)) {
331         _channels.remove(channel);
332         disconnect(channel, 0, this, 0);
333         channel->part(this);
334         QString channelName = channel->name();
335         SYNC_OTHER(partChannel, ARG(channelName))
336         if (_channels.isEmpty() && !network()->isMe(this))
337             quit();
338     }
339 }
340
341
342 void IrcUser::partChannel(const QString &channelname)
343 {
344     IrcChannel *channel = network()->ircChannel(channelname);
345     if (channel == 0) {
346         qWarning() << "IrcUser::partChannel(): received part for unknown Channel" << channelname;
347     }
348     else {
349         partChannel(channel);
350     }
351 }
352
353
354 void IrcUser::quit()
355 {
356     QList<IrcChannel *> channels = _channels.toList();
357     _channels.clear();
358     foreach(IrcChannel *channel, channels) {
359         disconnect(channel, 0, this, 0);
360         channel->part(this);
361     }
362     network()->removeIrcUser(this);
363     SYNC(NO_ARG)
364     emit quited();
365 }
366
367
368 void IrcUser::channelDestroyed()
369 {
370     // private slot!
371     IrcChannel *channel = static_cast<IrcChannel *>(sender());
372     if (_channels.contains(channel)) {
373         _channels.remove(channel);
374         if (_channels.isEmpty() && !network()->isMe(this))
375             quit();
376     }
377 }
378
379
380 void IrcUser::setUserModes(const QString &modes)
381 {
382     if (_userModes != modes) {
383         _userModes = modes;
384         SYNC(ARG(modes))
385         emit userModesSet(modes);
386     }
387 }
388
389
390 void IrcUser::addUserModes(const QString &modes)
391 {
392     if (modes.isEmpty())
393         return;
394
395     // Don't needlessly sync when no changes are made
396     bool changesMade = false;
397     for (int i = 0; i < modes.count(); i++) {
398         if (!_userModes.contains(modes[i])) {
399             _userModes += modes[i];
400             changesMade = true;
401         }
402     }
403
404     if (changesMade) {
405         SYNC(ARG(modes))
406         emit userModesAdded(modes);
407     }
408 }
409
410
411 void IrcUser::removeUserModes(const QString &modes)
412 {
413     if (modes.isEmpty())
414         return;
415
416     for (int i = 0; i < modes.count(); i++) {
417         _userModes.remove(modes[i]);
418     }
419     SYNC(ARG(modes))
420     emit userModesRemoved(modes);
421 }
422
423
424 void IrcUser::setLastChannelActivity(BufferId buffer, const QDateTime &time)
425 {
426     _lastActivity[buffer] = time;
427     emit lastChannelActivityUpdated(buffer, time);
428 }
429
430
431 void IrcUser::setLastSpokenTo(BufferId buffer, const QDateTime &time)
432 {
433     _lastSpokenTo[buffer] = time;
434     emit lastSpokenToUpdated(buffer, time);
435 }