Merge pull request #152 from heftig/master
[quassel.git] / src / core / corenetwork.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2015 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 <QHostInfo>
22
23 #include "corenetwork.h"
24
25 #include "core.h"
26 #include "coreidentity.h"
27 #include "corenetworkconfig.h"
28 #include "coresession.h"
29 #include "coreuserinputhandler.h"
30 #include "networkevent.h"
31
32 INIT_SYNCABLE_OBJECT(CoreNetwork)
33 CoreNetwork::CoreNetwork(const NetworkId &networkid, CoreSession *session)
34     : Network(networkid, session),
35     _coreSession(session),
36     _userInputHandler(new CoreUserInputHandler(this)),
37     _autoReconnectCount(0),
38     _quitRequested(false),
39
40     _previousConnectionAttemptFailed(false),
41     _lastUsedServerIndex(0),
42
43     _lastPingTime(0),
44     _pingCount(0),
45     _sendPings(false),
46     _requestedUserModes('-')
47 {
48     _autoReconnectTimer.setSingleShot(true);
49     connect(&_socketCloseTimer, SIGNAL(timeout()), this, SLOT(socketCloseTimeout()));
50
51     setPingInterval(networkConfig()->pingInterval());
52     connect(&_pingTimer, SIGNAL(timeout()), this, SLOT(sendPing()));
53
54     setAutoWhoDelay(networkConfig()->autoWhoDelay());
55     setAutoWhoInterval(networkConfig()->autoWhoInterval());
56
57     QHash<QString, QString> channels = coreSession()->persistentChannels(networkId());
58     foreach(QString chan, channels.keys()) {
59         _channelKeys[chan.toLower()] = channels[chan];
60     }
61
62     connect(networkConfig(), SIGNAL(pingTimeoutEnabledSet(bool)), SLOT(enablePingTimeout(bool)));
63     connect(networkConfig(), SIGNAL(pingIntervalSet(int)), SLOT(setPingInterval(int)));
64     connect(networkConfig(), SIGNAL(autoWhoEnabledSet(bool)), SLOT(setAutoWhoEnabled(bool)));
65     connect(networkConfig(), SIGNAL(autoWhoIntervalSet(int)), SLOT(setAutoWhoInterval(int)));
66     connect(networkConfig(), SIGNAL(autoWhoDelaySet(int)), SLOT(setAutoWhoDelay(int)));
67
68     connect(&_autoReconnectTimer, SIGNAL(timeout()), this, SLOT(doAutoReconnect()));
69     connect(&_autoWhoTimer, SIGNAL(timeout()), this, SLOT(sendAutoWho()));
70     connect(&_autoWhoCycleTimer, SIGNAL(timeout()), this, SLOT(startAutoWhoCycle()));
71     connect(&_tokenBucketTimer, SIGNAL(timeout()), this, SLOT(fillBucketAndProcessQueue()));
72
73     connect(&socket, SIGNAL(connected()), this, SLOT(socketInitialized()));
74     connect(&socket, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(socketError(QAbstractSocket::SocketError)));
75     connect(&socket, SIGNAL(stateChanged(QAbstractSocket::SocketState)), this, SLOT(socketStateChanged(QAbstractSocket::SocketState)));
76     connect(&socket, SIGNAL(readyRead()), this, SLOT(socketHasData()));
77 #ifdef HAVE_SSL
78     connect(&socket, SIGNAL(encrypted()), this, SLOT(socketInitialized()));
79     connect(&socket, SIGNAL(sslErrors(const QList<QSslError> &)), this, SLOT(sslErrors(const QList<QSslError> &)));
80 #endif
81     connect(this, SIGNAL(newEvent(Event *)), coreSession()->eventManager(), SLOT(postEvent(Event *)));
82
83     if (Quassel::isOptionSet("oidentd")) {
84         connect(this, SIGNAL(socketInitialized(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Core::instance()->oidentdConfigGenerator(), SLOT(addSocket(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Qt::BlockingQueuedConnection);
85         connect(this, SIGNAL(socketDisconnected(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Core::instance()->oidentdConfigGenerator(), SLOT(removeSocket(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)));
86     }
87 }
88
89
90 CoreNetwork::~CoreNetwork()
91 {
92     if (connectionState() != Disconnected && connectionState() != Network::Reconnecting)
93         disconnectFromIrc(false);  // clean up, but this does not count as requested disconnect!
94     disconnect(&socket, 0, this, 0); // this keeps the socket from triggering events during clean up
95     delete _userInputHandler;
96 }
97
98
99 QString CoreNetwork::channelDecode(const QString &bufferName, const QByteArray &string) const
100 {
101     if (!bufferName.isEmpty()) {
102         IrcChannel *channel = ircChannel(bufferName);
103         if (channel)
104             return channel->decodeString(string);
105     }
106     return decodeString(string);
107 }
108
109
110 QString CoreNetwork::userDecode(const QString &userNick, const QByteArray &string) const
111 {
112     IrcUser *user = ircUser(userNick);
113     if (user)
114         return user->decodeString(string);
115     return decodeString(string);
116 }
117
118
119 QByteArray CoreNetwork::channelEncode(const QString &bufferName, const QString &string) const
120 {
121     if (!bufferName.isEmpty()) {
122         IrcChannel *channel = ircChannel(bufferName);
123         if (channel)
124             return channel->encodeString(string);
125     }
126     return encodeString(string);
127 }
128
129
130 QByteArray CoreNetwork::userEncode(const QString &userNick, const QString &string) const
131 {
132     IrcUser *user = ircUser(userNick);
133     if (user)
134         return user->encodeString(string);
135     return encodeString(string);
136 }
137
138
139 void CoreNetwork::connectToIrc(bool reconnecting)
140 {
141     if (!reconnecting && useAutoReconnect() && _autoReconnectCount == 0) {
142         _autoReconnectTimer.setInterval(autoReconnectInterval() * 1000);
143         if (unlimitedReconnectRetries())
144             _autoReconnectCount = -1;
145         else
146             _autoReconnectCount = autoReconnectRetries();
147     }
148     if (serverList().isEmpty()) {
149         qWarning() << "Server list empty, ignoring connect request!";
150         return;
151     }
152     CoreIdentity *identity = identityPtr();
153     if (!identity) {
154         qWarning() << "Invalid identity configures, ignoring connect request!";
155         return;
156     }
157
158     // cleaning up old quit reason
159     _quitReason.clear();
160
161     // use a random server?
162     if (useRandomServer()) {
163         _lastUsedServerIndex = qrand() % serverList().size();
164     }
165     else if (_previousConnectionAttemptFailed) {
166         // cycle to next server if previous connection attempt failed
167         displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Connection failed. Cycling to next Server"));
168         if (++_lastUsedServerIndex >= serverList().size()) {
169             _lastUsedServerIndex = 0;
170         }
171     }
172     _previousConnectionAttemptFailed = false;
173
174     Server server = usedServer();
175     displayStatusMsg(tr("Connecting to %1:%2...").arg(server.host).arg(server.port));
176     displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Connecting to %1:%2...").arg(server.host).arg(server.port));
177
178     if (server.useProxy) {
179         QNetworkProxy proxy((QNetworkProxy::ProxyType)server.proxyType, server.proxyHost, server.proxyPort, server.proxyUser, server.proxyPass);
180         socket.setProxy(proxy);
181     }
182     else {
183         socket.setProxy(QNetworkProxy::NoProxy);
184     }
185
186     enablePingTimeout();
187
188     // Qt caches DNS entries for a minute, resulting in round-robin (e.g. for chat.freenode.net) not working if several users
189     // connect at a similar time. QHostInfo::fromName(), however, always performs a fresh lookup, overwriting the cache entry.
190     QHostInfo::fromName(server.host);
191
192 #ifdef HAVE_SSL
193     if (server.useSsl) {
194         CoreIdentity *identity = identityPtr();
195         if (identity) {
196             socket.setLocalCertificate(identity->sslCert());
197             socket.setPrivateKey(identity->sslKey());
198         }
199         socket.connectToHostEncrypted(server.host, server.port);
200     }
201     else {
202         socket.connectToHost(server.host, server.port);
203     }
204 #else
205     socket.connectToHost(server.host, server.port);
206 #endif
207 }
208
209
210 void CoreNetwork::disconnectFromIrc(bool requested, const QString &reason, bool withReconnect)
211 {
212     _quitRequested = requested; // see socketDisconnected();
213     if (!withReconnect) {
214         _autoReconnectTimer.stop();
215         _autoReconnectCount = 0; // prohibiting auto reconnect
216     }
217     disablePingTimeout();
218     _msgQueue.clear();
219
220     IrcUser *me_ = me();
221     if (me_) {
222         QString awayMsg;
223         if (me_->isAway())
224             awayMsg = me_->awayMessage();
225         Core::setAwayMessage(userId(), networkId(), awayMsg);
226     }
227
228     if (reason.isEmpty() && identityPtr())
229         _quitReason = identityPtr()->quitReason();
230     else
231         _quitReason = reason;
232
233     displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Disconnecting. (%1)").arg((!requested && !withReconnect) ? tr("Core Shutdown") : _quitReason));
234     if (socket.state() == QAbstractSocket::UnconnectedState) {
235         socketDisconnected();
236     } else {
237         if (socket.state() == QAbstractSocket::ConnectedState) {
238             userInputHandler()->issueQuit(_quitReason);
239         } else {
240             socket.close();
241         }
242         if (requested || withReconnect) {
243             // the irc server has 10 seconds to close the socket
244             _socketCloseTimer.start(10000);
245         }
246     }
247 }
248
249
250 void CoreNetwork::userInput(BufferInfo buf, QString msg)
251 {
252     userInputHandler()->handleUserInput(buf, msg);
253 }
254
255
256 void CoreNetwork::putRawLine(QByteArray s)
257 {
258     if (_tokenBucket > 0)
259         writeToSocket(s);
260     else
261         _msgQueue.append(s);
262 }
263
264
265 void CoreNetwork::putCmd(const QString &cmd, const QList<QByteArray> &params, const QByteArray &prefix)
266 {
267     QByteArray msg;
268
269     if (!prefix.isEmpty())
270         msg += ":" + prefix + " ";
271     msg += cmd.toUpper().toLatin1();
272
273     for (int i = 0; i < params.size(); i++) {
274         msg += " ";
275
276         if (i == params.size() - 1 && (params[i].contains(' ') || (!params[i].isEmpty() && params[i][0] == ':')))
277             msg += ":";
278
279         msg += params[i];
280     }
281
282     putRawLine(msg);
283 }
284
285
286 void CoreNetwork::putCmd(const QString &cmd, const QList<QList<QByteArray>> &params, const QByteArray &prefix)
287 {
288     QListIterator<QList<QByteArray>> i(params);
289     while (i.hasNext()) {
290         QList<QByteArray> msg = i.next();
291         putCmd(cmd, msg, prefix);
292     }
293 }
294
295
296 void CoreNetwork::setChannelJoined(const QString &channel)
297 {
298     _autoWhoQueue.prepend(channel.toLower()); // prepend so this new chan is the first to be checked
299
300     Core::setChannelPersistent(userId(), networkId(), channel, true);
301     Core::setPersistentChannelKey(userId(), networkId(), channel, _channelKeys[channel.toLower()]);
302 }
303
304
305 void CoreNetwork::setChannelParted(const QString &channel)
306 {
307     removeChannelKey(channel);
308     _autoWhoQueue.removeAll(channel.toLower());
309     _autoWhoPending.remove(channel.toLower());
310
311     Core::setChannelPersistent(userId(), networkId(), channel, false);
312 }
313
314
315 void CoreNetwork::addChannelKey(const QString &channel, const QString &key)
316 {
317     if (key.isEmpty()) {
318         removeChannelKey(channel);
319     }
320     else {
321         _channelKeys[channel.toLower()] = key;
322     }
323 }
324
325
326 void CoreNetwork::removeChannelKey(const QString &channel)
327 {
328     _channelKeys.remove(channel.toLower());
329 }
330
331
332 #ifdef HAVE_QCA2
333 Cipher *CoreNetwork::cipher(const QString &target)
334 {
335     if (target.isEmpty())
336         return 0;
337
338     if (!Cipher::neededFeaturesAvailable())
339         return 0;
340
341     CoreIrcChannel *channel = qobject_cast<CoreIrcChannel *>(ircChannel(target));
342     if (channel) {
343         return channel->cipher();
344     }
345     CoreIrcUser *user = qobject_cast<CoreIrcUser *>(ircUser(target));
346     if (user) {
347         return user->cipher();
348     } else if (!isChannelName(target)) {
349         return qobject_cast<CoreIrcUser*>(newIrcUser(target))->cipher();
350     }
351     return 0;
352 }
353
354
355 QByteArray CoreNetwork::cipherKey(const QString &target) const
356 {
357     CoreIrcChannel *c = qobject_cast<CoreIrcChannel*>(ircChannel(target));
358     if (c)
359         return c->cipher()->key();
360
361     CoreIrcUser *u = qobject_cast<CoreIrcUser*>(ircUser(target));
362     if (u)
363         return u->cipher()->key();
364
365     return QByteArray();
366 }
367
368
369 void CoreNetwork::setCipherKey(const QString &target, const QByteArray &key)
370 {
371     CoreIrcChannel *c = qobject_cast<CoreIrcChannel*>(ircChannel(target));
372     if (c) {
373         c->setEncrypted(c->cipher()->setKey(key));
374         return;
375     }
376
377     CoreIrcUser *u = qobject_cast<CoreIrcUser*>(ircUser(target));
378     if (!u && !isChannelName(target))
379         u = qobject_cast<CoreIrcUser*>(newIrcUser(target));
380
381     if (u) {
382         u->setEncrypted(u->cipher()->setKey(key));
383         return;
384     }
385 }
386
387
388 bool CoreNetwork::cipherUsesCBC(const QString &target)
389 {
390     CoreIrcChannel *c = qobject_cast<CoreIrcChannel*>(ircChannel(target));
391     if (c)
392         return c->cipher()->usesCBC();
393     CoreIrcUser *u = qobject_cast<CoreIrcUser*>(ircUser(target));
394     if (u)
395         return u->cipher()->usesCBC();
396
397     return false;
398 }
399 #endif /* HAVE_QCA2 */
400
401 bool CoreNetwork::setAutoWhoDone(const QString &channel)
402 {
403     QString chan = channel.toLower();
404     if (_autoWhoPending.value(chan, 0) <= 0)
405         return false;
406     if (--_autoWhoPending[chan] <= 0)
407         _autoWhoPending.remove(chan);
408     return true;
409 }
410
411
412 void CoreNetwork::setMyNick(const QString &mynick)
413 {
414     Network::setMyNick(mynick);
415     if (connectionState() == Network::Initializing)
416         networkInitialized();
417 }
418
419
420 void CoreNetwork::socketHasData()
421 {
422     while (socket.canReadLine()) {
423         QByteArray s = socket.readLine();
424         if (s.endsWith("\r\n"))
425             s.chop(2);
426         else if (s.endsWith("\n"))
427             s.chop(1);
428         NetworkDataEvent *event = new NetworkDataEvent(EventManager::NetworkIncoming, this, s);
429         event->setTimestamp(QDateTime::currentDateTimeUtc());
430         emit newEvent(event);
431     }
432 }
433
434
435 void CoreNetwork::socketError(QAbstractSocket::SocketError error)
436 {
437     if (_quitRequested && error == QAbstractSocket::RemoteHostClosedError)
438         return;
439
440     _previousConnectionAttemptFailed = true;
441     qWarning() << qPrintable(tr("Could not connect to %1 (%2)").arg(networkName(), socket.errorString()));
442     emit connectionError(socket.errorString());
443     displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Connection failure: %1").arg(socket.errorString()));
444     emitConnectionError(socket.errorString());
445     if (socket.state() < QAbstractSocket::ConnectedState) {
446         socketDisconnected();
447     }
448 }
449
450
451 void CoreNetwork::socketInitialized()
452 {
453     CoreIdentity *identity = identityPtr();
454     if (!identity) {
455         qCritical() << "Identity invalid!";
456         disconnectFromIrc();
457         return;
458     }
459
460     emit socketOpen(identity, localAddress(), localPort(), peerAddress(), peerPort());
461
462     Server server = usedServer();
463 #ifdef HAVE_SSL
464     if (server.useSsl && !socket.isEncrypted())
465         return;
466 #endif
467     socket.setSocketOption(QAbstractSocket::KeepAliveOption, true);
468
469     emit socketInitialized(identity, localAddress(), localPort(), peerAddress(), peerPort());
470
471     // TokenBucket to avoid sending too much at once
472     _messageDelay = 2200;  // this seems to be a safe value (2.2 seconds delay)
473     _burstSize = 5;
474     _tokenBucket = _burstSize; // init with a full bucket
475     _tokenBucketTimer.start(_messageDelay);
476
477     if (networkInfo().useSasl) {
478         putRawLine(serverEncode(QString("CAP REQ :sasl")));
479     }
480     if (!server.password.isEmpty()) {
481         putRawLine(serverEncode(QString("PASS %1").arg(server.password)));
482     }
483     QString nick;
484     if (identity->nicks().isEmpty()) {
485         nick = "quassel";
486         qWarning() << "CoreNetwork::socketInitialized(): no nicks supplied for identity Id" << identity->id();
487     }
488     else {
489         nick = identity->nicks()[0];
490     }
491     putRawLine(serverEncode(QString("NICK :%1").arg(nick)));
492     putRawLine(serverEncode(QString("USER %1 8 * :%2").arg(identity->ident(), identity->realName())));
493 }
494
495
496 void CoreNetwork::socketDisconnected()
497 {
498     disablePingTimeout();
499     _msgQueue.clear();
500
501     _autoWhoCycleTimer.stop();
502     _autoWhoTimer.stop();
503     _autoWhoQueue.clear();
504     _autoWhoPending.clear();
505
506     _socketCloseTimer.stop();
507
508     _tokenBucketTimer.stop();
509
510     IrcUser *me_ = me();
511     if (me_) {
512         foreach(QString channel, me_->channels())
513         displayMsg(Message::Quit, BufferInfo::ChannelBuffer, channel, _quitReason, me_->hostmask());
514     }
515
516     setConnected(false);
517     emit disconnected(networkId());
518     emit socketDisconnected(identityPtr(), localAddress(), localPort(), peerAddress(), peerPort());
519     if (_quitRequested) {
520         _quitRequested = false;
521         setConnectionState(Network::Disconnected);
522         Core::setNetworkConnected(userId(), networkId(), false);
523     }
524     else if (_autoReconnectCount != 0) {
525         setConnectionState(Network::Reconnecting);
526         if (_autoReconnectCount == -1 || _autoReconnectCount == autoReconnectRetries())
527             doAutoReconnect();  // first try is immediate
528         else
529             _autoReconnectTimer.start();
530     }
531 }
532
533
534 void CoreNetwork::socketStateChanged(QAbstractSocket::SocketState socketState)
535 {
536     Network::ConnectionState state;
537     switch (socketState) {
538     case QAbstractSocket::UnconnectedState:
539         state = Network::Disconnected;
540         socketDisconnected();
541         break;
542     case QAbstractSocket::HostLookupState:
543     case QAbstractSocket::ConnectingState:
544         state = Network::Connecting;
545         break;
546     case QAbstractSocket::ConnectedState:
547         state = Network::Initializing;
548         break;
549     case QAbstractSocket::ClosingState:
550         state = Network::Disconnecting;
551         break;
552     default:
553         state = Network::Disconnected;
554     }
555     setConnectionState(state);
556 }
557
558
559 void CoreNetwork::networkInitialized()
560 {
561     setConnectionState(Network::Initialized);
562     setConnected(true);
563     _quitRequested = false;
564
565     if (useAutoReconnect()) {
566         // reset counter
567         _autoReconnectCount = unlimitedReconnectRetries() ? -1 : autoReconnectRetries();
568     }
569
570     // restore away state
571     QString awayMsg = Core::awayMessage(userId(), networkId());
572     if (!awayMsg.isEmpty())
573         userInputHandler()->handleAway(BufferInfo(), Core::awayMessage(userId(), networkId()));
574
575     sendPerform();
576
577     _sendPings = true;
578
579     if (networkConfig()->autoWhoEnabled()) {
580         _autoWhoCycleTimer.start();
581         _autoWhoTimer.start();
582         startAutoWhoCycle(); // FIXME wait for autojoin to be completed
583     }
584
585     Core::bufferInfo(userId(), networkId(), BufferInfo::StatusBuffer); // create status buffer
586     Core::setNetworkConnected(userId(), networkId(), true);
587 }
588
589
590 void CoreNetwork::sendPerform()
591 {
592     BufferInfo statusBuf = BufferInfo::fakeStatusBuffer(networkId());
593
594     // do auto identify
595     if (useAutoIdentify() && !autoIdentifyService().isEmpty() && !autoIdentifyPassword().isEmpty()) {
596         userInputHandler()->handleMsg(statusBuf, QString("%1 IDENTIFY %2").arg(autoIdentifyService(), autoIdentifyPassword()));
597     }
598
599     // restore old user modes if server default mode is set.
600     IrcUser *me_ = me();
601     if (me_) {
602         if (!me_->userModes().isEmpty()) {
603             restoreUserModes();
604         }
605         else {
606             connect(me_, SIGNAL(userModesSet(QString)), this, SLOT(restoreUserModes()));
607             connect(me_, SIGNAL(userModesAdded(QString)), this, SLOT(restoreUserModes()));
608         }
609     }
610
611     // send perform list
612     foreach(QString line, perform()) {
613         if (!line.isEmpty()) userInput(statusBuf, line);
614     }
615
616     // rejoin channels we've been in
617     if (rejoinChannels()) {
618         QStringList channels, keys;
619         foreach(QString chan, coreSession()->persistentChannels(networkId()).keys()) {
620             QString key = channelKey(chan);
621             if (!key.isEmpty()) {
622                 channels.prepend(chan);
623                 keys.prepend(key);
624             }
625             else {
626                 channels.append(chan);
627             }
628         }
629         QString joinString = QString("%1 %2").arg(channels.join(",")).arg(keys.join(",")).trimmed();
630         if (!joinString.isEmpty())
631             userInputHandler()->handleJoin(statusBuf, joinString);
632     }
633 }
634
635
636 void CoreNetwork::restoreUserModes()
637 {
638     IrcUser *me_ = me();
639     Q_ASSERT(me_);
640
641     disconnect(me_, SIGNAL(userModesSet(QString)), this, SLOT(restoreUserModes()));
642     disconnect(me_, SIGNAL(userModesAdded(QString)), this, SLOT(restoreUserModes()));
643
644     QString modesDelta = Core::userModes(userId(), networkId());
645     QString currentModes = me_->userModes();
646
647     QString addModes, removeModes;
648     if (modesDelta.contains('-')) {
649         addModes = modesDelta.section('-', 0, 0);
650         removeModes = modesDelta.section('-', 1);
651     }
652     else {
653         addModes = modesDelta;
654     }
655
656     addModes.remove(QRegExp(QString("[%1]").arg(currentModes)));
657     if (currentModes.isEmpty())
658         removeModes = QString();
659     else
660         removeModes.remove(QRegExp(QString("[^%1]").arg(currentModes)));
661
662     if (addModes.isEmpty() && removeModes.isEmpty())
663         return;
664
665     if (!addModes.isEmpty())
666         addModes = '+' + addModes;
667     if (!removeModes.isEmpty())
668         removeModes = '-' + removeModes;
669
670     // don't use InputHandler::handleMode() as it keeps track of our persistent mode changes
671     putRawLine(serverEncode(QString("MODE %1 %2%3").arg(me_->nick()).arg(addModes).arg(removeModes)));
672 }
673
674
675 void CoreNetwork::updateIssuedModes(const QString &requestedModes)
676 {
677     QString addModes;
678     QString removeModes;
679     bool addMode = true;
680
681     for (int i = 0; i < requestedModes.length(); i++) {
682         if (requestedModes[i] == '+') {
683             addMode = true;
684             continue;
685         }
686         if (requestedModes[i] == '-') {
687             addMode = false;
688             continue;
689         }
690         if (addMode) {
691             addModes += requestedModes[i];
692         }
693         else {
694             removeModes += requestedModes[i];
695         }
696     }
697
698     QString addModesOld = _requestedUserModes.section('-', 0, 0);
699     QString removeModesOld = _requestedUserModes.section('-', 1);
700
701     addModes.remove(QRegExp(QString("[%1]").arg(addModesOld))); // deduplicate
702     addModesOld.remove(QRegExp(QString("[%1]").arg(removeModes))); // update
703     addModes += addModesOld;
704
705     removeModes.remove(QRegExp(QString("[%1]").arg(removeModesOld))); // deduplicate
706     removeModesOld.remove(QRegExp(QString("[%1]").arg(addModes))); // update
707     removeModes += removeModesOld;
708
709     _requestedUserModes = QString("%1-%2").arg(addModes).arg(removeModes);
710 }
711
712
713 void CoreNetwork::updatePersistentModes(QString addModes, QString removeModes)
714 {
715     QString persistentUserModes = Core::userModes(userId(), networkId());
716
717     QString requestedAdd = _requestedUserModes.section('-', 0, 0);
718     QString requestedRemove = _requestedUserModes.section('-', 1);
719
720     QString persistentAdd, persistentRemove;
721     if (persistentUserModes.contains('-')) {
722         persistentAdd = persistentUserModes.section('-', 0, 0);
723         persistentRemove = persistentUserModes.section('-', 1);
724     }
725     else {
726         persistentAdd = persistentUserModes;
727     }
728
729     // remove modes we didn't issue
730     if (requestedAdd.isEmpty())
731         addModes = QString();
732     else
733         addModes.remove(QRegExp(QString("[^%1]").arg(requestedAdd)));
734
735     if (requestedRemove.isEmpty())
736         removeModes = QString();
737     else
738         removeModes.remove(QRegExp(QString("[^%1]").arg(requestedRemove)));
739
740     // deduplicate
741     persistentAdd.remove(QRegExp(QString("[%1]").arg(addModes)));
742     persistentRemove.remove(QRegExp(QString("[%1]").arg(removeModes)));
743
744     // update
745     persistentAdd.remove(QRegExp(QString("[%1]").arg(removeModes)));
746     persistentRemove.remove(QRegExp(QString("[%1]").arg(addModes)));
747
748     // update issued mode list
749     requestedAdd.remove(QRegExp(QString("[%1]").arg(addModes)));
750     requestedRemove.remove(QRegExp(QString("[%1]").arg(removeModes)));
751     _requestedUserModes = QString("%1-%2").arg(requestedAdd).arg(requestedRemove);
752
753     persistentAdd += addModes;
754     persistentRemove += removeModes;
755     Core::setUserModes(userId(), networkId(), QString("%1-%2").arg(persistentAdd).arg(persistentRemove));
756 }
757
758
759 void CoreNetwork::resetPersistentModes()
760 {
761     _requestedUserModes = QString('-');
762     Core::setUserModes(userId(), networkId(), QString());
763 }
764
765
766 void CoreNetwork::setUseAutoReconnect(bool use)
767 {
768     Network::setUseAutoReconnect(use);
769     if (!use)
770         _autoReconnectTimer.stop();
771 }
772
773
774 void CoreNetwork::setAutoReconnectInterval(quint32 interval)
775 {
776     Network::setAutoReconnectInterval(interval);
777     _autoReconnectTimer.setInterval(interval * 1000);
778 }
779
780
781 void CoreNetwork::setAutoReconnectRetries(quint16 retries)
782 {
783     Network::setAutoReconnectRetries(retries);
784     if (_autoReconnectCount != 0) {
785         if (unlimitedReconnectRetries())
786             _autoReconnectCount = -1;
787         else
788             _autoReconnectCount = autoReconnectRetries();
789     }
790 }
791
792
793 void CoreNetwork::doAutoReconnect()
794 {
795     if (connectionState() != Network::Disconnected && connectionState() != Network::Reconnecting) {
796         qWarning() << "CoreNetwork::doAutoReconnect(): Cannot reconnect while not being disconnected!";
797         return;
798     }
799     if (_autoReconnectCount > 0 || _autoReconnectCount == -1)
800         _autoReconnectCount--;  // -2 means we delay the next reconnect
801     connectToIrc(true);
802 }
803
804
805 void CoreNetwork::sendPing()
806 {
807     uint now = QDateTime::currentDateTime().toTime_t();
808     if (_pingCount != 0) {
809         qDebug() << "UserId:" << userId() << "Network:" << networkName() << "missed" << _pingCount << "pings."
810                  << "BA:" << socket.bytesAvailable() << "BTW:" << socket.bytesToWrite();
811     }
812     if ((int)_pingCount >= networkConfig()->maxPingCount() && now - _lastPingTime <= (uint)(_pingTimer.interval() / 1000) + 1) {
813         // the second check compares the actual elapsed time since the last ping and the pingTimer interval
814         // if the interval is shorter then the actual elapsed time it means that this thread was somehow blocked
815         // and unable to even handle a ping answer. So we ignore those misses.
816         disconnectFromIrc(false, QString("No Ping reply in %1 seconds.").arg(_pingCount * _pingTimer.interval() / 1000), true /* withReconnect */);
817     }
818     else {
819         _lastPingTime = now;
820         _pingCount++;
821         // Don't send pings until the network is initialized
822         if(_sendPings)
823             userInputHandler()->handlePing(BufferInfo(), QString());
824     }
825 }
826
827
828 void CoreNetwork::enablePingTimeout(bool enable)
829 {
830     if (!enable)
831         disablePingTimeout();
832     else {
833         resetPingTimeout();
834         if (networkConfig()->pingTimeoutEnabled())
835             _pingTimer.start();
836     }
837 }
838
839
840 void CoreNetwork::disablePingTimeout()
841 {
842     _pingTimer.stop();
843     _sendPings = false;
844     resetPingTimeout();
845 }
846
847
848 void CoreNetwork::setPingInterval(int interval)
849 {
850     _pingTimer.setInterval(interval * 1000);
851 }
852
853
854 /******** AutoWHO ********/
855
856 void CoreNetwork::startAutoWhoCycle()
857 {
858     if (!_autoWhoQueue.isEmpty()) {
859         _autoWhoCycleTimer.stop();
860         return;
861     }
862     _autoWhoQueue = channels();
863 }
864
865
866 void CoreNetwork::setAutoWhoDelay(int delay)
867 {
868     _autoWhoTimer.setInterval(delay * 1000);
869 }
870
871
872 void CoreNetwork::setAutoWhoInterval(int interval)
873 {
874     _autoWhoCycleTimer.setInterval(interval * 1000);
875 }
876
877
878 void CoreNetwork::setAutoWhoEnabled(bool enabled)
879 {
880     if (enabled && isConnected() && !_autoWhoTimer.isActive())
881         _autoWhoTimer.start();
882     else if (!enabled) {
883         _autoWhoTimer.stop();
884         _autoWhoCycleTimer.stop();
885     }
886 }
887
888
889 void CoreNetwork::sendAutoWho()
890 {
891     // Don't send autowho if there are still some pending
892     if (_autoWhoPending.count())
893         return;
894
895     while (!_autoWhoQueue.isEmpty()) {
896         QString chan = _autoWhoQueue.takeFirst();
897         IrcChannel *ircchan = ircChannel(chan);
898         if (!ircchan) continue;
899         if (networkConfig()->autoWhoNickLimit() > 0 && ircchan->ircUsers().count() >= networkConfig()->autoWhoNickLimit())
900             continue;
901         _autoWhoPending[chan]++;
902         putRawLine("WHO " + serverEncode(chan));
903         break;
904     }
905     if (_autoWhoQueue.isEmpty() && networkConfig()->autoWhoEnabled() && !_autoWhoCycleTimer.isActive()) {
906         // Timer was stopped, means a new cycle is due immediately
907         _autoWhoCycleTimer.start();
908         startAutoWhoCycle();
909     }
910 }
911
912
913 #ifdef HAVE_SSL
914 void CoreNetwork::sslErrors(const QList<QSslError> &sslErrors)
915 {
916     Q_UNUSED(sslErrors)
917     socket.ignoreSslErrors();
918     // TODO errorhandling
919 }
920
921
922 #endif  // HAVE_SSL
923
924 void CoreNetwork::fillBucketAndProcessQueue()
925 {
926     if (_tokenBucket < _burstSize) {
927         _tokenBucket++;
928     }
929
930     while (_msgQueue.size() > 0 && _tokenBucket > 0) {
931         writeToSocket(_msgQueue.takeFirst());
932     }
933 }
934
935
936 void CoreNetwork::writeToSocket(const QByteArray &data)
937 {
938     socket.write(data);
939     socket.write("\r\n");
940     _tokenBucket--;
941 }
942
943
944 Network::Server CoreNetwork::usedServer() const
945 {
946     if (_lastUsedServerIndex < serverList().count())
947         return serverList()[_lastUsedServerIndex];
948
949     if (!serverList().isEmpty())
950         return serverList()[0];
951
952     return Network::Server();
953 }
954
955
956 void CoreNetwork::requestConnect() const
957 {
958     if (connectionState() != Disconnected) {
959         qWarning() << "Requesting connect while already being connected!";
960         return;
961     }
962     QMetaObject::invokeMethod(const_cast<CoreNetwork *>(this), "connectToIrc", Qt::QueuedConnection);
963 }
964
965
966 void CoreNetwork::requestDisconnect() const
967 {
968     if (connectionState() == Disconnected) {
969         qWarning() << "Requesting disconnect while not being connected!";
970         return;
971     }
972     userInputHandler()->handleQuit(BufferInfo(), QString());
973 }
974
975
976 void CoreNetwork::requestSetNetworkInfo(const NetworkInfo &info)
977 {
978     Network::Server currentServer = usedServer();
979     setNetworkInfo(info);
980     Core::updateNetwork(coreSession()->user(), info);
981
982     // the order of the servers might have changed,
983     // so we try to find the previously used server
984     _lastUsedServerIndex = 0;
985     for (int i = 0; i < serverList().count(); i++) {
986         Network::Server server = serverList()[i];
987         if (server.host == currentServer.host && server.port == currentServer.port) {
988             _lastUsedServerIndex = i;
989             break;
990         }
991     }
992 }
993
994
995 QList<QList<QByteArray>> CoreNetwork::splitMessage(const QString &cmd, const QString &message, std::function<QList<QByteArray>(QString &)> cmdGenerator)
996 {
997     QString wrkMsg(message);
998     QList<QList<QByteArray>> msgsToSend;
999
1000     // do while (wrkMsg.size() > 0)
1001     do {
1002         // First, check to see if the whole message can be sent at once.  The
1003         // cmdGenerator function is passed in by the caller and is used to encode
1004         // and encrypt (if applicable) the message, since different callers might
1005         // want to use different encoding or encode different values.
1006         int splitPos = wrkMsg.size();
1007         QList<QByteArray> initialSplitMsgEnc = cmdGenerator(wrkMsg);
1008         int initialOverrun = userInputHandler()->lastParamOverrun(cmd, initialSplitMsgEnc);
1009
1010         if (initialOverrun) {
1011             // If the message was too long to be sent, first try splitting it along
1012             // word boundaries with QTextBoundaryFinder.
1013             QString splitMsg(wrkMsg);
1014             QTextBoundaryFinder qtbf(QTextBoundaryFinder::Word, splitMsg);
1015             qtbf.setPosition(initialSplitMsgEnc[1].size() - initialOverrun);
1016             QList<QByteArray> splitMsgEnc;
1017             int overrun = initialOverrun;
1018
1019             while (overrun) {
1020                 splitPos = qtbf.toPreviousBoundary();
1021
1022                 // splitPos==-1 means the QTBF couldn't find a split point at all and
1023                 // splitPos==0 means the QTBF could only find a boundary at the beginning of
1024                 // the string.  Neither one of these works for us.
1025                 if (splitPos > 0) {
1026                     // If a split point could be found, split the message there, calculate the
1027                     // overrun, and continue with the loop.
1028                     splitMsg = splitMsg.left(splitPos);
1029                     splitMsgEnc = cmdGenerator(splitMsg);
1030                     overrun = userInputHandler()->lastParamOverrun(cmd, splitMsgEnc);
1031                 }
1032                 else {
1033                     // If a split point could not be found (the beginning of the message
1034                     // is reached without finding a split point short enough to send) and we
1035                     // are still in Word mode, switch to Grapheme mode.  We also need to restore
1036                     // the full wrkMsg to splitMsg, since splitMsg may have been cut down during
1037                     // the previous attempt to find a split point.
1038                     if (qtbf.type() == QTextBoundaryFinder::Word) {
1039                         splitMsg = wrkMsg;
1040                         splitPos = splitMsg.size();
1041                         QTextBoundaryFinder graphemeQtbf(QTextBoundaryFinder::Grapheme, splitMsg);
1042                         graphemeQtbf.setPosition(initialSplitMsgEnc[1].size() - initialOverrun);
1043                         qtbf = graphemeQtbf;
1044                     }
1045                     else {
1046                         // If the QTBF fails to find a split point in Grapheme mode, we give up.
1047                         // This should never happen, but it should be handled anyway.
1048                         qWarning() << "Unexpected failure to split message!";
1049                         return msgsToSend;
1050                     }
1051                 }
1052             }
1053
1054             // Once a message of sendable length has been found, remove it from the wrkMsg and
1055             // add it to the list of messages to be sent.
1056             wrkMsg.remove(0, splitPos);
1057             msgsToSend.append(splitMsgEnc);
1058         }
1059         else{
1060             // If the entire remaining message is short enough to be sent all at once, remove
1061             // it from the wrkMsg and add it to the list of messages to be sent.
1062             wrkMsg.remove(0, splitPos);
1063             msgsToSend.append(initialSplitMsgEnc);
1064         }
1065     } while (wrkMsg.size() > 0);
1066
1067     return msgsToSend;
1068 }