Merge pull request #97 from Bombe/focus-host-input
[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(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     if (socket.state() == QAbstractSocket::UnconnectedState) {
236         socketDisconnected();
237     } else {
238         if (socket.state() == QAbstractSocket::ConnectedState) {
239             userInputHandler()->issueQuit(_quitReason);
240         } else {
241             socket.close();
242         }
243         if (requested || withReconnect) {
244             // the irc server has 10 seconds to close the socket
245             _socketCloseTimer.start(10000);
246         }
247     }
248 }
249
250
251 void CoreNetwork::userInput(BufferInfo buf, QString msg)
252 {
253     userInputHandler()->handleUserInput(buf, msg);
254 }
255
256
257 void CoreNetwork::putRawLine(QByteArray s)
258 {
259     if (_tokenBucket > 0)
260         writeToSocket(s);
261     else
262         _msgQueue.append(s);
263 }
264
265
266 void CoreNetwork::putCmd(const QString &cmd, const QList<QByteArray> &params, const QByteArray &prefix)
267 {
268     QByteArray msg;
269
270     if (!prefix.isEmpty())
271         msg += ":" + prefix + " ";
272     msg += cmd.toUpper().toLatin1();
273
274     for (int i = 0; i < params.size(); i++) {
275         msg += " ";
276
277         if (i == params.size() - 1 && (params[i].contains(' ') || (!params[i].isEmpty() && params[i][0] == ':')))
278             msg += ":";
279
280         msg += params[i];
281     }
282
283     putRawLine(msg);
284 }
285
286
287 void CoreNetwork::setChannelJoined(const QString &channel)
288 {
289     _autoWhoQueue.prepend(channel.toLower()); // prepend so this new chan is the first to be checked
290
291     Core::setChannelPersistent(userId(), networkId(), channel, true);
292     Core::setPersistentChannelKey(userId(), networkId(), channel, _channelKeys[channel.toLower()]);
293 }
294
295
296 void CoreNetwork::setChannelParted(const QString &channel)
297 {
298     removeChannelKey(channel);
299     _autoWhoQueue.removeAll(channel.toLower());
300     _autoWhoPending.remove(channel.toLower());
301
302     Core::setChannelPersistent(userId(), networkId(), channel, false);
303 }
304
305
306 void CoreNetwork::addChannelKey(const QString &channel, const QString &key)
307 {
308     if (key.isEmpty()) {
309         removeChannelKey(channel);
310     }
311     else {
312         _channelKeys[channel.toLower()] = key;
313     }
314 }
315
316
317 void CoreNetwork::removeChannelKey(const QString &channel)
318 {
319     _channelKeys.remove(channel.toLower());
320 }
321
322
323 #ifdef HAVE_QCA2
324 Cipher *CoreNetwork::cipher(const QString &target)
325 {
326     if (target.isEmpty())
327         return 0;
328
329     if (!Cipher::neededFeaturesAvailable())
330         return 0;
331
332     CoreIrcChannel *channel = qobject_cast<CoreIrcChannel *>(ircChannel(target));
333     if (channel) {
334         return channel->cipher();
335     }
336     CoreIrcUser *user = qobject_cast<CoreIrcUser *>(ircUser(target));
337     if (user) {
338         return user->cipher();
339     } else if (!isChannelName(target)) {
340         return qobject_cast<CoreIrcUser*>(newIrcUser(target))->cipher();
341     }
342     return 0;
343 }
344
345
346 QByteArray CoreNetwork::cipherKey(const QString &target) const
347 {
348     CoreIrcChannel *c = qobject_cast<CoreIrcChannel*>(ircChannel(target));
349     if (c)
350         return c->cipher()->key();
351
352     CoreIrcUser *u = qobject_cast<CoreIrcUser*>(ircUser(target));
353     if (u)
354         return u->cipher()->key();
355
356     return QByteArray();
357 }
358
359
360 void CoreNetwork::setCipherKey(const QString &target, const QByteArray &key)
361 {
362     CoreIrcChannel *c = qobject_cast<CoreIrcChannel*>(ircChannel(target));
363     if (c) {
364         c->setEncrypted(c->cipher()->setKey(key));
365         return;
366     }
367
368     CoreIrcUser *u = qobject_cast<CoreIrcUser*>(ircUser(target));
369     if (!u && !isChannelName(target))
370         u = qobject_cast<CoreIrcUser*>(newIrcUser(target));
371
372     if (u) {
373         u->setEncrypted(u->cipher()->setKey(key));
374         return;
375     }
376 }
377
378
379 bool CoreNetwork::cipherUsesCBC(const QString &target)
380 {
381     CoreIrcChannel *c = qobject_cast<CoreIrcChannel*>(ircChannel(target));
382     if (c)
383         return c->cipher()->usesCBC();
384     CoreIrcUser *u = qobject_cast<CoreIrcUser*>(ircUser(target));
385     if (u)
386         return u->cipher()->usesCBC();
387
388     return false;
389 }
390 #endif /* HAVE_QCA2 */
391
392 bool CoreNetwork::setAutoWhoDone(const QString &channel)
393 {
394     QString chan = channel.toLower();
395     if (_autoWhoPending.value(chan, 0) <= 0)
396         return false;
397     if (--_autoWhoPending[chan] <= 0)
398         _autoWhoPending.remove(chan);
399     return true;
400 }
401
402
403 void CoreNetwork::setMyNick(const QString &mynick)
404 {
405     Network::setMyNick(mynick);
406     if (connectionState() == Network::Initializing)
407         networkInitialized();
408 }
409
410
411 void CoreNetwork::socketHasData()
412 {
413     while (socket.canReadLine()) {
414         QByteArray s = socket.readLine();
415         if (s.endsWith("\r\n"))
416             s.chop(2);
417         else if (s.endsWith("\n"))
418             s.chop(1);
419         NetworkDataEvent *event = new NetworkDataEvent(EventManager::NetworkIncoming, this, s);
420         event->setTimestamp(QDateTime::currentDateTimeUtc());
421         emit newEvent(event);
422     }
423 }
424
425
426 void CoreNetwork::socketError(QAbstractSocket::SocketError error)
427 {
428     if (_quitRequested && error == QAbstractSocket::RemoteHostClosedError)
429         return;
430
431     _previousConnectionAttemptFailed = true;
432     qWarning() << qPrintable(tr("Could not connect to %1 (%2)").arg(networkName(), socket.errorString()));
433     emit connectionError(socket.errorString());
434     displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Connection failure: %1").arg(socket.errorString()));
435     emitConnectionError(socket.errorString());
436     if (socket.state() < QAbstractSocket::ConnectedState) {
437         socketDisconnected();
438     }
439 }
440
441
442 void CoreNetwork::socketInitialized()
443 {
444     CoreIdentity *identity = identityPtr();
445     if (!identity) {
446         qCritical() << "Identity invalid!";
447         disconnectFromIrc();
448         return;
449     }
450
451     emit socketOpen(identity, localAddress(), localPort(), peerAddress(), peerPort());
452
453     Server server = usedServer();
454 #ifdef HAVE_SSL
455     if (server.useSsl && !socket.isEncrypted())
456         return;
457 #endif
458     socket.setSocketOption(QAbstractSocket::KeepAliveOption, true);
459
460     emit socketInitialized(identity, localAddress(), localPort(), peerAddress(), peerPort());
461
462     // TokenBucket to avoid sending too much at once
463     _messageDelay = 2200;  // this seems to be a safe value (2.2 seconds delay)
464     _burstSize = 5;
465     _tokenBucket = _burstSize; // init with a full bucket
466     _tokenBucketTimer.start(_messageDelay);
467
468     if (networkInfo().useSasl) {
469         putRawLine(serverEncode(QString("CAP REQ :sasl")));
470     }
471     if (!server.password.isEmpty()) {
472         putRawLine(serverEncode(QString("PASS %1").arg(server.password)));
473     }
474     QString nick;
475     if (identity->nicks().isEmpty()) {
476         nick = "quassel";
477         qWarning() << "CoreNetwork::socketInitialized(): no nicks supplied for identity Id" << identity->id();
478     }
479     else {
480         nick = identity->nicks()[0];
481     }
482     putRawLine(serverEncode(QString("NICK :%1").arg(nick)));
483     putRawLine(serverEncode(QString("USER %1 8 * :%2").arg(identity->ident(), identity->realName())));
484 }
485
486
487 void CoreNetwork::socketDisconnected()
488 {
489     disablePingTimeout();
490     _msgQueue.clear();
491
492     _autoWhoCycleTimer.stop();
493     _autoWhoTimer.stop();
494     _autoWhoQueue.clear();
495     _autoWhoPending.clear();
496
497     _socketCloseTimer.stop();
498
499     _tokenBucketTimer.stop();
500
501     IrcUser *me_ = me();
502     if (me_) {
503         foreach(QString channel, me_->channels())
504         displayMsg(Message::Quit, BufferInfo::ChannelBuffer, channel, _quitReason, me_->hostmask());
505     }
506
507     setConnected(false);
508     emit disconnected(networkId());
509     emit socketDisconnected(identityPtr(), localAddress(), localPort(), peerAddress(), peerPort());
510     if (_quitRequested) {
511         _quitRequested = false;
512         setConnectionState(Network::Disconnected);
513         Core::setNetworkConnected(userId(), networkId(), false);
514     }
515     else if (_autoReconnectCount != 0) {
516         setConnectionState(Network::Reconnecting);
517         if (_autoReconnectCount == -1 || _autoReconnectCount == autoReconnectRetries())
518             doAutoReconnect();  // first try is immediate
519         else
520             _autoReconnectTimer.start();
521     }
522 }
523
524
525 void CoreNetwork::socketStateChanged(QAbstractSocket::SocketState socketState)
526 {
527     Network::ConnectionState state;
528     switch (socketState) {
529     case QAbstractSocket::UnconnectedState:
530         state = Network::Disconnected;
531         break;
532     case QAbstractSocket::HostLookupState:
533     case QAbstractSocket::ConnectingState:
534         state = Network::Connecting;
535         break;
536     case QAbstractSocket::ConnectedState:
537         state = Network::Initializing;
538         break;
539     case QAbstractSocket::ClosingState:
540         state = Network::Disconnecting;
541         break;
542     default:
543         state = Network::Disconnected;
544     }
545     setConnectionState(state);
546 }
547
548
549 void CoreNetwork::networkInitialized()
550 {
551     setConnectionState(Network::Initialized);
552     setConnected(true);
553     _quitRequested = false;
554
555     if (useAutoReconnect()) {
556         // reset counter
557         _autoReconnectCount = unlimitedReconnectRetries() ? -1 : autoReconnectRetries();
558     }
559
560     // restore away state
561     QString awayMsg = Core::awayMessage(userId(), networkId());
562     if (!awayMsg.isEmpty())
563         userInputHandler()->handleAway(BufferInfo(), Core::awayMessage(userId(), networkId()));
564
565     sendPerform();
566
567     _sendPings = true;
568
569     if (networkConfig()->autoWhoEnabled()) {
570         _autoWhoCycleTimer.start();
571         _autoWhoTimer.start();
572         startAutoWhoCycle(); // FIXME wait for autojoin to be completed
573     }
574
575     Core::bufferInfo(userId(), networkId(), BufferInfo::StatusBuffer); // create status buffer
576     Core::setNetworkConnected(userId(), networkId(), true);
577 }
578
579
580 void CoreNetwork::sendPerform()
581 {
582     BufferInfo statusBuf = BufferInfo::fakeStatusBuffer(networkId());
583
584     // do auto identify
585     if (useAutoIdentify() && !autoIdentifyService().isEmpty() && !autoIdentifyPassword().isEmpty()) {
586         userInputHandler()->handleMsg(statusBuf, QString("%1 IDENTIFY %2").arg(autoIdentifyService(), autoIdentifyPassword()));
587     }
588
589     // restore old user modes if server default mode is set.
590     IrcUser *me_ = me();
591     if (me_) {
592         if (!me_->userModes().isEmpty()) {
593             restoreUserModes();
594         }
595         else {
596             connect(me_, SIGNAL(userModesSet(QString)), this, SLOT(restoreUserModes()));
597             connect(me_, SIGNAL(userModesAdded(QString)), this, SLOT(restoreUserModes()));
598         }
599     }
600
601     // send perform list
602     foreach(QString line, perform()) {
603         if (!line.isEmpty()) userInput(statusBuf, line);
604     }
605
606     // rejoin channels we've been in
607     if (rejoinChannels()) {
608         QStringList channels, keys;
609         foreach(QString chan, coreSession()->persistentChannels(networkId()).keys()) {
610             QString key = channelKey(chan);
611             if (!key.isEmpty()) {
612                 channels.prepend(chan);
613                 keys.prepend(key);
614             }
615             else {
616                 channels.append(chan);
617             }
618         }
619         QString joinString = QString("%1 %2").arg(channels.join(",")).arg(keys.join(",")).trimmed();
620         if (!joinString.isEmpty())
621             userInputHandler()->handleJoin(statusBuf, joinString);
622     }
623 }
624
625
626 void CoreNetwork::restoreUserModes()
627 {
628     IrcUser *me_ = me();
629     Q_ASSERT(me_);
630
631     disconnect(me_, SIGNAL(userModesSet(QString)), this, SLOT(restoreUserModes()));
632     disconnect(me_, SIGNAL(userModesAdded(QString)), this, SLOT(restoreUserModes()));
633
634     QString modesDelta = Core::userModes(userId(), networkId());
635     QString currentModes = me_->userModes();
636
637     QString addModes, removeModes;
638     if (modesDelta.contains('-')) {
639         addModes = modesDelta.section('-', 0, 0);
640         removeModes = modesDelta.section('-', 1);
641     }
642     else {
643         addModes = modesDelta;
644     }
645
646     addModes.remove(QRegExp(QString("[%1]").arg(currentModes)));
647     if (currentModes.isEmpty())
648         removeModes = QString();
649     else
650         removeModes.remove(QRegExp(QString("[^%1]").arg(currentModes)));
651
652     if (addModes.isEmpty() && removeModes.isEmpty())
653         return;
654
655     if (!addModes.isEmpty())
656         addModes = '+' + addModes;
657     if (!removeModes.isEmpty())
658         removeModes = '-' + removeModes;
659
660     // don't use InputHandler::handleMode() as it keeps track of our persistent mode changes
661     putRawLine(serverEncode(QString("MODE %1 %2%3").arg(me_->nick()).arg(addModes).arg(removeModes)));
662 }
663
664
665 void CoreNetwork::updateIssuedModes(const QString &requestedModes)
666 {
667     QString addModes;
668     QString removeModes;
669     bool addMode = true;
670
671     for (int i = 0; i < requestedModes.length(); i++) {
672         if (requestedModes[i] == '+') {
673             addMode = true;
674             continue;
675         }
676         if (requestedModes[i] == '-') {
677             addMode = false;
678             continue;
679         }
680         if (addMode) {
681             addModes += requestedModes[i];
682         }
683         else {
684             removeModes += requestedModes[i];
685         }
686     }
687
688     QString addModesOld = _requestedUserModes.section('-', 0, 0);
689     QString removeModesOld = _requestedUserModes.section('-', 1);
690
691     addModes.remove(QRegExp(QString("[%1]").arg(addModesOld))); // deduplicate
692     addModesOld.remove(QRegExp(QString("[%1]").arg(removeModes))); // update
693     addModes += addModesOld;
694
695     removeModes.remove(QRegExp(QString("[%1]").arg(removeModesOld))); // deduplicate
696     removeModesOld.remove(QRegExp(QString("[%1]").arg(addModes))); // update
697     removeModes += removeModesOld;
698
699     _requestedUserModes = QString("%1-%2").arg(addModes).arg(removeModes);
700 }
701
702
703 void CoreNetwork::updatePersistentModes(QString addModes, QString removeModes)
704 {
705     QString persistentUserModes = Core::userModes(userId(), networkId());
706
707     QString requestedAdd = _requestedUserModes.section('-', 0, 0);
708     QString requestedRemove = _requestedUserModes.section('-', 1);
709
710     QString persistentAdd, persistentRemove;
711     if (persistentUserModes.contains('-')) {
712         persistentAdd = persistentUserModes.section('-', 0, 0);
713         persistentRemove = persistentUserModes.section('-', 1);
714     }
715     else {
716         persistentAdd = persistentUserModes;
717     }
718
719     // remove modes we didn't issue
720     if (requestedAdd.isEmpty())
721         addModes = QString();
722     else
723         addModes.remove(QRegExp(QString("[^%1]").arg(requestedAdd)));
724
725     if (requestedRemove.isEmpty())
726         removeModes = QString();
727     else
728         removeModes.remove(QRegExp(QString("[^%1]").arg(requestedRemove)));
729
730     // deduplicate
731     persistentAdd.remove(QRegExp(QString("[%1]").arg(addModes)));
732     persistentRemove.remove(QRegExp(QString("[%1]").arg(removeModes)));
733
734     // update
735     persistentAdd.remove(QRegExp(QString("[%1]").arg(removeModes)));
736     persistentRemove.remove(QRegExp(QString("[%1]").arg(addModes)));
737
738     // update issued mode list
739     requestedAdd.remove(QRegExp(QString("[%1]").arg(addModes)));
740     requestedRemove.remove(QRegExp(QString("[%1]").arg(removeModes)));
741     _requestedUserModes = QString("%1-%2").arg(requestedAdd).arg(requestedRemove);
742
743     persistentAdd += addModes;
744     persistentRemove += removeModes;
745     Core::setUserModes(userId(), networkId(), QString("%1-%2").arg(persistentAdd).arg(persistentRemove));
746 }
747
748
749 void CoreNetwork::resetPersistentModes()
750 {
751     _requestedUserModes = QString('-');
752     Core::setUserModes(userId(), networkId(), QString());
753 }
754
755
756 void CoreNetwork::setUseAutoReconnect(bool use)
757 {
758     Network::setUseAutoReconnect(use);
759     if (!use)
760         _autoReconnectTimer.stop();
761 }
762
763
764 void CoreNetwork::setAutoReconnectInterval(quint32 interval)
765 {
766     Network::setAutoReconnectInterval(interval);
767     _autoReconnectTimer.setInterval(interval * 1000);
768 }
769
770
771 void CoreNetwork::setAutoReconnectRetries(quint16 retries)
772 {
773     Network::setAutoReconnectRetries(retries);
774     if (_autoReconnectCount != 0) {
775         if (unlimitedReconnectRetries())
776             _autoReconnectCount = -1;
777         else
778             _autoReconnectCount = autoReconnectRetries();
779     }
780 }
781
782
783 void CoreNetwork::doAutoReconnect()
784 {
785     if (connectionState() != Network::Disconnected && connectionState() != Network::Reconnecting) {
786         qWarning() << "CoreNetwork::doAutoReconnect(): Cannot reconnect while not being disconnected!";
787         return;
788     }
789     if (_autoReconnectCount > 0 || _autoReconnectCount == -1)
790         _autoReconnectCount--;  // -2 means we delay the next reconnect
791     connectToIrc(true);
792 }
793
794
795 void CoreNetwork::sendPing()
796 {
797     uint now = QDateTime::currentDateTime().toTime_t();
798     if (_pingCount != 0) {
799         qDebug() << "UserId:" << userId() << "Network:" << networkName() << "missed" << _pingCount << "pings."
800                  << "BA:" << socket.bytesAvailable() << "BTW:" << socket.bytesToWrite();
801     }
802     if ((int)_pingCount >= networkConfig()->maxPingCount() && now - _lastPingTime <= (uint)(_pingTimer.interval() / 1000) + 1) {
803         // the second check compares the actual elapsed time since the last ping and the pingTimer interval
804         // if the interval is shorter then the actual elapsed time it means that this thread was somehow blocked
805         // and unable to even handle a ping answer. So we ignore those misses.
806         disconnectFromIrc(false, QString("No Ping reply in %1 seconds.").arg(_pingCount * _pingTimer.interval() / 1000), true /* withReconnect */);
807     }
808     else {
809         _lastPingTime = now;
810         _pingCount++;
811         // Don't send pings until the network is initialized
812         if(_sendPings)
813             userInputHandler()->handlePing(BufferInfo(), QString());
814     }
815 }
816
817
818 void CoreNetwork::enablePingTimeout(bool enable)
819 {
820     if (!enable)
821         disablePingTimeout();
822     else {
823         resetPingTimeout();
824         if (networkConfig()->pingTimeoutEnabled())
825             _pingTimer.start();
826     }
827 }
828
829
830 void CoreNetwork::disablePingTimeout()
831 {
832     _pingTimer.stop();
833     _sendPings = false;
834     resetPingTimeout();
835 }
836
837
838 void CoreNetwork::setPingInterval(int interval)
839 {
840     _pingTimer.setInterval(interval * 1000);
841 }
842
843
844 /******** AutoWHO ********/
845
846 void CoreNetwork::startAutoWhoCycle()
847 {
848     if (!_autoWhoQueue.isEmpty()) {
849         _autoWhoCycleTimer.stop();
850         return;
851     }
852     _autoWhoQueue = channels();
853 }
854
855
856 void CoreNetwork::setAutoWhoDelay(int delay)
857 {
858     _autoWhoTimer.setInterval(delay * 1000);
859 }
860
861
862 void CoreNetwork::setAutoWhoInterval(int interval)
863 {
864     _autoWhoCycleTimer.setInterval(interval * 1000);
865 }
866
867
868 void CoreNetwork::setAutoWhoEnabled(bool enabled)
869 {
870     if (enabled && isConnected() && !_autoWhoTimer.isActive())
871         _autoWhoTimer.start();
872     else if (!enabled) {
873         _autoWhoTimer.stop();
874         _autoWhoCycleTimer.stop();
875     }
876 }
877
878
879 void CoreNetwork::sendAutoWho()
880 {
881     // Don't send autowho if there are still some pending
882     if (_autoWhoPending.count())
883         return;
884
885     while (!_autoWhoQueue.isEmpty()) {
886         QString chan = _autoWhoQueue.takeFirst();
887         IrcChannel *ircchan = ircChannel(chan);
888         if (!ircchan) continue;
889         if (networkConfig()->autoWhoNickLimit() > 0 && ircchan->ircUsers().count() >= networkConfig()->autoWhoNickLimit())
890             continue;
891         _autoWhoPending[chan]++;
892         putRawLine("WHO " + serverEncode(chan));
893         break;
894     }
895     if (_autoWhoQueue.isEmpty() && networkConfig()->autoWhoEnabled() && !_autoWhoCycleTimer.isActive()) {
896         // Timer was stopped, means a new cycle is due immediately
897         _autoWhoCycleTimer.start();
898         startAutoWhoCycle();
899     }
900 }
901
902
903 #ifdef HAVE_SSL
904 void CoreNetwork::sslErrors(const QList<QSslError> &sslErrors)
905 {
906     Q_UNUSED(sslErrors)
907     socket.ignoreSslErrors();
908     // TODO errorhandling
909 }
910
911
912 #endif  // HAVE_SSL
913
914 void CoreNetwork::fillBucketAndProcessQueue()
915 {
916     if (_tokenBucket < _burstSize) {
917         _tokenBucket++;
918     }
919
920     while (_msgQueue.size() > 0 && _tokenBucket > 0) {
921         writeToSocket(_msgQueue.takeFirst());
922     }
923 }
924
925
926 void CoreNetwork::writeToSocket(const QByteArray &data)
927 {
928     socket.write(data);
929     socket.write("\r\n");
930     _tokenBucket--;
931 }
932
933
934 Network::Server CoreNetwork::usedServer() const
935 {
936     if (_lastUsedServerIndex < serverList().count())
937         return serverList()[_lastUsedServerIndex];
938
939     if (!serverList().isEmpty())
940         return serverList()[0];
941
942     return Network::Server();
943 }
944
945
946 void CoreNetwork::requestConnect() const
947 {
948     if (connectionState() != Disconnected) {
949         qWarning() << "Requesting connect while already being connected!";
950         return;
951     }
952     QMetaObject::invokeMethod(const_cast<CoreNetwork *>(this), "connectToIrc", Qt::QueuedConnection);
953 }
954
955
956 void CoreNetwork::requestDisconnect() const
957 {
958     if (connectionState() == Disconnected) {
959         qWarning() << "Requesting disconnect while not being connected!";
960         return;
961     }
962     userInputHandler()->handleQuit(BufferInfo(), QString());
963 }
964
965
966 void CoreNetwork::requestSetNetworkInfo(const NetworkInfo &info)
967 {
968     Network::Server currentServer = usedServer();
969     setNetworkInfo(info);
970     Core::updateNetwork(coreSession()->user(), info);
971
972     // the order of the servers might have changed,
973     // so we try to find the previously used server
974     _lastUsedServerIndex = 0;
975     for (int i = 0; i < serverList().count(); i++) {
976         Network::Server server = serverList()[i];
977         if (server.host == currentServer.host && server.port == currentServer.port) {
978             _lastUsedServerIndex = i;
979             break;
980         }
981     }
982 }