Add a checkParamCount() for EventStringifier as well
[quassel.git] / src / core / ircserverhandler.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-10 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 #include "ircserverhandler.h"
21
22 #include "util.h"
23
24 #include "coresession.h"
25 #include "coreirclisthelper.h"
26 #include "coreidentity.h"
27 #include "ctcphandler.h"
28
29 #include "ircuser.h"
30 #include "coreircchannel.h"
31 #include "logger.h"
32
33 #include <QDebug>
34
35 #ifdef HAVE_QCA2
36 #  include "cipher.h"
37 #endif
38
39 IrcServerHandler::IrcServerHandler(CoreNetwork *parent)
40   : CoreBasicHandler(parent),
41     _whois(false)
42 {
43   connect(parent, SIGNAL(disconnected(NetworkId)), this, SLOT(destroyNetsplits()));
44 }
45
46 IrcServerHandler::~IrcServerHandler() {
47   destroyNetsplits();
48 }
49
50 /*! Handle a raw message string sent by the server. We try to find a suitable handler, otherwise we call a default handler. */
51 void IrcServerHandler::handleServerMsg(QByteArray msg) {
52   if(msg.isEmpty()) {
53     qWarning() << "Received empty string from server!";
54     return;
55   }
56
57   // Now we split the raw message into its various parts...
58   QString prefix = "";
59   QByteArray trailing;
60   QString cmd;
61
62   // First, check for a trailing parameter introduced by " :", since this might screw up splitting the msg
63   // NOTE: This assumes that this is true in raw encoding, but well, hopefully there are no servers running in japanese on protocol level...
64   int idx = msg.indexOf(" :");
65   if(idx >= 0) {
66     if(msg.length() > idx + 2)
67       trailing = msg.mid(idx + 2);
68     msg = msg.left(idx);
69   }
70   // OK, now it is safe to split...
71   QList<QByteArray> params = msg.split(' ');
72
73   // This could still contain empty elements due to (faulty?) ircds sending multiple spaces in a row
74   // Also, QByteArray is not nearly as convenient to work with as QString for such things :)
75   QList<QByteArray>::iterator iter = params.begin();
76   while(iter != params.end()) {
77     if(iter->isEmpty())
78       iter = params.erase(iter);
79     else
80       ++iter;
81   }
82
83   if(!trailing.isEmpty()) params << trailing;
84   if(params.count() < 1) {
85     qWarning() << "Received invalid string from server!";
86     return;
87   }
88
89   QString foo = serverDecode(params.takeFirst());
90
91   // with SASL, the command is 'AUTHENTICATE +' and we should check for this here.
92   /* obsolete because of events
93   if(foo == QString("AUTHENTICATE +")) {
94     handleAuthenticate();
95     return;
96   }
97   */
98   // a colon as the first chars indicates the existence of a prefix
99   if(foo[0] == ':') {
100     foo.remove(0, 1);
101     prefix = foo;
102     if(params.count() < 1) {
103       qWarning() << "Received invalid string from server!";
104       return;
105     }
106     foo = serverDecode(params.takeFirst());
107   }
108
109   // next string without a whitespace is the command
110   cmd = foo.trimmed().toUpper();
111
112   // numeric replies have the target as first param (RFC 2812 - 2.4). this is usually our own nick. Remove this!
113   uint num = cmd.toUInt();
114   if(num > 0) {
115     if(params.count() == 0) {
116       qWarning() << "Message received from server violates RFC and is ignored!" << msg;
117       return;
118     }
119     _target = serverDecode(params.takeFirst());
120   } else {
121     _target = QString();
122   }
123
124   // note that the IRC server is still alive
125   network()->resetPingTimeout();
126
127   // Now we try to find a handler for this message. BTW, I do love the Trolltech guys ;-)
128   handle(cmd, Q_ARG(QString, prefix), Q_ARG(QList<QByteArray>, params));
129 }
130
131
132 void IrcServerHandler::defaultHandler(QString cmd, const QString &prefix, const QList<QByteArray> &rawparams) {
133   // many commands are handled by the event system now
134   Q_UNUSED(cmd)
135   Q_UNUSED(prefix)
136   Q_UNUSED(rawparams)
137 }
138
139 //******************************/
140 // IRC SERVER HANDLER
141 //******************************/
142
143 void IrcServerHandler::handleJoin(const QString &prefix, const QList<QByteArray> &params) {
144   if(!checkParamCount("IrcServerHandler::handleJoin()", params, 1))
145     return;
146
147   QString channel = serverDecode(params[0]);
148   IrcUser *ircuser = network()->updateNickFromMask(prefix);
149
150   bool handledByNetsplit = false;
151   if(!_netsplits.empty()) {
152     foreach(Netsplit* n, _netsplits) {
153       handledByNetsplit = n->userJoined(prefix, channel);
154       if(handledByNetsplit)
155         break;
156     }
157   }
158
159   // normal join
160   if(!handledByNetsplit) {
161     emit displayMsg(Message::Join, BufferInfo::ChannelBuffer, channel, channel, prefix);
162     ircuser->joinChannel(channel);
163   }
164   //qDebug() << "IrcServerHandler::handleJoin()" << prefix << params;
165
166   if(network()->isMe(ircuser)) {
167     network()->setChannelJoined(channel);
168     putCmd("MODE", params[0]); // we want to know the modes of the channel we just joined, so we ask politely
169   }
170 }
171
172 void IrcServerHandler::handleMode(const QString &prefix, const QList<QByteArray> &params) {
173   if(!checkParamCount("IrcServerHandler::handleMode()", params, 2))
174     return;
175
176   if(network()->isChannelName(serverDecode(params[0]))) {
177     // Channel Modes
178     emit displayMsg(Message::Mode, BufferInfo::ChannelBuffer, serverDecode(params[0]), serverDecode(params).join(" "), prefix);
179
180     IrcChannel *channel = network()->ircChannel(params[0]);
181     if(!channel) {
182       // we received mode information for a channel we're not in. that means probably we've just been kicked out or something like that
183       // anyways: we don't have a place to store the data --> discard the info.
184       return;
185     }
186
187     QString modes = params[1];
188     bool add = true;
189     int paramOffset = 2;
190     for(int c = 0; c < modes.length(); c++) {
191       if(modes[c] == '+') {
192         add = true;
193         continue;
194       }
195       if(modes[c] == '-') {
196         add = false;
197         continue;
198       }
199
200       if(network()->prefixModes().contains(modes[c])) {
201         // user channel modes (op, voice, etc...)
202         if(paramOffset < params.count()) {
203           IrcUser *ircUser = network()->ircUser(params[paramOffset]);
204           if(!ircUser) {
205             qWarning() << Q_FUNC_INFO << "Unknown IrcUser:" << params[paramOffset];
206           } else {
207             if(add) {
208               bool handledByNetsplit = false;
209               if(!_netsplits.empty()) {
210                 foreach(Netsplit* n, _netsplits) {
211                   handledByNetsplit = n->userAlreadyJoined(ircUser->hostmask(), channel->name());
212                   if(handledByNetsplit) {
213                     n->addMode(ircUser->hostmask(), channel->name(), QString(modes[c]));
214                     break;
215                   }
216                 }
217               }
218               if(!handledByNetsplit)
219                 channel->addUserMode(ircUser, QString(modes[c]));
220             }
221             else
222               channel->removeUserMode(ircUser, QString(modes[c]));
223           }
224         } else {
225           qWarning() << "Received MODE with too few parameters:" << serverDecode(params);
226         }
227         paramOffset++;
228       } else {
229         // regular channel modes
230         QString value;
231         Network::ChannelModeType modeType = network()->channelModeType(modes[c]);
232         if(modeType == Network::A_CHANMODE || modeType == Network::B_CHANMODE || (modeType == Network::C_CHANMODE && add)) {
233           if(paramOffset < params.count()) {
234             value = params[paramOffset];
235           } else {
236             qWarning() << "Received MODE with too few parameters:" << serverDecode(params);
237           }
238           paramOffset++;
239         }
240
241         if(add)
242           channel->addChannelMode(modes[c], value);
243         else
244           channel->removeChannelMode(modes[c], value);
245       }
246     }
247
248   } else {
249     // pure User Modes
250     IrcUser *ircUser = network()->newIrcUser(params[0]);
251     QString modeString(serverDecode(params[1]));
252     QString addModes;
253     QString removeModes;
254     bool add = false;
255     for(int c = 0; c < modeString.count(); c++) {
256       if(modeString[c] == '+') {
257         add = true;
258         continue;
259       }
260       if(modeString[c] == '-') {
261         add = false;
262         continue;
263       }
264       if(add)
265         addModes += modeString[c];
266       else
267         removeModes += modeString[c];
268     }
269     if(!addModes.isEmpty())
270       ircUser->addUserModes(addModes);
271     if(!removeModes.isEmpty())
272       ircUser->removeUserModes(removeModes);
273
274     if(network()->isMe(ircUser)) {
275       network()->updatePersistentModes(addModes, removeModes);
276     }
277
278     // FIXME: redirect
279     emit displayMsg(Message::Mode, BufferInfo::StatusBuffer, "", serverDecode(params).join(" "), prefix);
280   }
281 }
282
283 void IrcServerHandler::handleNotice(const QString &prefix, const QList<QByteArray> &params) {
284   if(!checkParamCount("IrcServerHandler::handleNotice()", params, 2))
285     return;
286
287
288   QStringList targets = serverDecode(params[0]).split(',', QString::SkipEmptyParts);
289   QStringList::const_iterator targetIter;
290   for(targetIter = targets.constBegin(); targetIter != targets.constEnd(); targetIter++) {
291     QString target = *targetIter;
292
293     // special treatment for welcome messages like:
294     // :ChanServ!ChanServ@services. NOTICE egst :[#apache] Welcome, this is #apache. Please read the in-channel topic message. This channel is being logged by IRSeekBot. If you have any question please see http://blog.freenode.net/?p=68
295     if(!network()->isChannelName(target)) {
296       QString msg = serverDecode(params[1]);
297       QRegExp welcomeRegExp("^\\[([^\\]]+)\\] ");
298       if(welcomeRegExp.indexIn(msg) != -1) {
299         QString channelname = welcomeRegExp.cap(1);
300         msg = msg.mid(welcomeRegExp.matchedLength());
301         CoreIrcChannel *chan = static_cast<CoreIrcChannel *>(network()->ircChannel(channelname)); // we only have CoreIrcChannels in the core, so this cast is safe
302         if(chan && !chan->receivedWelcomeMsg()) {
303           chan->setReceivedWelcomeMsg();
304           emit displayMsg(Message::Notice, BufferInfo::ChannelBuffer, channelname, msg, prefix);
305           continue;
306         }
307       }
308     }
309
310     if(prefix.isEmpty() || target == "AUTH") {
311       target = "";
312     } else {
313       if(!target.isEmpty() && network()->prefixes().contains(target[0]))
314         target = target.mid(1);
315       if(!network()->isChannelName(target))
316         target = nickFromMask(prefix);
317     }
318
319     network()->ctcpHandler()->parse(Message::Notice, prefix, target, params[1]);
320   }
321
322 }
323
324 void IrcServerHandler::handlePing(const QString &prefix, const QList<QByteArray> &params) {
325   Q_UNUSED(prefix);
326   putCmd("PONG", params);
327 }
328
329 void IrcServerHandler::handlePrivmsg(const QString &prefix, const QList<QByteArray> &params) {
330   if(!checkParamCount("IrcServerHandler::handlePrivmsg()", params, 1))
331     return;
332
333   IrcUser *ircuser = network()->updateNickFromMask(prefix);
334   if(!ircuser) {
335     qWarning() << "IrcServerHandler::handlePrivmsg(): Unknown IrcUser!";
336     return;
337   }
338
339   if(params.isEmpty()) {
340     qWarning() << "IrcServerHandler::handlePrivmsg(): received PRIVMSG without target or message from:" << prefix;
341     return;
342   }
343
344   QString senderNick = nickFromMask(prefix);
345
346   QByteArray msg = params.count() < 2
347     ? QByteArray("")
348     : params[1];
349
350   QStringList targets = serverDecode(params[0]).split(',', QString::SkipEmptyParts);
351   QStringList::const_iterator targetIter;
352   for(targetIter = targets.constBegin(); targetIter != targets.constEnd(); targetIter++) {
353     const QString &target = network()->isChannelName(*targetIter)
354       ? *targetIter
355       : senderNick;
356
357 #ifdef HAVE_QCA2
358     msg = decrypt(target, msg);
359 #endif
360     // it's possible to pack multiple privmsgs into one param using ctcp
361     // - > we let the ctcpHandler do the work
362     network()->ctcpHandler()->parse(Message::Plain, prefix, target, msg);
363   }
364 }
365
366 void IrcServerHandler::handleQuit(const QString &prefix, const QList<QByteArray> &params) {
367   IrcUser *ircuser = network()->updateNickFromMask(prefix);
368   if(!ircuser) return;
369
370   QString msg;
371   if(params.count() > 0)
372     msg = userDecode(ircuser->nick(), params[0]);
373
374   // check if netsplit
375   if(Netsplit::isNetsplit(msg)) {
376     Netsplit *n;
377     if(!_netsplits.contains(msg)) {
378       n = new Netsplit();
379       connect(n, SIGNAL(finished()), this, SLOT(handleNetsplitFinished()));
380       connect(n, SIGNAL(netsplitJoin(const QString&, const QStringList&, const QStringList&, const QString&)),
381               this, SLOT(handleNetsplitJoin(const QString&, const QStringList&, const QStringList&, const QString&)));
382       connect(n, SIGNAL(netsplitQuit(const QString&, const QStringList&, const QString&)),
383               this, SLOT(handleNetsplitQuit(const QString&, const QStringList&, const QString&)));
384       connect(n, SIGNAL(earlyJoin(const QString&, const QStringList&, const QStringList&)),
385               this, SLOT(handleEarlyNetsplitJoin(const QString&, const QStringList&, const QStringList&)));
386       _netsplits.insert(msg, n);
387     }
388     else {
389       n = _netsplits[msg];
390     }
391     // add this user to the netsplit
392     n->userQuit(prefix, ircuser->channels(),msg);
393   }
394   // normal quit
395   else {
396     foreach(QString channel, ircuser->channels())
397       emit displayMsg(Message::Quit, BufferInfo::ChannelBuffer, channel, msg, prefix);
398     ircuser->quit();
399   }
400 }
401
402 /* RPL_ISUPPORT */
403 // TODO Complete 005 handling, also use sensible defaults for non-sent stuff
404 void IrcServerHandler::handle005(const QString &prefix, const QList<QByteArray> &params) {
405   Q_UNUSED(prefix);
406   const int numParams = params.size();
407   if(numParams == 0) {
408     emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Received RPL_ISUPPORT (005) without parameters!"), prefix);
409     return;
410   }
411
412   emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", serverDecode(params).join(" "), prefix);
413
414   QString rpl_isupport_suffix = serverDecode(params.last());
415   if(!rpl_isupport_suffix.toLower().contains("are supported by this server")) {
416     emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Received non RFC compliant RPL_ISUPPORT: this can lead to unexpected behavior!"), prefix);
417   }
418
419   QString rawSupport;
420   QString key, value;
421   for(int i = 0; i < numParams - 1; i++) {
422     QString rawSupport = serverDecode(params[i]);
423     QString key = rawSupport.section("=", 0, 0);
424     QString value = rawSupport.section("=", 1);
425     network()->addSupport(key, value);
426   }
427
428   /* determine our prefixes here to get an accurate result */
429   network()->determinePrefixes();
430 }
431
432 /* RPL_LIST -  "<channel> <# visible> :<topic>" */
433 void IrcServerHandler::handle322(const QString &prefix, const QList<QByteArray> &params) {
434   Q_UNUSED(prefix)
435   QString channelName;
436   quint32 userCount = 0;
437   QString topic;
438
439   int paramCount = params.count();
440   switch(paramCount) {
441   case 3:
442     topic = serverDecode(params[2]);
443   case 2:
444     userCount = serverDecode(params[1]).toUInt();
445   case 1:
446     channelName = serverDecode(params[0]);
447   default:
448     break;
449   }
450   if(!coreSession()->ircListHelper()->addChannel(network()->networkId(), channelName, userCount, topic))
451     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Channel %1 has %2 users. Topic is: %3").arg(channelName).arg(userCount).arg(topic));
452 }
453
454 /* RPL_LISTEND ":End of LIST" */
455 void IrcServerHandler::handle323(const QString &prefix, const QList<QByteArray> &params) {
456   Q_UNUSED(prefix)
457   Q_UNUSED(params)
458
459   if(!coreSession()->ircListHelper()->endOfChannelList(network()->networkId()))
460     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("End of channel list"));
461 }
462
463 /* RPL_CHANNELMODEIS - "<channel> <mode> <mode params>" */
464 void IrcServerHandler::handle324(const QString &prefix, const QList<QByteArray> &params) {
465   Q_UNUSED(prefix);
466   handleMode(prefix, params);
467 }
468
469 /* RPL_??? - "<channel> <homepage> */
470 void IrcServerHandler::handle328(const QString &prefix, const QList<QByteArray> &params) {
471   Q_UNUSED(prefix);
472   if(!checkParamCount("IrcServerHandler::handle328()", params, 2))
473     return;
474
475   QString channel = serverDecode(params[0]);
476   QString homepage = serverDecode(params[1]);
477
478   emit displayMsg(Message::Server, BufferInfo::ChannelBuffer, channel, tr("Homepage for %1 is %2").arg(channel, homepage));
479 }
480
481
482 /* RPL_??? - "<channel> <creation time (unix)>" */
483 void IrcServerHandler::handle329(const QString &prefix, const QList<QByteArray> &params) {
484   Q_UNUSED(prefix);
485   if(!checkParamCount("IrcServerHandler::handle329()", params, 2))
486     return;
487
488   QString channel = serverDecode(params[0]);
489   uint unixtime = params[1].toUInt();
490   if(!unixtime) {
491     qWarning() << Q_FUNC_INFO << "received invalid timestamp:" << params[1];
492     return;
493   }
494   QDateTime time = QDateTime::fromTime_t(unixtime);
495
496   emit displayMsg(Message::Server, BufferInfo::ChannelBuffer, channel, tr("Channel %1 created on %2").arg(channel, time.toString()));
497 }
498
499 /* RPL_NOTOPIC */
500 void IrcServerHandler::handle331(const QString &prefix, const QList<QByteArray> &params) {
501   Q_UNUSED(prefix);
502   if(!checkParamCount("IrcServerHandler::handle331()", params, 1))
503     return;
504
505   QString channel = serverDecode(params[0]);
506   IrcChannel *chan = network()->ircChannel(channel);
507   if(chan)
508     chan->setTopic(QString());
509
510   emit displayMsg(Message::Topic, BufferInfo::ChannelBuffer, channel, tr("No topic is set for %1.").arg(channel));
511 }
512
513 /* RPL_TOPIC */
514 void IrcServerHandler::handle332(const QString &prefix, const QList<QByteArray> &params) {
515   Q_UNUSED(prefix);
516   if(!checkParamCount("IrcServerHandler::handle332()", params, 2))
517     return;
518
519   QString channel = serverDecode(params[0]);
520   QByteArray rawTopic = params[1];
521 #ifdef HAVE_QCA2
522   rawTopic = decrypt(channel, rawTopic, true);
523 #endif
524   QString topic = channelDecode(channel, rawTopic);
525
526   IrcChannel *chan = network()->ircChannel(channel);
527   if(chan)
528     chan->setTopic(topic);
529
530   emit displayMsg(Message::Topic, BufferInfo::ChannelBuffer, channel, tr("Topic for %1 is \"%2\"").arg(channel, topic));
531 }
532
533 /* Topic set by... */
534 void IrcServerHandler::handle333(const QString &prefix, const QList<QByteArray> &params) {
535   Q_UNUSED(prefix);
536   if(!checkParamCount("IrcServerHandler::handle333()", params, 3))
537     return;
538
539   QString channel = serverDecode(params[0]);
540   emit displayMsg(Message::Topic, BufferInfo::ChannelBuffer, channel,
541                   tr("Topic set by %1 on %2") .arg(serverDecode(params[1]), QDateTime::fromTime_t(channelDecode(channel, params[2]).toUInt()).toString()));
542 }
543
544 /* RPL_INVITING - "<nick> <channel>*/
545 void IrcServerHandler::handle341(const QString &prefix, const QList<QByteArray> &params) {
546   Q_UNUSED(prefix);
547   if(!checkParamCount("IrcServerHandler::handle341()", params, 2))
548     return;
549
550   QString nick = serverDecode(params[0]);
551
552   IrcChannel *channel = network()->ircChannel(serverDecode(params[1]));
553   if(!channel) {
554     qWarning() << "IrcServerHandler::handle341(): unknown channel:" << params[1];
555     return;
556   }
557
558   emit displayMsg(Message::Server, BufferInfo::ChannelBuffer, channel->name(), tr("%1 has been invited to %2").arg(nick).arg(channel->name()));
559 }
560
561 /*  RPL_WHOREPLY: "<channel> <user> <host> <server> <nick>
562               ( "H" / "G" > ["*"] [ ( "@" / "+" ) ] :<hopcount> <real name>" */
563 void IrcServerHandler::handle352(const QString &prefix, const QList<QByteArray> &params) {
564   Q_UNUSED(prefix)
565   if(!checkParamCount("IrcServerHandler::handle352()", params, 6))
566     return;
567
568   QString channel = serverDecode(params[0]);
569   IrcUser *ircuser = network()->ircUser(serverDecode(params[4]));
570   if(ircuser) {
571     ircuser->setUser(serverDecode(params[1]));
572     ircuser->setHost(serverDecode(params[2]));
573
574     bool away = serverDecode(params[5]).startsWith("G") ? true : false;
575     ircuser->setAway(away);
576     ircuser->setServer(serverDecode(params[3]));
577     ircuser->setRealName(serverDecode(params.last()).section(" ", 1));
578   }
579
580   if(!network()->isAutoWhoInProgress(channel)) {
581     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Who] %1").arg(serverDecode(params).join(" ")));
582   }
583 }
584
585 /* RPL_NAMREPLY */
586 void IrcServerHandler::handle353(const QString &prefix, const QList<QByteArray> &params) {
587   Q_UNUSED(prefix);
588   if(!checkParamCount("IrcServerHandler::handle353()", params, 3))
589     return;
590
591   // param[0] is either "=", "*" or "@" indicating a public, private or secret channel
592   // we don't use this information at the time beeing
593   QString channelname = serverDecode(params[1]);
594
595   IrcChannel *channel = network()->ircChannel(channelname);
596   if(!channel) {
597     qWarning() << "IrcServerHandler::handle353(): received unknown target channel:" << channelname;
598     return;
599   }
600
601   QStringList nicks;
602   QStringList modes;
603
604   foreach(QString nick, serverDecode(params[2]).split(' ')) {
605     QString mode = QString();
606
607     if(network()->prefixes().contains(nick[0])) {
608       mode = network()->prefixToMode(nick[0]);
609       nick = nick.mid(1);
610     }
611
612     nicks << nick;
613     modes << mode;
614   }
615
616   channel->joinIrcUsers(nicks, modes);
617 }
618
619 /*  RPL_ENDOFWHOWAS - "<nick> :End of WHOWAS" */
620 void IrcServerHandler::handle369(const QString &prefix, const QList<QByteArray> &params) {
621   Q_UNUSED(prefix)
622   emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whowas] %1").arg(serverDecode(params).join(" ")));
623 }
624
625 /* ERR_ERRONEUSNICKNAME */
626 void IrcServerHandler::handle432(const QString &prefix, const QList<QByteArray> &params) {
627   Q_UNUSED(prefix);
628
629   QString errnick;
630   if(params.size() < 2) {
631     // handle unreal-ircd bug, where unreal ircd doesnt supply a TARGET in ERR_ERRONEUSNICKNAME during registration phase:
632     // nick @@@
633     // :irc.scortum.moep.net 432  @@@ :Erroneous Nickname: Illegal characters
634     // correct server reply:
635     // :irc.scortum.moep.net 432 * @@@ :Erroneous Nickname: Illegal characters
636     errnick = target();
637   } else {
638     errnick = params[0];
639   }
640   emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Nick %1 contains illegal characters").arg(errnick));
641   tryNextNick(errnick, true /* erroneus */);
642 }
643
644 /* ERR_NICKNAMEINUSE */
645 void IrcServerHandler::handle433(const QString &prefix, const QList<QByteArray> &params) {
646   Q_UNUSED(prefix);
647   if(!checkParamCount("IrcServerHandler::handle433()", params, 1))
648     return;
649
650   QString errnick = serverDecode(params[0]);
651   emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Nick already in use: %1").arg(errnick));
652
653   // if there is a problem while connecting to the server -> we handle it
654   // but only if our connection has not been finished yet...
655   if(!network()->currentServer().isEmpty())
656     return;
657
658   tryNextNick(errnick);
659 }
660
661 /* ERR_UNAVAILRESOURCE */
662 void IrcServerHandler::handle437(const QString &prefix, const QList<QByteArray> &params) {
663   Q_UNUSED(prefix);
664   if(!checkParamCount("IrcServerHandler::handle437()", params, 1))
665     return;
666
667   QString errnick = serverDecode(params[0]);
668   emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Nick/channel is temporarily unavailable: %1").arg(errnick));
669
670   // if there is a problem while connecting to the server -> we handle it
671   // but only if our connection has not been finished yet...
672   if(!network()->currentServer().isEmpty())
673     return;
674
675   if(!network()->isChannelName(errnick))
676     tryNextNick(errnick);
677 }
678
679 /* Handle signals from Netsplit objects  */
680
681 void IrcServerHandler::handleNetsplitJoin(const QString &channel, const QStringList &users, const QStringList &modes, const QString& quitMessage)
682 {
683   IrcChannel *ircChannel = network()->ircChannel(channel);
684   if(!ircChannel) {
685     return;
686   }
687   QList<IrcUser *> ircUsers;
688   QStringList newModes = modes;
689   QStringList newUsers = users;
690
691   foreach(QString user, users) {
692     IrcUser *iu = network()->ircUser(nickFromMask(user));
693     if(iu)
694       ircUsers.append(iu);
695     else { // the user already quit
696       int idx = users.indexOf(user);
697       newUsers.removeAt(idx);
698       newModes.removeAt(idx);
699     }
700   }
701
702   QString msg = newUsers.join("#:#").append("#:#").append(quitMessage);
703   emit displayMsg(Message::NetsplitJoin, BufferInfo::ChannelBuffer, channel, msg);
704   ircChannel->joinIrcUsers(ircUsers, newModes);
705 }
706
707 void IrcServerHandler::handleNetsplitQuit(const QString &channel, const QStringList &users, const QString& quitMessage)
708 {
709   QString msg = users.join("#:#").append("#:#").append(quitMessage);
710   emit displayMsg(Message::NetsplitQuit, BufferInfo::ChannelBuffer, channel, msg);
711   foreach(QString user, users) {
712     IrcUser *iu = network()->ircUser(nickFromMask(user));
713     if(iu)
714       iu->quit();
715   }
716 }
717
718 void IrcServerHandler::handleEarlyNetsplitJoin(const QString &channel, const QStringList &users, const QStringList &modes) {
719   IrcChannel *ircChannel = network()->ircChannel(channel);
720   if(!ircChannel) {
721     qDebug() << "handleEarlyNetsplitJoin(): channel " << channel << " invalid";
722     return;
723   }
724   QList<IrcUser *> ircUsers;
725   QStringList newModes = modes;
726
727   foreach(QString user, users) {
728     IrcUser *iu = network()->updateNickFromMask(user);
729     if(iu) {
730       ircUsers.append(iu);
731       emit displayMsg(Message::Join, BufferInfo::ChannelBuffer, channel, channel, user);
732     }
733     else {
734       newModes.removeAt(users.indexOf(user));
735     }
736   }
737   ircChannel->joinIrcUsers(ircUsers, newModes);
738 }
739 void IrcServerHandler::handleNetsplitFinished()
740 {
741   Netsplit* n = qobject_cast<Netsplit*>(sender());
742   _netsplits.remove(_netsplits.key(n));
743   n->deleteLater();
744 }
745
746 /* */
747
748 // FIXME networkConnection()->setChannelKey("") for all ERR replies indicating that a JOIN went wrong
749 //       mostly, these are codes in the 47x range
750
751 /* */
752
753 void IrcServerHandler::tryNextNick(const QString &errnick, bool erroneus) {
754   QStringList desiredNicks = coreSession()->identity(network()->identity())->nicks();
755   int nextNickIdx = desiredNicks.indexOf(errnick) + 1;
756   QString nextNick;
757   if(nextNickIdx > 0 && desiredNicks.size() > nextNickIdx) {
758     nextNick = desiredNicks[nextNickIdx];
759   } else {
760     if(erroneus) {
761       emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("No free and valid nicks in nicklist found. use: /nick <othernick> to continue"));
762       return;
763     } else {
764       nextNick = errnick + "_";
765     }
766   }
767   putCmd("NICK", serverEncode(nextNick));
768 }
769
770 bool IrcServerHandler::checkParamCount(const QString &methodName, const QList<QByteArray> &params, int minParams) {
771   if(params.count() < minParams) {
772     qWarning() << qPrintable(methodName) << "requires" << minParams << "parameters but received only" << params.count() << serverDecode(params);
773     return false;
774   } else {
775     return true;
776   }
777 }
778
779 void IrcServerHandler::destroyNetsplits() {
780   qDeleteAll(_netsplits);
781   _netsplits.clear();
782 }
783
784 #ifdef HAVE_QCA2
785 QByteArray IrcServerHandler::decrypt(const QString &bufferName, const QByteArray &message_, bool isTopic) {
786   if(message_.isEmpty())
787     return message_;
788
789   Cipher *cipher = network()->cipher(bufferName);
790   if(!cipher)
791     return message_;
792
793   QByteArray message = message_;
794   message = isTopic? cipher->decryptTopic(message) : cipher->decrypt(message);
795   return message;
796 }
797 #endif