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