debe2efb355f21b9ea2cd4f8f8cafdec35900af3
[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 /*
433 WHOIS-Message:
434    Replies 311 - 313, 317 - 319 are all replies generated in response to a WHOIS message.
435   and 301 (RPL_AWAY)
436               "<nick> :<away message>"
437 WHO-Message:
438    Replies 352 and 315 paired are used to answer a WHO message.
439
440 WHOWAS-Message:
441    Replies 314 and 369 are responses to a WHOWAS message.
442
443 */
444
445 /* RPL_WHOISSERVICE - "<user> is registered nick" */
446 void IrcServerHandler::handle307(const QString &prefix, const QList<QByteArray> &params) {
447   Q_UNUSED(prefix)
448   if(!checkParamCount("IrcServerHandler::handle307()", params, 1))
449     return;
450
451   QString whoisServiceReply = serverDecode(params).join(" ");
452   IrcUser *ircuser = network()->ircUser(serverDecode(params[0]));
453   if(ircuser) {
454     ircuser->setWhoisServiceReply(whoisServiceReply);
455   }
456   emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1").arg(whoisServiceReply));
457 }
458
459 /* RPL_SUSERHOST - "<user> is available for help." */
460 void IrcServerHandler::handle310(const QString &prefix, const QList<QByteArray> &params) {
461   Q_UNUSED(prefix)
462   if(!checkParamCount("IrcServerHandler::handle310()", params, 1))
463     return;
464
465   QString suserHost = serverDecode(params).join(" ");
466   IrcUser *ircuser = network()->ircUser(serverDecode(params[0]));
467   if(ircuser) {
468     ircuser->setSuserHost(suserHost);
469   }
470   emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1").arg(suserHost));
471 }
472
473 /*  RPL_WHOISUSER - "<nick> <user> <host> * :<real name>" */
474 void IrcServerHandler::handle311(const QString &prefix, const QList<QByteArray> &params) {
475   Q_UNUSED(prefix)
476   if(!checkParamCount("IrcServerHandler::handle311()", params, 3))
477     return;
478
479   _whois = true;
480   IrcUser *ircuser = network()->ircUser(serverDecode(params[0]));
481   if(ircuser) {
482     ircuser->setUser(serverDecode(params[1]));
483     ircuser->setHost(serverDecode(params[2]));
484     ircuser->setRealName(serverDecode(params.last()));
485     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1 is %2 (%3)") .arg(ircuser->nick()).arg(ircuser->hostmask()).arg(ircuser->realName()));
486   } else {
487     QString host = QString("%1!%2@%3").arg(serverDecode(params[0])).arg(serverDecode(params[1])).arg(serverDecode(params[2]));
488     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1 is %2 (%3)") .arg(serverDecode(params[0])).arg(host).arg(serverDecode(params.last())));
489   }
490 }
491
492 /*  RPL_WHOISSERVER -  "<nick> <server> :<server info>" */
493 void IrcServerHandler::handle312(const QString &prefix, const QList<QByteArray> &params) {
494   Q_UNUSED(prefix)
495   if(!checkParamCount("IrcServerHandler::handle312()", params, 2))
496     return;
497
498   IrcUser *ircuser = network()->ircUser(serverDecode(params[0]));
499   if(ircuser) {
500     ircuser->setServer(serverDecode(params[1]));
501   }
502
503   QString returnString = tr("%1 is online via %2 (%3)").arg(serverDecode(params[0])).arg(serverDecode(params[1])).arg(serverDecode(params.last()));
504   if(_whois) {
505     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1").arg(returnString));
506   } else {
507     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whowas] %1").arg(returnString));
508   }
509 }
510
511 /*  RPL_WHOISOPERATOR - "<nick> :is an IRC operator" */
512 void IrcServerHandler::handle313(const QString &prefix, const QList<QByteArray> &params) {
513   Q_UNUSED(prefix)
514   if(!checkParamCount("IrcServerHandler::handle313()", params, 1))
515     return;
516
517   IrcUser *ircuser = network()->ircUser(serverDecode(params[0]));
518   if(ircuser) {
519     ircuser->setIrcOperator(params.last());
520   }
521   emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1").arg(serverDecode(params).join(" ")));
522 }
523
524 /*  RPL_WHOWASUSER - "<nick> <user> <host> * :<real name>" */
525 void IrcServerHandler::handle314(const QString &prefix, const QList<QByteArray> &params) {
526   Q_UNUSED(prefix)
527   if(!checkParamCount("IrcServerHandler::handle314()", params, 3))
528     return;
529
530   QString nick = serverDecode(params[0]);
531   QString hostmask = QString("%1@%2").arg(serverDecode(params[1])).arg(serverDecode(params[2]));
532   QString realName = serverDecode(params.last());
533   emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whowas] %1 was %2 (%3)").arg(nick).arg(hostmask).arg(realName));
534 }
535
536 /*  RPL_ENDOFWHO: "<name> :End of WHO list" */
537 void IrcServerHandler::handle315(const QString &prefix, const QList<QByteArray> &params) {
538   Q_UNUSED(prefix);
539   if(!checkParamCount("IrcServerHandler::handle315()", params, 1))
540     return;
541
542   QStringList p = serverDecode(params);
543   if(network()->setAutoWhoDone(p[0])) {
544     return; // stay silent
545   }
546   p.takeLast(); // should be "End of WHO list"
547   emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Who] End of /WHO list for %1").arg(p.join(" ")));
548 }
549
550 /*  RPL_WHOISIDLE - "<nick> <integer> :seconds idle"
551    (real life: "<nick> <integer> <integer> :seconds idle, signon time) */
552 void IrcServerHandler::handle317(const QString &prefix, const QList<QByteArray> &params) {
553   Q_UNUSED(prefix);
554   if(!checkParamCount("IrcServerHandler::handle317()", params, 2))
555     return;
556
557   QString nick = serverDecode(params[0]);
558   IrcUser *ircuser = network()->ircUser(nick);
559
560   QDateTime now = QDateTime::currentDateTime();
561   int idleSecs = serverDecode(params[1]).toInt();
562   idleSecs *= -1;
563
564   if(ircuser) {
565     ircuser->setIdleTime(now.addSecs(idleSecs));
566     if(params.size() > 3) { // if we have more then 3 params we have the above mentioned "real life" situation
567       int loginTime = serverDecode(params[2]).toInt();
568       ircuser->setLoginTime(QDateTime::fromTime_t(loginTime));
569       emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1 is logged in since %2").arg(ircuser->nick()).arg(ircuser->loginTime().toString()));
570     }
571     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1 is idling for %2 (%3)").arg(ircuser->nick()).arg(secondsToString(ircuser->idleTime().secsTo(now))).arg(ircuser->idleTime().toString()));
572   } else {
573     QDateTime idleSince = now.addSecs(idleSecs);
574     if (params.size() > 3) { // we have a signon time
575       int loginTime = serverDecode(params[2]).toInt();
576       QDateTime datetime = QDateTime::fromTime_t(loginTime);
577       emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1 is logged in since %2").arg(nick).arg(datetime.toString()));
578     }
579     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1 is idling for %2 (%3)").arg(nick).arg(secondsToString(idleSince.secsTo(now))).arg(idleSince.toString()));
580   }
581 }
582
583 /*  RPL_ENDOFWHOIS - "<nick> :End of WHOIS list" */
584 void IrcServerHandler::handle318(const QString &prefix, const QList<QByteArray> &params) {
585   Q_UNUSED(prefix)
586   _whois = false;
587   QStringList parameter = serverDecode(params);
588   parameter.removeFirst();
589   emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1").arg(parameter.join(" ")));
590 }
591
592 /*  RPL_WHOISCHANNELS - "<nick> :*( ( "@" / "+" ) <channel> " " )" */
593 void IrcServerHandler::handle319(const QString &prefix, const QList<QByteArray> &params) {
594   Q_UNUSED(prefix)
595   if(!checkParamCount("IrcServerHandler::handle319()", params, 2))
596     return;
597
598   QString nick = serverDecode(params.first());
599   QStringList op;
600   QStringList voice;
601   QStringList user;
602   foreach (QString channel, serverDecode(params.last()).split(" ")) {
603     if(channel.startsWith("@"))
604        op.append(channel.remove(0,1));
605     else if(channel.startsWith("+"))
606       voice.append(channel.remove(0,1));
607     else
608       user.append(channel);
609   }
610   if(!user.isEmpty())
611     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1 is a user on channels: %2").arg(nick).arg(user.join(" ")));
612   if(!voice.isEmpty())
613     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1 has voice on channels: %2").arg(nick).arg(voice.join(" ")));
614   if(!op.isEmpty())
615     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1 is an operator on channels: %2").arg(nick).arg(op.join(" ")));
616 }
617
618 /*  RPL_WHOISVIRT - "<nick> is identified to services" */
619 void IrcServerHandler::handle320(const QString &prefix, const QList<QByteArray> &params) {
620   Q_UNUSED(prefix);
621   emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whois] %1").arg(serverDecode(params).join(" ")));
622 }
623
624 /* RPL_LIST -  "<channel> <# visible> :<topic>" */
625 void IrcServerHandler::handle322(const QString &prefix, const QList<QByteArray> &params) {
626   Q_UNUSED(prefix)
627   QString channelName;
628   quint32 userCount = 0;
629   QString topic;
630
631   int paramCount = params.count();
632   switch(paramCount) {
633   case 3:
634     topic = serverDecode(params[2]);
635   case 2:
636     userCount = serverDecode(params[1]).toUInt();
637   case 1:
638     channelName = serverDecode(params[0]);
639   default:
640     break;
641   }
642   if(!coreSession()->ircListHelper()->addChannel(network()->networkId(), channelName, userCount, topic))
643     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Channel %1 has %2 users. Topic is: %3").arg(channelName).arg(userCount).arg(topic));
644 }
645
646 /* RPL_LISTEND ":End of LIST" */
647 void IrcServerHandler::handle323(const QString &prefix, const QList<QByteArray> &params) {
648   Q_UNUSED(prefix)
649   Q_UNUSED(params)
650
651   if(!coreSession()->ircListHelper()->endOfChannelList(network()->networkId()))
652     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("End of channel list"));
653 }
654
655 /* RPL_CHANNELMODEIS - "<channel> <mode> <mode params>" */
656 void IrcServerHandler::handle324(const QString &prefix, const QList<QByteArray> &params) {
657   Q_UNUSED(prefix);
658   handleMode(prefix, params);
659 }
660
661 /* RPL_??? - "<channel> <homepage> */
662 void IrcServerHandler::handle328(const QString &prefix, const QList<QByteArray> &params) {
663   Q_UNUSED(prefix);
664   if(!checkParamCount("IrcServerHandler::handle328()", params, 2))
665     return;
666
667   QString channel = serverDecode(params[0]);
668   QString homepage = serverDecode(params[1]);
669
670   emit displayMsg(Message::Server, BufferInfo::ChannelBuffer, channel, tr("Homepage for %1 is %2").arg(channel, homepage));
671 }
672
673
674 /* RPL_??? - "<channel> <creation time (unix)>" */
675 void IrcServerHandler::handle329(const QString &prefix, const QList<QByteArray> &params) {
676   Q_UNUSED(prefix);
677   if(!checkParamCount("IrcServerHandler::handle329()", params, 2))
678     return;
679
680   QString channel = serverDecode(params[0]);
681   uint unixtime = params[1].toUInt();
682   if(!unixtime) {
683     qWarning() << Q_FUNC_INFO << "received invalid timestamp:" << params[1];
684     return;
685   }
686   QDateTime time = QDateTime::fromTime_t(unixtime);
687
688   emit displayMsg(Message::Server, BufferInfo::ChannelBuffer, channel, tr("Channel %1 created on %2").arg(channel, time.toString()));
689 }
690
691 /*  RPL_WHOISACCOUNT: "<nick> <account> :is authed as */
692 void IrcServerHandler::handle330(const QString &prefix, const QList<QByteArray> &params) {
693   Q_UNUSED(prefix);
694   if(!checkParamCount("IrcServerHandler::handle330()", params, 3))
695     return;
696
697   QString nick = serverDecode(params[0]);
698   QString account = serverDecode(params[1]);
699
700   emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "",  tr("[Whois] %1 is authed as %2").arg(nick).arg(account));
701 }
702
703 /* RPL_NOTOPIC */
704 void IrcServerHandler::handle331(const QString &prefix, const QList<QByteArray> &params) {
705   Q_UNUSED(prefix);
706   if(!checkParamCount("IrcServerHandler::handle331()", params, 1))
707     return;
708
709   QString channel = serverDecode(params[0]);
710   IrcChannel *chan = network()->ircChannel(channel);
711   if(chan)
712     chan->setTopic(QString());
713
714   emit displayMsg(Message::Topic, BufferInfo::ChannelBuffer, channel, tr("No topic is set for %1.").arg(channel));
715 }
716
717 /* RPL_TOPIC */
718 void IrcServerHandler::handle332(const QString &prefix, const QList<QByteArray> &params) {
719   Q_UNUSED(prefix);
720   if(!checkParamCount("IrcServerHandler::handle332()", params, 2))
721     return;
722
723   QString channel = serverDecode(params[0]);
724   QByteArray rawTopic = params[1];
725 #ifdef HAVE_QCA2
726   rawTopic = decrypt(channel, rawTopic, true);
727 #endif
728   QString topic = channelDecode(channel, rawTopic);
729
730   IrcChannel *chan = network()->ircChannel(channel);
731   if(chan)
732     chan->setTopic(topic);
733
734   emit displayMsg(Message::Topic, BufferInfo::ChannelBuffer, channel, tr("Topic for %1 is \"%2\"").arg(channel, topic));
735 }
736
737 /* Topic set by... */
738 void IrcServerHandler::handle333(const QString &prefix, const QList<QByteArray> &params) {
739   Q_UNUSED(prefix);
740   if(!checkParamCount("IrcServerHandler::handle333()", params, 3))
741     return;
742
743   QString channel = serverDecode(params[0]);
744   emit displayMsg(Message::Topic, BufferInfo::ChannelBuffer, channel,
745                   tr("Topic set by %1 on %2") .arg(serverDecode(params[1]), QDateTime::fromTime_t(channelDecode(channel, params[2]).toUInt()).toString()));
746 }
747
748 /* RPL_INVITING - "<nick> <channel>*/
749 void IrcServerHandler::handle341(const QString &prefix, const QList<QByteArray> &params) {
750   Q_UNUSED(prefix);
751   if(!checkParamCount("IrcServerHandler::handle341()", params, 2))
752     return;
753
754   QString nick = serverDecode(params[0]);
755
756   IrcChannel *channel = network()->ircChannel(serverDecode(params[1]));
757   if(!channel) {
758     qWarning() << "IrcServerHandler::handle341(): unknown channel:" << params[1];
759     return;
760   }
761
762   emit displayMsg(Message::Server, BufferInfo::ChannelBuffer, channel->name(), tr("%1 has been invited to %2").arg(nick).arg(channel->name()));
763 }
764
765 /*  RPL_WHOREPLY: "<channel> <user> <host> <server> <nick>
766               ( "H" / "G" > ["*"] [ ( "@" / "+" ) ] :<hopcount> <real name>" */
767 void IrcServerHandler::handle352(const QString &prefix, const QList<QByteArray> &params) {
768   Q_UNUSED(prefix)
769   if(!checkParamCount("IrcServerHandler::handle352()", params, 6))
770     return;
771
772   QString channel = serverDecode(params[0]);
773   IrcUser *ircuser = network()->ircUser(serverDecode(params[4]));
774   if(ircuser) {
775     ircuser->setUser(serverDecode(params[1]));
776     ircuser->setHost(serverDecode(params[2]));
777
778     bool away = serverDecode(params[5]).startsWith("G") ? true : false;
779     ircuser->setAway(away);
780     ircuser->setServer(serverDecode(params[3]));
781     ircuser->setRealName(serverDecode(params.last()).section(" ", 1));
782   }
783
784   if(!network()->isAutoWhoInProgress(channel)) {
785     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Who] %1").arg(serverDecode(params).join(" ")));
786   }
787 }
788
789 /* RPL_NAMREPLY */
790 void IrcServerHandler::handle353(const QString &prefix, const QList<QByteArray> &params) {
791   Q_UNUSED(prefix);
792   if(!checkParamCount("IrcServerHandler::handle353()", params, 3))
793     return;
794
795   // param[0] is either "=", "*" or "@" indicating a public, private or secret channel
796   // we don't use this information at the time beeing
797   QString channelname = serverDecode(params[1]);
798
799   IrcChannel *channel = network()->ircChannel(channelname);
800   if(!channel) {
801     qWarning() << "IrcServerHandler::handle353(): received unknown target channel:" << channelname;
802     return;
803   }
804
805   QStringList nicks;
806   QStringList modes;
807
808   foreach(QString nick, serverDecode(params[2]).split(' ')) {
809     QString mode = QString();
810
811     if(network()->prefixes().contains(nick[0])) {
812       mode = network()->prefixToMode(nick[0]);
813       nick = nick.mid(1);
814     }
815
816     nicks << nick;
817     modes << mode;
818   }
819
820   channel->joinIrcUsers(nicks, modes);
821 }
822
823 /*  RPL_ENDOFWHOWAS - "<nick> :End of WHOWAS" */
824 void IrcServerHandler::handle369(const QString &prefix, const QList<QByteArray> &params) {
825   Q_UNUSED(prefix)
826   emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("[Whowas] %1").arg(serverDecode(params).join(" ")));
827 }
828
829 /* ERR_ERRONEUSNICKNAME */
830 void IrcServerHandler::handle432(const QString &prefix, const QList<QByteArray> &params) {
831   Q_UNUSED(prefix);
832
833   QString errnick;
834   if(params.size() < 2) {
835     // handle unreal-ircd bug, where unreal ircd doesnt supply a TARGET in ERR_ERRONEUSNICKNAME during registration phase:
836     // nick @@@
837     // :irc.scortum.moep.net 432  @@@ :Erroneous Nickname: Illegal characters
838     // correct server reply:
839     // :irc.scortum.moep.net 432 * @@@ :Erroneous Nickname: Illegal characters
840     errnick = target();
841   } else {
842     errnick = params[0];
843   }
844   emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Nick %1 contains illegal characters").arg(errnick));
845   tryNextNick(errnick, true /* erroneus */);
846 }
847
848 /* ERR_NICKNAMEINUSE */
849 void IrcServerHandler::handle433(const QString &prefix, const QList<QByteArray> &params) {
850   Q_UNUSED(prefix);
851   if(!checkParamCount("IrcServerHandler::handle433()", params, 1))
852     return;
853
854   QString errnick = serverDecode(params[0]);
855   emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Nick already in use: %1").arg(errnick));
856
857   // if there is a problem while connecting to the server -> we handle it
858   // but only if our connection has not been finished yet...
859   if(!network()->currentServer().isEmpty())
860     return;
861
862   tryNextNick(errnick);
863 }
864
865 /* ERR_UNAVAILRESOURCE */
866 void IrcServerHandler::handle437(const QString &prefix, const QList<QByteArray> &params) {
867   Q_UNUSED(prefix);
868   if(!checkParamCount("IrcServerHandler::handle437()", params, 1))
869     return;
870
871   QString errnick = serverDecode(params[0]);
872   emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Nick/channel is temporarily unavailable: %1").arg(errnick));
873
874   // if there is a problem while connecting to the server -> we handle it
875   // but only if our connection has not been finished yet...
876   if(!network()->currentServer().isEmpty())
877     return;
878
879   if(!network()->isChannelName(errnick))
880     tryNextNick(errnick);
881 }
882
883 /* Handle signals from Netsplit objects  */
884
885 void IrcServerHandler::handleNetsplitJoin(const QString &channel, const QStringList &users, const QStringList &modes, const QString& quitMessage)
886 {
887   IrcChannel *ircChannel = network()->ircChannel(channel);
888   if(!ircChannel) {
889     return;
890   }
891   QList<IrcUser *> ircUsers;
892   QStringList newModes = modes;
893   QStringList newUsers = users;
894
895   foreach(QString user, users) {
896     IrcUser *iu = network()->ircUser(nickFromMask(user));
897     if(iu)
898       ircUsers.append(iu);
899     else { // the user already quit
900       int idx = users.indexOf(user);
901       newUsers.removeAt(idx);
902       newModes.removeAt(idx);
903     }
904   }
905
906   QString msg = newUsers.join("#:#").append("#:#").append(quitMessage);
907   emit displayMsg(Message::NetsplitJoin, BufferInfo::ChannelBuffer, channel, msg);
908   ircChannel->joinIrcUsers(ircUsers, newModes);
909 }
910
911 void IrcServerHandler::handleNetsplitQuit(const QString &channel, const QStringList &users, const QString& quitMessage)
912 {
913   QString msg = users.join("#:#").append("#:#").append(quitMessage);
914   emit displayMsg(Message::NetsplitQuit, BufferInfo::ChannelBuffer, channel, msg);
915   foreach(QString user, users) {
916     IrcUser *iu = network()->ircUser(nickFromMask(user));
917     if(iu)
918       iu->quit();
919   }
920 }
921
922 void IrcServerHandler::handleEarlyNetsplitJoin(const QString &channel, const QStringList &users, const QStringList &modes) {
923   IrcChannel *ircChannel = network()->ircChannel(channel);
924   if(!ircChannel) {
925     qDebug() << "handleEarlyNetsplitJoin(): channel " << channel << " invalid";
926     return;
927   }
928   QList<IrcUser *> ircUsers;
929   QStringList newModes = modes;
930
931   foreach(QString user, users) {
932     IrcUser *iu = network()->updateNickFromMask(user);
933     if(iu) {
934       ircUsers.append(iu);
935       emit displayMsg(Message::Join, BufferInfo::ChannelBuffer, channel, channel, user);
936     }
937     else {
938       newModes.removeAt(users.indexOf(user));
939     }
940   }
941   ircChannel->joinIrcUsers(ircUsers, newModes);
942 }
943 void IrcServerHandler::handleNetsplitFinished()
944 {
945   Netsplit* n = qobject_cast<Netsplit*>(sender());
946   _netsplits.remove(_netsplits.key(n));
947   n->deleteLater();
948 }
949
950 /* */
951
952 // FIXME networkConnection()->setChannelKey("") for all ERR replies indicating that a JOIN went wrong
953 //       mostly, these are codes in the 47x range
954
955 /* */
956
957 void IrcServerHandler::tryNextNick(const QString &errnick, bool erroneus) {
958   QStringList desiredNicks = coreSession()->identity(network()->identity())->nicks();
959   int nextNickIdx = desiredNicks.indexOf(errnick) + 1;
960   QString nextNick;
961   if(nextNickIdx > 0 && desiredNicks.size() > nextNickIdx) {
962     nextNick = desiredNicks[nextNickIdx];
963   } else {
964     if(erroneus) {
965       emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("No free and valid nicks in nicklist found. use: /nick <othernick> to continue"));
966       return;
967     } else {
968       nextNick = errnick + "_";
969     }
970   }
971   putCmd("NICK", serverEncode(nextNick));
972 }
973
974 bool IrcServerHandler::checkParamCount(const QString &methodName, const QList<QByteArray> &params, int minParams) {
975   if(params.count() < minParams) {
976     qWarning() << qPrintable(methodName) << "requires" << minParams << "parameters but received only" << params.count() << serverDecode(params);
977     return false;
978   } else {
979     return true;
980   }
981 }
982
983 void IrcServerHandler::destroyNetsplits() {
984   qDeleteAll(_netsplits);
985   _netsplits.clear();
986 }
987
988 #ifdef HAVE_QCA2
989 QByteArray IrcServerHandler::decrypt(const QString &bufferName, const QByteArray &message_, bool isTopic) {
990   if(message_.isEmpty())
991     return message_;
992
993   Cipher *cipher = network()->cipher(bufferName);
994   if(!cipher)
995     return message_;
996
997   QByteArray message = message_;
998   message = isTopic? cipher->decryptTopic(message) : cipher->decrypt(message);
999   return message;
1000 }
1001 #endif