don't rely on implicit typecast when using postgres
[quassel.git] / src / core / corenetwork.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "corenetwork.h"
22
23 #include "core.h"
24 #include "coresession.h"
25 #include "coreidentity.h"
26 #include "corenetworkconfig.h"
27
28 #include "ircserverhandler.h"
29 #include "coreuserinputhandler.h"
30 #include "ctcphandler.h"
31
32 INIT_SYNCABLE_OBJECT(CoreNetwork)
33 CoreNetwork::CoreNetwork(const NetworkId &networkid, CoreSession *session)
34   : Network(networkid, session),
35     _coreSession(session),
36     _ircServerHandler(new IrcServerHandler(this)),
37     _userInputHandler(new CoreUserInputHandler(this)),
38     _ctcpHandler(new CtcpHandler(this)),
39     _autoReconnectCount(0),
40     _quitRequested(false),
41
42     _previousConnectionAttemptFailed(false),
43     _lastUsedServerIndex(0),
44
45     _lastPingTime(0),
46     _pingCount(0)
47
48 {
49   _autoReconnectTimer.setSingleShot(true);
50   _socketCloseTimer.setSingleShot(true);
51   connect(&_socketCloseTimer, SIGNAL(timeout()), this, SLOT(socketCloseTimeout()));
52
53   setPingInterval(networkConfig()->pingInterval());
54   connect(&_pingTimer, SIGNAL(timeout()), this, SLOT(sendPing()));
55
56   setAutoWhoDelay(networkConfig()->autoWhoDelay());
57   setAutoWhoInterval(networkConfig()->autoWhoInterval());
58
59   QHash<QString, QString> channels = coreSession()->persistentChannels(networkId());
60   foreach(QString chan, channels.keys()) {
61     _channelKeys[chan.toLower()] = channels[chan];
62   }
63
64   connect(networkConfig(), SIGNAL(pingTimeoutEnabledSet(bool)), SLOT(enablePingTimeout(bool)));
65   connect(networkConfig(), SIGNAL(pingIntervalSet(int)), SLOT(setPingInterval(int)));
66   connect(networkConfig(), SIGNAL(autoWhoEnabledSet(bool)), SLOT(setAutoWhoEnabled(bool)));
67   connect(networkConfig(), SIGNAL(autoWhoIntervalSet(int)), SLOT(setAutoWhoInterval(int)));
68   connect(networkConfig(), SIGNAL(autoWhoDelaySet(int)), SLOT(setAutoWhoDelay(int)));
69
70   connect(&_autoReconnectTimer, SIGNAL(timeout()), this, SLOT(doAutoReconnect()));
71   connect(&_autoWhoTimer, SIGNAL(timeout()), this, SLOT(sendAutoWho()));
72   connect(&_autoWhoCycleTimer, SIGNAL(timeout()), this, SLOT(startAutoWhoCycle()));
73   connect(&_tokenBucketTimer, SIGNAL(timeout()), this, SLOT(fillBucketAndProcessQueue()));
74
75   connect(&socket, SIGNAL(connected()), this, SLOT(socketInitialized()));
76   connect(&socket, SIGNAL(disconnected()), this, SLOT(socketDisconnected()));
77   connect(&socket, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(socketError(QAbstractSocket::SocketError)));
78   connect(&socket, SIGNAL(stateChanged(QAbstractSocket::SocketState)), this, SLOT(socketStateChanged(QAbstractSocket::SocketState)));
79   connect(&socket, SIGNAL(readyRead()), this, SLOT(socketHasData()));
80 #ifdef HAVE_SSL
81   connect(&socket, SIGNAL(encrypted()), this, SLOT(socketInitialized()));
82   connect(&socket, SIGNAL(sslErrors(const QList<QSslError> &)), this, SLOT(sslErrors(const QList<QSslError> &)));
83 #endif
84 }
85
86 CoreNetwork::~CoreNetwork() {
87   if(connectionState() != Disconnected && connectionState() != Network::Reconnecting)
88     disconnectFromIrc(false);      // clean up, but this does not count as requested disconnect!
89   disconnect(&socket, 0, this, 0); // this keeps the socket from triggering events during clean up
90   delete _ircServerHandler;
91   delete _userInputHandler;
92   delete _ctcpHandler;
93 }
94
95 QString CoreNetwork::channelDecode(const QString &bufferName, const QByteArray &string) const {
96   if(!bufferName.isEmpty()) {
97     IrcChannel *channel = ircChannel(bufferName);
98     if(channel)
99       return channel->decodeString(string);
100   }
101   return decodeString(string);
102 }
103
104 QString CoreNetwork::userDecode(const QString &userNick, const QByteArray &string) const {
105   IrcUser *user = ircUser(userNick);
106   if(user)
107     return user->decodeString(string);
108   return decodeString(string);
109 }
110
111 QByteArray CoreNetwork::channelEncode(const QString &bufferName, const QString &string) const {
112   if(!bufferName.isEmpty()) {
113     IrcChannel *channel = ircChannel(bufferName);
114     if(channel)
115       return channel->encodeString(string);
116   }
117   return encodeString(string);
118 }
119
120 QByteArray CoreNetwork::userEncode(const QString &userNick, const QString &string) const {
121   IrcUser *user = ircUser(userNick);
122   if(user)
123     return user->encodeString(string);
124   return encodeString(string);
125 }
126
127 void CoreNetwork::connectToIrc(bool reconnecting) {
128   if(!reconnecting && useAutoReconnect() && _autoReconnectCount == 0) {
129     _autoReconnectTimer.setInterval(autoReconnectInterval() * 1000);
130     if(unlimitedReconnectRetries())
131       _autoReconnectCount = -1;
132     else
133       _autoReconnectCount = autoReconnectRetries();
134   }
135   if(serverList().isEmpty()) {
136     qWarning() << "Server list empty, ignoring connect request!";
137     return;
138   }
139   CoreIdentity *identity = identityPtr();
140   if(!identity) {
141     qWarning() << "Invalid identity configures, ignoring connect request!";
142     return;
143   }
144
145   // cleaning up old quit reason
146   _quitReason.clear();
147
148   // use a random server?
149   if(useRandomServer()) {
150     _lastUsedServerIndex = qrand() % serverList().size();
151   } else if(_previousConnectionAttemptFailed) {
152     // cycle to next server if previous connection attempt failed
153     displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Connection failed. Cycling to next Server"));
154     if(++_lastUsedServerIndex >= serverList().size()) {
155       _lastUsedServerIndex = 0;
156     }
157   }
158   _previousConnectionAttemptFailed = false;
159
160   Server server = usedServer();
161   displayStatusMsg(tr("Connecting to %1:%2...").arg(server.host).arg(server.port));
162   displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Connecting to %1:%2...").arg(server.host).arg(server.port));
163
164   if(server.useProxy) {
165     QNetworkProxy proxy((QNetworkProxy::ProxyType)server.proxyType, server.proxyHost, server.proxyPort, server.proxyUser, server.proxyPass);
166     socket.setProxy(proxy);
167   } else {
168     socket.setProxy(QNetworkProxy::NoProxy);
169   }
170
171 #ifdef HAVE_SSL
172   socket.setProtocol((QSsl::SslProtocol)server.sslVersion);
173   if(server.useSsl) {
174     CoreIdentity *identity = identityPtr();
175     if(identity) {
176       socket.setLocalCertificate(identity->sslCert());
177       socket.setPrivateKey(identity->sslKey());
178     }
179     socket.connectToHostEncrypted(server.host, server.port);
180   } else {
181     socket.connectToHost(server.host, server.port);
182   }
183 #else
184   socket.connectToHost(server.host, server.port);
185 #endif
186 }
187
188 void CoreNetwork::disconnectFromIrc(bool requested, const QString &reason, bool withReconnect) {
189   _quitRequested = requested; // see socketDisconnected();
190   if(!withReconnect) {
191     _autoReconnectTimer.stop();
192     _autoReconnectCount = 0; // prohibiting auto reconnect
193   }
194   disablePingTimeout();
195   _msgQueue.clear();
196
197   IrcUser *me_ = me();
198   if(me_) {
199     QString awayMsg;
200     if(me_->isAway())
201       awayMsg = me_->awayMessage();
202     Core::setAwayMessage(userId(), networkId(), awayMsg);
203     Core::setUserModes(userId(), networkId(), me_->userModes());
204   }
205
206   if(reason.isEmpty() && identityPtr())
207     _quitReason = identityPtr()->quitReason();
208   else
209     _quitReason = reason;
210
211   displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Disconnecting. (%1)").arg((!requested && !withReconnect) ? tr("Core Shutdown") : _quitReason));
212   switch(socket.state()) {
213   case QAbstractSocket::ConnectedState:
214     userInputHandler()->issueQuit(_quitReason);
215     if(requested || withReconnect) {
216       // the irc server has 10 seconds to close the socket
217       _socketCloseTimer.start(10000);
218       break;
219     }
220   default:
221     socket.close();
222     socketDisconnected();
223   }
224 }
225
226 void CoreNetwork::userInput(BufferInfo buf, QString msg) {
227   userInputHandler()->handleUserInput(buf, msg);
228 }
229
230 void CoreNetwork::putRawLine(QByteArray s) {
231   if(_tokenBucket > 0)
232     writeToSocket(s);
233   else
234     _msgQueue.append(s);
235 }
236
237 void CoreNetwork::putCmd(const QString &cmd, const QList<QByteArray> &params, const QByteArray &prefix) {
238   QByteArray msg;
239
240   if(!prefix.isEmpty())
241     msg += ":" + prefix + " ";
242   msg += cmd.toUpper().toAscii();
243
244   for(int i = 0; i < params.size() - 1; i++) {
245     msg += " " + params[i];
246   }
247   if(!params.isEmpty())
248     msg += " :" + params.last();
249
250   putRawLine(msg);
251 }
252
253 void CoreNetwork::setChannelJoined(const QString &channel) {
254   _autoWhoQueue.prepend(channel.toLower()); // prepend so this new chan is the first to be checked
255
256   Core::setChannelPersistent(userId(), networkId(), channel, true);
257   Core::setPersistentChannelKey(userId(), networkId(), channel, _channelKeys[channel.toLower()]);
258 }
259
260 void CoreNetwork::setChannelParted(const QString &channel) {
261   removeChannelKey(channel);
262   _autoWhoQueue.removeAll(channel.toLower());
263   _autoWhoPending.remove(channel.toLower());
264
265   Core::setChannelPersistent(userId(), networkId(), channel, false);
266 }
267
268 void CoreNetwork::addChannelKey(const QString &channel, const QString &key) {
269   if(key.isEmpty()) {
270     removeChannelKey(channel);
271   } else {
272     _channelKeys[channel.toLower()] = key;
273   }
274 }
275
276 void CoreNetwork::removeChannelKey(const QString &channel) {
277   _channelKeys.remove(channel.toLower());
278 }
279
280 bool CoreNetwork::setAutoWhoDone(const QString &channel) {
281   QString chan = channel.toLower();
282   if(_autoWhoPending.value(chan, 0) <= 0)
283     return false;
284   if(--_autoWhoPending[chan] <= 0)
285     _autoWhoPending.remove(chan);
286   return true;
287 }
288
289 void CoreNetwork::setMyNick(const QString &mynick) {
290   Network::setMyNick(mynick);
291   if(connectionState() == Network::Initializing)
292     networkInitialized();
293 }
294
295 void CoreNetwork::socketHasData() {
296   while(socket.canReadLine()) {
297     QByteArray s = socket.readLine().trimmed();
298     ircServerHandler()->handleServerMsg(s);
299   }
300 }
301
302 void CoreNetwork::socketError(QAbstractSocket::SocketError error) {
303   if(_quitRequested && error == QAbstractSocket::RemoteHostClosedError)
304     return;
305
306   _previousConnectionAttemptFailed = true;
307   qWarning() << qPrintable(tr("Could not connect to %1 (%2)").arg(networkName(), socket.errorString()));
308   emit connectionError(socket.errorString());
309   displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Connection failure: %1").arg(socket.errorString()));
310   emitConnectionError(socket.errorString());
311   if(socket.state() < QAbstractSocket::ConnectedState) {
312     socketDisconnected();
313   }
314 }
315
316 void CoreNetwork::socketInitialized() {
317   Server server = usedServer();
318 #ifdef HAVE_SSL
319   if(server.useSsl && !socket.isEncrypted())
320     return;
321 #endif
322
323   CoreIdentity *identity = identityPtr();
324   if(!identity) {
325     qCritical() << "Identity invalid!";
326     disconnectFromIrc();
327     return;
328   }
329
330   // TokenBucket to avoid sending too much at once
331   _messageDelay = 2200;    // this seems to be a safe value (2.2 seconds delay)
332   _burstSize = 5;
333   _tokenBucket = _burstSize; // init with a full bucket
334   _tokenBucketTimer.start(_messageDelay);
335
336   if(!server.password.isEmpty()) {
337     putRawLine(serverEncode(QString("PASS %1").arg(server.password)));
338   }
339   QString nick;
340   if(identity->nicks().isEmpty()) {
341     nick = "quassel";
342     qWarning() << "CoreNetwork::socketInitialized(): no nicks supplied for identity Id" << identity->id();
343   } else {
344     nick = identity->nicks()[0];
345   }
346   putRawLine(serverEncode(QString("NICK :%1").arg(nick)));
347   putRawLine(serverEncode(QString("USER %1 8 * :%2").arg(identity->ident(), identity->realName())));
348 }
349
350 void CoreNetwork::socketDisconnected() {
351   disablePingTimeout();
352   _msgQueue.clear();
353
354   _autoWhoCycleTimer.stop();
355   _autoWhoTimer.stop();
356   _autoWhoQueue.clear();
357   _autoWhoPending.clear();
358
359   _socketCloseTimer.stop();
360
361   _tokenBucketTimer.stop();
362
363   IrcUser *me_ = me();
364   if(me_) {
365     foreach(QString channel, me_->channels())
366       displayMsg(Message::Quit, BufferInfo::ChannelBuffer, channel, _quitReason, me_->hostmask());
367   }
368
369   setConnected(false);
370   emit disconnected(networkId());
371   if(_quitRequested) {
372     _quitRequested = false;
373     setConnectionState(Network::Disconnected);
374     Core::setNetworkConnected(userId(), networkId(), false);
375   } else if(_autoReconnectCount != 0) {
376     setConnectionState(Network::Reconnecting);
377     if(_autoReconnectCount == -1 || _autoReconnectCount == autoReconnectRetries())
378       doAutoReconnect(); // first try is immediate
379     else
380       _autoReconnectTimer.start();
381   }
382 }
383
384 void CoreNetwork::socketStateChanged(QAbstractSocket::SocketState socketState) {
385   Network::ConnectionState state;
386   switch(socketState) {
387     case QAbstractSocket::UnconnectedState:
388       state = Network::Disconnected;
389       break;
390     case QAbstractSocket::HostLookupState:
391     case QAbstractSocket::ConnectingState:
392       state = Network::Connecting;
393       break;
394     case QAbstractSocket::ConnectedState:
395       state = Network::Initializing;
396       break;
397     case QAbstractSocket::ClosingState:
398       state = Network::Disconnecting;
399       break;
400     default:
401       state = Network::Disconnected;
402   }
403   setConnectionState(state);
404 }
405
406 void CoreNetwork::networkInitialized() {
407   setConnectionState(Network::Initialized);
408   setConnected(true);
409   _quitRequested = false;
410
411   if(useAutoReconnect()) {
412     // reset counter
413     _autoReconnectCount = unlimitedReconnectRetries() ? -1 : autoReconnectRetries();
414   }
415
416   // restore away state
417   QString awayMsg = Core::awayMessage(userId(), networkId());
418   if(!awayMsg.isEmpty())
419     userInputHandler()->handleAway(BufferInfo(), Core::awayMessage(userId(), networkId()));
420
421   // restore old user modes if server default mode is set.
422   IrcUser *me_ = me();
423   if(me_) {
424     if(!me_->userModes().isEmpty()) {
425       restoreUserModes();
426     } else {
427       connect(me_, SIGNAL(userModesSet(QString)), this, SLOT(restoreUserModes()));
428       connect(me_, SIGNAL(userModesAdded(QString)), this, SLOT(restoreUserModes()));
429     }
430   }
431
432   sendPerform();
433
434   enablePingTimeout();
435
436   if(networkConfig()->autoWhoEnabled()) {
437     _autoWhoCycleTimer.start();
438     _autoWhoTimer.start();
439     startAutoWhoCycle();  // FIXME wait for autojoin to be completed
440   }
441
442   Core::bufferInfo(userId(), networkId(), BufferInfo::StatusBuffer); // create status buffer
443   Core::setNetworkConnected(userId(), networkId(), true);
444 }
445
446 void CoreNetwork::sendPerform() {
447   BufferInfo statusBuf = BufferInfo::fakeStatusBuffer(networkId());
448
449   // do auto identify
450   if(useAutoIdentify() && !autoIdentifyService().isEmpty() && !autoIdentifyPassword().isEmpty()) {
451     userInputHandler()->handleMsg(statusBuf, QString("%1 IDENTIFY %2").arg(autoIdentifyService(), autoIdentifyPassword()));
452   }
453
454   // send perform list
455   foreach(QString line, perform()) {
456     if(!line.isEmpty()) userInput(statusBuf, line);
457   }
458
459   // rejoin channels we've been in
460   if(rejoinChannels()) {
461     QStringList channels, keys;
462     foreach(QString chan, coreSession()->persistentChannels(networkId()).keys()) {
463       QString key = channelKey(chan);
464       if(!key.isEmpty()) {
465         channels.prepend(chan);
466         keys.prepend(key);
467       } else {
468         channels.append(chan);
469       }
470     }
471     QString joinString = QString("%1 %2").arg(channels.join(",")).arg(keys.join(",")).trimmed();
472     if(!joinString.isEmpty())
473       userInputHandler()->handleJoin(statusBuf, joinString);
474   }
475 }
476
477 void CoreNetwork::restoreUserModes() {
478   IrcUser *me_ = me();
479   Q_ASSERT(me_);
480
481   disconnect(me_, SIGNAL(userModesSet(QString)), this, SLOT(restoreUserModes()));
482   disconnect(me_, SIGNAL(userModesAdded(QString)), this, SLOT(restoreUserModes()));
483
484   QString removeModes;
485   QString addModes = Core::userModes(userId(), networkId());
486   QString currentModes = me_->userModes();
487
488   removeModes = currentModes;
489   removeModes.remove(QRegExp(QString("[%1]").arg(addModes)));
490   addModes.remove(QRegExp(QString("[%1]").arg(currentModes)));
491
492   removeModes = QString("%1 -%2").arg(me_->nick(), removeModes);
493   addModes = QString("%1 +%2").arg(me_->nick(), addModes);
494   userInputHandler()->handleMode(BufferInfo(), removeModes);
495   userInputHandler()->handleMode(BufferInfo(), addModes);
496 }
497
498 void CoreNetwork::setUseAutoReconnect(bool use) {
499   Network::setUseAutoReconnect(use);
500   if(!use)
501     _autoReconnectTimer.stop();
502 }
503
504 void CoreNetwork::setAutoReconnectInterval(quint32 interval) {
505   Network::setAutoReconnectInterval(interval);
506   _autoReconnectTimer.setInterval(interval * 1000);
507 }
508
509 void CoreNetwork::setAutoReconnectRetries(quint16 retries) {
510   Network::setAutoReconnectRetries(retries);
511   if(_autoReconnectCount != 0) {
512     if(unlimitedReconnectRetries())
513       _autoReconnectCount = -1;
514     else
515       _autoReconnectCount = autoReconnectRetries();
516   }
517 }
518
519 void CoreNetwork::doAutoReconnect() {
520   if(connectionState() != Network::Disconnected && connectionState() != Network::Reconnecting) {
521     qWarning() << "CoreNetwork::doAutoReconnect(): Cannot reconnect while not being disconnected!";
522     return;
523   }
524   if(_autoReconnectCount > 0 || _autoReconnectCount == -1)
525     _autoReconnectCount--; // -2 means we delay the next reconnect
526   connectToIrc(true);
527 }
528
529 void CoreNetwork::sendPing() {
530   uint now = QDateTime::currentDateTime().toTime_t();
531   if(_pingCount != 0) {
532     qDebug() << "UserId:" << userId() << "Network:" << networkName() << "missed" << _pingCount << "pings."
533              << "BA:" << socket.bytesAvailable() << "BTW:" << socket.bytesToWrite();
534   }
535   if((int)_pingCount >= networkConfig()->maxPingCount() && now - _lastPingTime <= (uint)(_pingTimer.interval() / 1000) + 1) {
536     // the second check compares the actual elapsed time since the last ping and the pingTimer interval
537     // if the interval is shorter then the actual elapsed time it means that this thread was somehow blocked
538     // and unable to even handle a ping answer. So we ignore those misses.
539     disconnectFromIrc(false, QString("No Ping reply in %1 seconds.").arg(_pingCount * _pingTimer.interval() / 1000), true /* withReconnect */);
540   } else {
541     _lastPingTime = now;
542     _pingCount++;
543     userInputHandler()->handlePing(BufferInfo(), QString());
544   }
545 }
546
547 void CoreNetwork::enablePingTimeout(bool enable) {
548   if(!enable)
549     disablePingTimeout();
550   else {
551     resetPingTimeout();
552     if(networkConfig()->pingTimeoutEnabled())
553       _pingTimer.start();
554   }
555 }
556
557 void CoreNetwork::disablePingTimeout() {
558   _pingTimer.stop();
559   resetPingTimeout();
560 }
561
562 void CoreNetwork::setPingInterval(int interval) {
563   _pingTimer.setInterval(interval * 1000);
564 }
565
566 /******** AutoWHO ********/
567
568 void CoreNetwork::startAutoWhoCycle() {
569   if(!_autoWhoQueue.isEmpty()) {
570     _autoWhoCycleTimer.stop();
571     return;
572   }
573   _autoWhoQueue = channels();
574 }
575
576 void CoreNetwork::setAutoWhoDelay(int delay) {
577   _autoWhoTimer.setInterval(delay * 1000);
578 }
579
580 void CoreNetwork::setAutoWhoInterval(int interval) {
581   _autoWhoCycleTimer.setInterval(interval * 1000);
582 }
583
584 void CoreNetwork::setAutoWhoEnabled(bool enabled) {
585   if(enabled && isConnected() && !_autoWhoTimer.isActive())
586     _autoWhoTimer.start();
587   else if(!enabled) {
588     _autoWhoTimer.stop();
589     _autoWhoCycleTimer.stop();
590   }
591 }
592
593 void CoreNetwork::sendAutoWho() {
594   // Don't send autowho if there are still some pending
595   if(_autoWhoPending.count())
596     return;
597
598   while(!_autoWhoQueue.isEmpty()) {
599     QString chan = _autoWhoQueue.takeFirst();
600     IrcChannel *ircchan = ircChannel(chan);
601     if(!ircchan) continue;
602     if(networkConfig()->autoWhoNickLimit() > 0 && ircchan->ircUsers().count() >= networkConfig()->autoWhoNickLimit())
603       continue;
604     _autoWhoPending[chan]++;
605     putRawLine("WHO " + serverEncode(chan));
606     break;
607   }
608   if(_autoWhoQueue.isEmpty() && networkConfig()->autoWhoEnabled() && !_autoWhoCycleTimer.isActive()) {
609     // Timer was stopped, means a new cycle is due immediately
610     _autoWhoCycleTimer.start();
611     startAutoWhoCycle();
612   }
613 }
614
615 #ifdef HAVE_SSL
616 void CoreNetwork::sslErrors(const QList<QSslError> &sslErrors) {
617   Q_UNUSED(sslErrors)
618   socket.ignoreSslErrors();
619   // TODO errorhandling
620 }
621 #endif  // HAVE_SSL
622
623 void CoreNetwork::fillBucketAndProcessQueue() {
624   if(_tokenBucket < _burstSize) {
625     _tokenBucket++;
626   }
627
628   while(_msgQueue.size() > 0 && _tokenBucket > 0) {
629     writeToSocket(_msgQueue.takeFirst());
630   }
631 }
632
633 void CoreNetwork::writeToSocket(const QByteArray &data) {
634   socket.write(data);
635   socket.write("\r\n");
636   _tokenBucket--;
637 }
638
639 Network::Server CoreNetwork::usedServer() const {
640   if(_lastUsedServerIndex < serverList().count())
641     return serverList()[_lastUsedServerIndex];
642
643   if(!serverList().isEmpty())
644     return serverList()[0];
645
646   return Network::Server();
647 }
648
649 void CoreNetwork::requestConnect() const {
650   if(connectionState() != Disconnected) {
651     qWarning() << "Requesting connect while already being connected!";
652     return;
653   }
654   QMetaObject::invokeMethod(const_cast<CoreNetwork *>(this), "connectToIrc", Qt::QueuedConnection);
655 }
656
657 void CoreNetwork::requestDisconnect() const {
658   if(connectionState() == Disconnected) {
659     qWarning() << "Requesting disconnect while not being connected!";
660     return;
661   }
662   userInputHandler()->handleQuit(BufferInfo(), QString());
663 }
664
665 void CoreNetwork::requestSetNetworkInfo(const NetworkInfo &info) {
666   Network::Server currentServer = usedServer();
667   setNetworkInfo(info);
668   Core::updateNetwork(coreSession()->user(), info);
669
670   // the order of the servers might have changed,
671   // so we try to find the previously used server
672   _lastUsedServerIndex = 0;
673   for(int i = 0; i < serverList().count(); i++) {
674     Network::Server server = serverList()[i];
675     if(server.host == currentServer.host && server.port == currentServer.port) {
676       _lastUsedServerIndex = i;
677       break;
678     }
679   }
680 }