ae67021963292198b7bb0a98b11830c9ec330062
[quassel.git] / src / core / coresessioneventprocessor.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "coresessioneventprocessor.h"
22
23 #include "coreirclisthelper.h"
24 #include "corenetwork.h"
25 #include "coresession.h"
26 #include "coretransfer.h"
27 #include "coretransfermanager.h"
28 #include "ctcpevent.h"
29 #include "ircevent.h"
30 #include "ircuser.h"
31 #include "logger.h"
32 #include "messageevent.h"
33 #include "netsplit.h"
34 #include "quassel.h"
35
36 #ifdef HAVE_QCA2
37 #  include "keyevent.h"
38 #endif
39
40 // IRCv3 capabilities
41 #include "irccap.h"
42
43 CoreSessionEventProcessor::CoreSessionEventProcessor(CoreSession *session)
44     : BasicHandler("handleCtcp", session),
45     _coreSession(session)
46 {
47     connect(coreSession(), SIGNAL(networkDisconnected(NetworkId)), this, SLOT(destroyNetsplits(NetworkId)));
48     connect(this, SIGNAL(newEvent(Event *)), coreSession()->eventManager(), SLOT(postEvent(Event *)));
49 }
50
51
52 bool CoreSessionEventProcessor::checkParamCount(IrcEvent *e, int minParams)
53 {
54     if (e->params().count() < minParams) {
55         if (e->type() == EventManager::IrcEventNumeric) {
56             qWarning() << "Command " << static_cast<IrcEventNumeric *>(e)->number() << " requires " << minParams << "params, got: " << e->params();
57         }
58         else {
59             QString name = coreSession()->eventManager()->enumName(e->type());
60             qWarning() << qPrintable(name) << "requires" << minParams << "params, got:" << e->params();
61         }
62         e->stop();
63         return false;
64     }
65     return true;
66 }
67
68
69 void CoreSessionEventProcessor::tryNextNick(NetworkEvent *e, const QString &errnick, bool erroneus)
70 {
71     QStringList desiredNicks = coreSession()->identity(e->network()->identity())->nicks();
72     int nextNickIdx = desiredNicks.indexOf(errnick) + 1;
73     QString nextNick;
74     if (nextNickIdx > 0 && desiredNicks.size() > nextNickIdx) {
75         nextNick = desiredNicks[nextNickIdx];
76     }
77     else {
78         if (erroneus) {
79             // FIXME Make this an ErrorEvent or something like that, so it's translated in the client
80             MessageEvent *msgEvent = new MessageEvent(Message::Error, e->network(),
81                 tr("No free and valid nicks in nicklist found. use: /nick <othernick> to continue"),
82                 QString(), QString(), Message::None, e->timestamp());
83             emit newEvent(msgEvent);
84             return;
85         }
86         else {
87             nextNick = errnick + "_";
88         }
89     }
90     // FIXME Use a proper output event for this
91     coreNetwork(e)->putRawLine("NICK " + coreNetwork(e)->encodeServerString(nextNick));
92 }
93
94
95 void CoreSessionEventProcessor::processIrcEventNumeric(IrcEventNumeric *e)
96 {
97     switch (e->number()) {
98     // SASL authentication replies
99     // See: http://ircv3.net/specs/extensions/sasl-3.1.html
100
101     //case 900:  // RPL_LOGGEDIN
102     //case 901:  // RPL_LOGGEDOUT
103     // Don't use 900 or 901 for updating the local hostmask.  Unreal 3.2 gives it as the IP address
104     // even when cloaked.
105     // Every other reply should result in moving on
106     // TODO Handle errors to stop connection if appropriate
107     case 902:  // ERR_NICKLOCKED
108     case 903:  // RPL_SASLSUCCESS
109     case 904:  // ERR_SASLFAIL
110     case 905:  // ERR_SASLTOOLONG
111     case 906:  // ERR_SASLABORTED
112     case 907:  // ERR_SASLALREADY
113         // Move on to the next capability
114         coreNetwork(e)->sendNextCap();
115         break;
116
117     default:
118         break;
119     }
120 }
121
122
123 void CoreSessionEventProcessor::processIrcEventAuthenticate(IrcEvent *e)
124 {
125     if (!checkParamCount(e, 1))
126         return;
127
128     if (e->params().at(0) != "+") {
129         qWarning() << "Invalid AUTHENTICATE" << e;
130         return;
131     }
132
133     CoreNetwork *net = coreNetwork(e);
134
135 #ifdef HAVE_SSL
136     if (net->identityPtr()->sslCert().isNull()) {
137 #endif
138         QString construct = net->saslAccount();
139         construct.append(QChar(QChar::Null));
140         construct.append(net->saslAccount());
141         construct.append(QChar(QChar::Null));
142         construct.append(net->saslPassword());
143         QByteArray saslData = QByteArray(construct.toLatin1().toBase64());
144         saslData.prepend("AUTHENTICATE ");
145         net->putRawLine(saslData);
146 #ifdef HAVE_SSL
147     } else {
148         net->putRawLine("AUTHENTICATE +");
149     }
150 #endif
151 }
152
153 void CoreSessionEventProcessor::processIrcEventCap(IrcEvent *e)
154 {
155     // Handle capability negotiation
156     // See: http://ircv3.net/specs/core/capability-negotiation-3.2.html
157     // And: http://ircv3.net/specs/core/capability-negotiation-3.1.html
158     if (e->params().count() >= 3) {
159         CoreNetwork *coreNet = coreNetwork(e);
160         QString capCommand = e->params().at(1).trimmed().toUpper();
161         if (capCommand == "LS" || capCommand == "NEW") {
162             // Either we've gotten a list of capabilities, or new capabilities we may want
163             // Server: CAP * LS * :multi-prefix extended-join account-notify batch invite-notify tls
164             // Server: CAP * LS * :cap-notify server-time example.org/dummy-cap=dummyvalue example.org/second-dummy-cap
165             // Server: CAP * LS :userhost-in-names sasl=EXTERNAL,DH-AES,DH-BLOWFISH,ECDSA-NIST256P-CHALLENGE,PLAIN
166             bool capListFinished;
167             QStringList availableCaps;
168             if (e->params().count() == 4) {
169                 // Middle of multi-line reply, ignore the asterisk
170                 capListFinished = false;
171                 availableCaps = e->params().at(3).split(' ');
172             } else {
173                 // Single line reply
174                 capListFinished = true;
175                 availableCaps = e->params().at(2).split(' ');
176             }
177             // Store what capabilities are available
178             QStringList availableCapPair;
179             for (int i = 0; i < availableCaps.count(); ++i) {
180                 // Capability may include values, e.g. CAP * LS :multi-prefix sasl=EXTERNAL
181                 availableCapPair = availableCaps[i].trimmed().split('=');
182                 if(availableCapPair.count() >= 2) {
183                     coreNet->addCap(availableCapPair.at(0).trimmed().toLower(), availableCapPair.at(1).trimmed());
184                 } else {
185                     coreNet->addCap(availableCapPair.at(0).trimmed().toLower());
186                 }
187             }
188
189             // Begin capability requests when capability listing complete
190             if (capListFinished)
191                 coreNet->beginCapNegotiation();
192         } else if (capCommand == "ACK") {
193             // Server: CAP * ACK :multi-prefix sasl
194             // Got the capability we want, handle as needed.
195             // As only one capability is requested at a time, no need to split
196             QString acceptedCap = e->params().at(2).trimmed().toLower();
197
198             // Mark this cap as accepted
199             coreNet->acknowledgeCap(acceptedCap);
200
201             if (!coreNet->capsRequiringConfiguration.contains(acceptedCap)) {
202                 // Some capabilities (e.g. SASL) require further messages to finish.  If so, do NOT
203                 // send the next capability; it will be handled elsewhere in CoreNetwork.
204                 // Otherwise, move on to the next capability
205                 coreNet->sendNextCap();
206             }
207         } else if (capCommand == "NAK" || capCommand == "DEL") {
208             // Either something went wrong with this capability, or it is no longer supported
209             // > For CAP NAK
210             // Server: CAP * NAK :multi-prefix sasl
211             // > For CAP DEL
212             // Server: :irc.example.com CAP modernclient DEL :multi-prefix sasl
213             // CAP NAK and CAP DEL replies are always single-line
214
215             QStringList removedCaps;
216             removedCaps = e->params().at(2).split(' ');
217
218             // Store what capability was denied or removed
219             QString removedCap;
220             for (int i = 0; i < removedCaps.count(); ++i) {
221                 removedCap = removedCaps[i].trimmed().toLower();
222                 // Mark this cap as removed
223                 coreNet->removeCap(removedCap);
224             }
225
226             if (capCommand == "NAK") {
227                 // Continue negotiation when capability listing complete only if this is the result
228                 // of a denied cap, not a removed cap
229                 coreNet->sendNextCap();
230             }
231         }
232     }
233 }
234
235 /* IRCv3 account-notify
236  * Log in:  ":nick!user@host ACCOUNT accountname"
237  * Log out: ":nick!user@host ACCOUNT *" */
238 void CoreSessionEventProcessor::processIrcEventAccount(IrcEvent *e)
239 {
240     if (!checkParamCount(e, 1))
241         return;
242
243     IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
244     if (ircuser) {
245         QString newAccount = e->params().at(0);
246         // WHOX uses '0' to indicate logged-out, account-notify uses '*'
247         if (newAccount != "*") {
248             // Account logged in, set account name
249             ircuser->setAccount(newAccount);
250         } else {
251             // Account logged out, set account name to logged-out
252             ircuser->setAccount("*");
253         }
254     } else {
255         qDebug() << "Received account-notify data for unknown user" << e->prefix();
256     }
257 }
258
259 /* IRCv3 away-notify - ":nick!user@host AWAY [:message]" */
260 void CoreSessionEventProcessor::processIrcEventAway(IrcEvent *e)
261 {
262     if (!checkParamCount(e, 2))
263         return;
264
265     // Nick is sent as part of parameters in order to split user/server decoding
266     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
267     if (ircuser) {
268         if (!e->params().at(1).isEmpty()) {
269             ircuser->setAway(true);
270             ircuser->setAwayMessage(e->params().at(1));
271         } else {
272             ircuser->setAway(false);
273         }
274     } else {
275         qDebug() << "Received away-notify data for unknown user" << e->params().at(0);
276     }
277 }
278
279 /* IRCv3 chghost - ":nick!user@host CHGHOST newuser new.host.goes.here" */
280 void CoreSessionEventProcessor::processIrcEventChghost(IrcEvent *e)
281 {
282     if (!checkParamCount(e, 2))
283         return;
284
285     IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
286     if (ircuser) {
287         // Update with new user/hostname information.  setUser/setHost handles checking what
288         // actually changed.
289         ircuser->setUser(e->params().at(0));
290         ircuser->setHost(e->params().at(1));
291     } else {
292         qDebug() << "Received chghost data for unknown user" << e->prefix();
293     }
294 }
295
296 void CoreSessionEventProcessor::processIrcEventInvite(IrcEvent *e)
297 {
298     if (checkParamCount(e, 2)) {
299         e->network()->updateNickFromMask(e->prefix());
300     }
301 }
302
303
304 void CoreSessionEventProcessor::processIrcEventJoin(IrcEvent *e)
305 {
306     if (e->testFlag(EventManager::Fake)) // generated by handleEarlyNetsplitJoin
307         return;
308
309     if (!checkParamCount(e, 1))
310         return;
311
312     CoreNetwork *net = coreNetwork(e);
313     QString channel = e->params()[0];
314     IrcUser *ircuser = net->updateNickFromMask(e->prefix());
315
316     if (net->capEnabled(IrcCap::EXTENDED_JOIN)) {
317         if (!checkParamCount(e, 3))
318             return;
319         // If logged in, :nick!user@host JOIN #channelname accountname :Real Name
320         // If logged out, :nick!user@host JOIN #channelname * :Real Name
321         // See:  http://ircv3.net/specs/extensions/extended-join-3.1.html
322         // FIXME Keep track of authed user account, requires adding support to ircuser.h/cpp
323         ircuser->setRealName(e->params()[2]);
324     }
325     // Else :nick!user@host JOIN #channelname
326
327     bool handledByNetsplit = false;
328     foreach(Netsplit* n, _netsplits.value(e->network())) {
329         handledByNetsplit = n->userJoined(e->prefix(), channel);
330         if (handledByNetsplit)
331             break;
332     }
333
334     // If using away-notify, check new users.  Works around buggy IRC servers
335     // forgetting to send :away messages for users who join channels when away.
336     if (net->capEnabled(IrcCap::AWAY_NOTIFY)) {
337         net->queueAutoWhoOneshot(ircuser->nick());
338     }
339
340     if (!handledByNetsplit)
341         ircuser->joinChannel(channel);
342     else
343         e->setFlag(EventManager::Netsplit);
344
345     if (net->isMe(ircuser)) {
346         net->setChannelJoined(channel);
347         // FIXME use event
348         net->putRawLine(net->serverEncode("MODE " + channel)); // we want to know the modes of the channel we just joined, so we ask politely
349     }
350 }
351
352
353 void CoreSessionEventProcessor::lateProcessIrcEventKick(IrcEvent *e)
354 {
355     if (checkParamCount(e, 2)) {
356         e->network()->updateNickFromMask(e->prefix());
357         IrcUser *victim = e->network()->ircUser(e->params().at(1));
358         if (victim) {
359             victim->partChannel(e->params().at(0));
360             //if(e->network()->isMe(victim)) e->network()->setKickedFromChannel(channel);
361         }
362     }
363 }
364
365
366 void CoreSessionEventProcessor::processIrcEventMode(IrcEvent *e)
367 {
368     if (!checkParamCount(e, 2))
369         return;
370
371     if (e->network()->isChannelName(e->params().first())) {
372         // Channel Modes
373
374         IrcChannel *channel = e->network()->ircChannel(e->params()[0]);
375         if (!channel) {
376             // we received mode information for a channel we're not in. that means probably we've just been kicked out or something like that
377             // anyways: we don't have a place to store the data --> discard the info.
378             return;
379         }
380
381         QString modes = e->params()[1];
382         bool add = true;
383         int paramOffset = 2;
384         for (int c = 0; c < modes.length(); c++) {
385             if (modes[c] == '+') {
386                 add = true;
387                 continue;
388             }
389             if (modes[c] == '-') {
390                 add = false;
391                 continue;
392             }
393
394             if (e->network()->prefixModes().contains(modes[c])) {
395                 // user channel modes (op, voice, etc...)
396                 if (paramOffset < e->params().count()) {
397                     IrcUser *ircUser = e->network()->ircUser(e->params()[paramOffset]);
398                     if (!ircUser) {
399                         qWarning() << Q_FUNC_INFO << "Unknown IrcUser:" << e->params()[paramOffset];
400                     }
401                     else {
402                         if (add) {
403                             bool handledByNetsplit = false;
404                             QHash<QString, Netsplit *> splits = _netsplits.value(e->network());
405                             foreach(Netsplit* n, _netsplits.value(e->network())) {
406                                 handledByNetsplit = n->userAlreadyJoined(ircUser->hostmask(), channel->name());
407                                 if (handledByNetsplit) {
408                                     n->addMode(ircUser->hostmask(), channel->name(), QString(modes[c]));
409                                     break;
410                                 }
411                             }
412                             if (!handledByNetsplit)
413                                 channel->addUserMode(ircUser, QString(modes[c]));
414                         }
415                         else
416                             channel->removeUserMode(ircUser, QString(modes[c]));
417                     }
418                 }
419                 else {
420                     qWarning() << "Received MODE with too few parameters:" << e->params();
421                 }
422                 ++paramOffset;
423             }
424             else {
425                 // regular channel modes
426                 QString value;
427                 Network::ChannelModeType modeType = e->network()->channelModeType(modes[c]);
428                 if (modeType == Network::A_CHANMODE || modeType == Network::B_CHANMODE || (modeType == Network::C_CHANMODE && add)) {
429                     if (paramOffset < e->params().count()) {
430                         value = e->params()[paramOffset];
431                     }
432                     else {
433                         qWarning() << "Received MODE with too few parameters:" << e->params();
434                     }
435                     ++paramOffset;
436                 }
437
438                 if (add)
439                     channel->addChannelMode(modes[c], value);
440                 else
441                     channel->removeChannelMode(modes[c], value);
442             }
443         }
444     }
445     else {
446         // pure User Modes
447         IrcUser *ircUser = e->network()->newIrcUser(e->params().first());
448         QString modeString(e->params()[1]);
449         QString addModes;
450         QString removeModes;
451         bool add = false;
452         for (int c = 0; c < modeString.count(); c++) {
453             if (modeString[c] == '+') {
454                 add = true;
455                 continue;
456             }
457             if (modeString[c] == '-') {
458                 add = false;
459                 continue;
460             }
461             if (add)
462                 addModes += modeString[c];
463             else
464                 removeModes += modeString[c];
465         }
466         if (!addModes.isEmpty())
467             ircUser->addUserModes(addModes);
468         if (!removeModes.isEmpty())
469             ircUser->removeUserModes(removeModes);
470
471         if (e->network()->isMe(ircUser)) {
472             coreNetwork(e)->updatePersistentModes(addModes, removeModes);
473         }
474     }
475 }
476
477
478 void CoreSessionEventProcessor::lateProcessIrcEventNick(IrcEvent *e)
479 {
480     if (checkParamCount(e, 1)) {
481         IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
482         if (!ircuser) {
483             qWarning() << Q_FUNC_INFO << "Unknown IrcUser!";
484             return;
485         }
486         QString newnick = e->params().at(0);
487         QString oldnick = ircuser->nick();
488
489         // the order is cruicial
490         // otherwise the client would rename the buffer, see that the assigned ircuser doesn't match anymore
491         // and remove the ircuser from the querybuffer leading to a wrong on/offline state
492         ircuser->setNick(newnick);
493         coreSession()->renameBuffer(e->networkId(), newnick, oldnick);
494     }
495 }
496
497
498 void CoreSessionEventProcessor::lateProcessIrcEventPart(IrcEvent *e)
499 {
500     if (checkParamCount(e, 1)) {
501         IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
502         if (!ircuser) {
503             qWarning() << Q_FUNC_INFO<< "Unknown IrcUser!";
504             return;
505         }
506         QString channel = e->params().at(0);
507         ircuser->partChannel(channel);
508         if (e->network()->isMe(ircuser))
509             qobject_cast<CoreNetwork *>(e->network())->setChannelParted(channel);
510     }
511 }
512
513
514 void CoreSessionEventProcessor::processIrcEventPing(IrcEvent *e)
515 {
516     QString param = e->params().count() ? e->params().first() : QString();
517     // FIXME use events
518     // Take priority so this won't get stuck behind other queued messages.
519     coreNetwork(e)->putRawLine("PONG " + coreNetwork(e)->serverEncode(param), true);
520 }
521
522
523 void CoreSessionEventProcessor::processIrcEventPong(IrcEvent *e)
524 {
525     // the server is supposed to send back what we passed as param. and we send a timestamp
526     // but using quote and whatnought one can send arbitrary pings, so we have to do some sanity checks
527     if (checkParamCount(e, 2)) {
528         QString timestamp = e->params().at(1);
529         QTime sendTime = QTime::fromString(timestamp, "hh:mm:ss.zzz");
530         if (sendTime.isValid())
531             e->network()->setLatency(sendTime.msecsTo(QTime::currentTime()) / 2);
532     }
533 }
534
535
536 void CoreSessionEventProcessor::processIrcEventQuit(IrcEvent *e)
537 {
538     IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
539     if (!ircuser)
540         return;
541
542     QString msg;
543     if (e->params().count() > 0)
544         msg = e->params()[0];
545
546     // check if netsplit
547     if (Netsplit::isNetsplit(msg)) {
548         Netsplit *n;
549         if (!_netsplits[e->network()].contains(msg)) {
550             n = new Netsplit(e->network(), this);
551             connect(n, SIGNAL(finished()), this, SLOT(handleNetsplitFinished()));
552             connect(n, SIGNAL(netsplitJoin(Network*, QString, QStringList, QStringList, QString)),
553                 this, SLOT(handleNetsplitJoin(Network*, QString, QStringList, QStringList, QString)));
554             connect(n, SIGNAL(netsplitQuit(Network*, QString, QStringList, QString)),
555                 this, SLOT(handleNetsplitQuit(Network*, QString, QStringList, QString)));
556             connect(n, SIGNAL(earlyJoin(Network*, QString, QStringList, QStringList)),
557                 this, SLOT(handleEarlyNetsplitJoin(Network*, QString, QStringList, QStringList)));
558             _netsplits[e->network()].insert(msg, n);
559         }
560         else {
561             n = _netsplits[e->network()][msg];
562         }
563         // add this user to the netsplit
564         n->userQuit(e->prefix(), ircuser->channels(), msg);
565         e->setFlag(EventManager::Netsplit);
566     }
567     // normal quit is handled in lateProcessIrcEventQuit()
568 }
569
570
571 void CoreSessionEventProcessor::lateProcessIrcEventQuit(IrcEvent *e)
572 {
573     if (e->testFlag(EventManager::Netsplit))
574         return;
575
576     IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
577     if (!ircuser)
578         return;
579
580     ircuser->quit();
581 }
582
583
584 void CoreSessionEventProcessor::processIrcEventTopic(IrcEvent *e)
585 {
586     if (checkParamCount(e, 2)) {
587         e->network()->updateNickFromMask(e->prefix());
588         IrcChannel *channel = e->network()->ircChannel(e->params().at(0));
589         if (channel)
590             channel->setTopic(e->params().at(1));
591     }
592 }
593
594
595 #ifdef HAVE_QCA2
596 void CoreSessionEventProcessor::processKeyEvent(KeyEvent *e)
597 {
598     if (!Cipher::neededFeaturesAvailable()) {
599         emit newEvent(new MessageEvent(Message::Error, e->network(), tr("Unable to perform key exchange, missing qca-ossl plugin."), e->prefix(), e->target(), Message::None, e->timestamp()));
600         return;
601     }
602     CoreNetwork *net = qobject_cast<CoreNetwork*>(e->network());
603     Cipher *c = net->cipher(e->target());
604     if (!c) // happens when there is no CoreIrcChannel for the target (i.e. never?)
605         return;
606
607     if (e->exchangeType() == KeyEvent::Init) {
608         QByteArray pubKey = c->parseInitKeyX(e->key());
609         if (pubKey.isEmpty()) {
610             emit newEvent(new MessageEvent(Message::Error, e->network(), tr("Unable to parse the DH1080_INIT. Key exchange failed."), e->prefix(), e->target(), Message::None, e->timestamp()));
611             return;
612         } else {
613             net->setCipherKey(e->target(), c->key());
614             emit newEvent(new MessageEvent(Message::Info, e->network(), tr("Your key is set and messages will be encrypted."), e->prefix(), e->target(), Message::None, e->timestamp()));
615             QList<QByteArray> p;
616             p << net->serverEncode(e->target()) << net->serverEncode("DH1080_FINISH ")+pubKey;
617             net->putCmd("NOTICE", p);
618         }
619     } else {
620         if (c->parseFinishKeyX(e->key())) {
621             net->setCipherKey(e->target(), c->key());
622             emit newEvent(new MessageEvent(Message::Info, e->network(), tr("Your key is set and messages will be encrypted."), e->prefix(), e->target(), Message::None, e->timestamp()));
623         } else {
624             emit newEvent(new MessageEvent(Message::Info, e->network(), tr("Failed to parse DH1080_FINISH. Key exchange failed."), e->prefix(), e->target(), Message::None, e->timestamp()));
625         }
626     }
627 }
628 #endif
629
630
631 /* RPL_WELCOME */
632 void CoreSessionEventProcessor::processIrcEvent001(IrcEventNumeric *e)
633 {
634     e->network()->setCurrentServer(e->prefix());
635     e->network()->setMyNick(e->target());
636 }
637
638
639 /* RPL_ISUPPORT */
640 // TODO Complete 005 handling, also use sensible defaults for non-sent stuff
641 void CoreSessionEventProcessor::processIrcEvent005(IrcEvent *e)
642 {
643     if (!checkParamCount(e, 1))
644         return;
645
646     QString key, value;
647     for (int i = 0; i < e->params().count() - 1; i++) {
648         QString key = e->params()[i].section("=", 0, 0);
649         QString value = e->params()[i].section("=", 1);
650         e->network()->addSupport(key, value);
651     }
652
653     /* determine our prefixes here to get an accurate result */
654     e->network()->determinePrefixes();
655 }
656
657
658 /* RPL_UMODEIS - "<user_modes> [<user_mode_params>]" */
659 void CoreSessionEventProcessor::processIrcEvent221(IrcEvent *)
660 {
661     // TODO: save information in network object
662 }
663
664
665 /* RPL_STATSCONN - "Highest connection cout: 8000 (7999 clients)" */
666 void CoreSessionEventProcessor::processIrcEvent250(IrcEvent *)
667 {
668     // TODO: save information in network object
669 }
670
671
672 /* RPL_LOCALUSERS - "Current local user: 5024  Max: 7999 */
673 void CoreSessionEventProcessor::processIrcEvent265(IrcEvent *)
674 {
675     // TODO: save information in network object
676 }
677
678
679 /* RPL_GLOBALUSERS - "Current global users: 46093  Max: 47650" */
680 void CoreSessionEventProcessor::processIrcEvent266(IrcEvent *)
681 {
682     // TODO: save information in network object
683 }
684
685
686 /*
687 WHOIS-Message:
688    Replies 311 - 313, 317 - 319 are all replies generated in response to a WHOIS message.
689   and 301 (RPL_AWAY)
690               "<nick> :<away message>"
691 WHO-Message:
692    Replies 352 and 315 paired are used to answer a WHO message.
693
694 WHOWAS-Message:
695    Replies 314 and 369 are responses to a WHOWAS message.
696
697 */
698
699 /* RPL_AWAY - "<nick> :<away message>" */
700 void CoreSessionEventProcessor::processIrcEvent301(IrcEvent *e)
701 {
702     if (!checkParamCount(e, 2))
703         return;
704
705     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
706     if (ircuser) {
707         ircuser->setAway(true);
708         ircuser->setAwayMessage(e->params().at(1));
709         //ircuser->setLastAwayMessage(now);
710     }
711 }
712
713
714 /* RPL_UNAWAY - ":You are no longer marked as being away" */
715 void CoreSessionEventProcessor::processIrcEvent305(IrcEvent *e)
716 {
717     IrcUser *me = e->network()->me();
718     if (me)
719         me->setAway(false);
720
721     if (e->network()->autoAwayActive()) {
722         e->network()->setAutoAwayActive(false);
723         e->setFlag(EventManager::Silent);
724     }
725 }
726
727
728 /* RPL_NOWAWAY - ":You have been marked as being away" */
729 void CoreSessionEventProcessor::processIrcEvent306(IrcEvent *e)
730 {
731     IrcUser *me = e->network()->me();
732     if (me)
733         me->setAway(true);
734 }
735
736
737 /* RPL_WHOISSERVICE - "<user> is registered nick" */
738 void CoreSessionEventProcessor::processIrcEvent307(IrcEvent *e)
739 {
740     if (!checkParamCount(e, 1))
741         return;
742
743     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
744     if (ircuser)
745         ircuser->setWhoisServiceReply(e->params().join(" "));
746 }
747
748
749 /* RPL_SUSERHOST - "<user> is available for help." */
750 void CoreSessionEventProcessor::processIrcEvent310(IrcEvent *e)
751 {
752     if (!checkParamCount(e, 1))
753         return;
754
755     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
756     if (ircuser)
757         ircuser->setSuserHost(e->params().join(" "));
758 }
759
760
761 /*  RPL_WHOISUSER - "<nick> <user> <host> * :<real name>" */
762 void CoreSessionEventProcessor::processIrcEvent311(IrcEvent *e)
763 {
764     if (!checkParamCount(e, 3))
765         return;
766
767     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
768     if (ircuser) {
769         ircuser->setUser(e->params().at(1));
770         ircuser->setHost(e->params().at(2));
771         ircuser->setRealName(e->params().last());
772     }
773 }
774
775
776 /*  RPL_WHOISSERVER -  "<nick> <server> :<server info>" */
777 void CoreSessionEventProcessor::processIrcEvent312(IrcEvent *e)
778 {
779     if (!checkParamCount(e, 2))
780         return;
781
782     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
783     if (ircuser)
784         ircuser->setServer(e->params().at(1));
785 }
786
787
788 /*  RPL_WHOISOPERATOR - "<nick> :is an IRC operator" */
789 void CoreSessionEventProcessor::processIrcEvent313(IrcEvent *e)
790 {
791     if (!checkParamCount(e, 1))
792         return;
793
794     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
795     if (ircuser)
796         ircuser->setIrcOperator(e->params().last());
797 }
798
799
800 /*  RPL_ENDOFWHO: "<name> :End of WHO list" */
801 void CoreSessionEventProcessor::processIrcEvent315(IrcEvent *e)
802 {
803     if (!checkParamCount(e, 1))
804         return;
805
806     if (coreNetwork(e)->setAutoWhoDone(e->params()[0]))
807         e->setFlag(EventManager::Silent);
808 }
809
810
811 /*  RPL_WHOISIDLE - "<nick> <integer> :seconds idle"
812    (real life: "<nick> <integer> <integer> :seconds idle, signon time) */
813 void CoreSessionEventProcessor::processIrcEvent317(IrcEvent *e)
814 {
815     if (!checkParamCount(e, 2))
816         return;
817
818     QDateTime loginTime;
819
820     int idleSecs = e->params()[1].toInt();
821     if (e->params().count() > 3) { // if we have more then 3 params we have the above mentioned "real life" situation
822         int logintime = e->params()[2].toInt();
823         loginTime = QDateTime::fromTime_t(logintime);
824     }
825
826     IrcUser *ircuser = e->network()->ircUser(e->params()[0]);
827     if (ircuser) {
828         ircuser->setIdleTime(e->timestamp().addSecs(-idleSecs));
829         if (loginTime.isValid())
830             ircuser->setLoginTime(loginTime);
831     }
832 }
833
834
835 /* RPL_LIST -  "<channel> <# visible> :<topic>" */
836 void CoreSessionEventProcessor::processIrcEvent322(IrcEvent *e)
837 {
838     if (!checkParamCount(e, 1))
839         return;
840
841     QString channelName;
842     quint32 userCount = 0;
843     QString topic;
844
845     switch (e->params().count()) {
846     case 3:
847         topic = e->params()[2];
848     case 2:
849         userCount = e->params()[1].toUInt();
850     case 1:
851         channelName = e->params()[0];
852     default:
853         break;
854     }
855     if (coreSession()->ircListHelper()->addChannel(e->networkId(), channelName, userCount, topic))
856         e->stop();  // consumed by IrcListHelper, so don't further process/show this event
857 }
858
859
860 /* RPL_LISTEND ":End of LIST" */
861 void CoreSessionEventProcessor::processIrcEvent323(IrcEvent *e)
862 {
863     if (!checkParamCount(e, 1))
864         return;
865
866     if (coreSession()->ircListHelper()->endOfChannelList(e->networkId()))
867         e->stop();  // consumed by IrcListHelper, so don't further process/show this event
868 }
869
870
871 /* RPL_CHANNELMODEIS - "<channel> <mode> <mode params>" */
872 void CoreSessionEventProcessor::processIrcEvent324(IrcEvent *e)
873 {
874     processIrcEventMode(e);
875 }
876
877
878 /*  RPL_WHOISACCOUNT: "<nick> <account> :is authed as */
879 void CoreSessionEventProcessor::processIrcEvent330(IrcEvent *e)
880 {
881     if (!checkParamCount(e, 3))
882         return;
883
884     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
885     if (ircuser) {
886         ircuser->setAccount(e->params().at(1));
887     }
888 }
889
890
891 /* RPL_NOTOPIC */
892 void CoreSessionEventProcessor::processIrcEvent331(IrcEvent *e)
893 {
894     if (!checkParamCount(e, 1))
895         return;
896
897     IrcChannel *chan = e->network()->ircChannel(e->params()[0]);
898     if (chan)
899         chan->setTopic(QString());
900 }
901
902
903 /* RPL_TOPIC */
904 void CoreSessionEventProcessor::processIrcEvent332(IrcEvent *e)
905 {
906     if (!checkParamCount(e, 2))
907         return;
908
909     IrcChannel *chan = e->network()->ircChannel(e->params()[0]);
910     if (chan)
911         chan->setTopic(e->params()[1]);
912 }
913
914
915 /*  RPL_WHOREPLY: "<channel> <user> <host> <server> <nick>
916               ( "H" / "G" > ["*"] [ ( "@" / "+" ) ] :<hopcount> <real name>" */
917 void CoreSessionEventProcessor::processIrcEvent352(IrcEvent *e)
918 {
919     if (!checkParamCount(e, 6))
920         return;
921
922     QString channel = e->params()[0];
923     IrcUser *ircuser = e->network()->ircUser(e->params()[4]);
924     if (ircuser) {
925         processWhoInformation(e->network(), channel, ircuser, e->params()[3], e->params()[1],
926                 e->params()[2], e->params()[5], e->params().last().section(" ", 1));
927     }
928
929     // Check if channel name has a who in progress.
930     // If not, then check if user nick exists and has a who in progress.
931     if (coreNetwork(e)->isAutoWhoInProgress(channel) ||
932         (ircuser && coreNetwork(e)->isAutoWhoInProgress(ircuser->nick()))) {
933         e->setFlag(EventManager::Silent);
934     }
935 }
936
937
938 /* RPL_NAMREPLY */
939 void CoreSessionEventProcessor::processIrcEvent353(IrcEvent *e)
940 {
941     if (!checkParamCount(e, 3))
942         return;
943
944     // param[0] is either "=", "*" or "@" indicating a public, private or secret channel
945     // we don't use this information at the time beeing
946     QString channelname = e->params()[1];
947
948     IrcChannel *channel = e->network()->ircChannel(channelname);
949     if (!channel) {
950         qWarning() << Q_FUNC_INFO << "Received unknown target channel:" << channelname;
951         return;
952     }
953
954     QStringList nicks;
955     QStringList modes;
956
957     // Cache result of multi-prefix to avoid unneeded casts and lookups with each iteration.
958     bool _useCapMultiPrefix = coreNetwork(e)->capEnabled(IrcCap::MULTI_PREFIX);
959
960     foreach(QString nick, e->params()[2].split(' ', QString::SkipEmptyParts)) {
961         QString mode;
962
963         if (_useCapMultiPrefix) {
964             // If multi-prefix is enabled, all modes will be sent in NAMES replies.
965             // :hades.arpa 353 guest = #tethys :~&@%+aji &@Attila @+alyx +KindOne Argure
966             // See: http://ircv3.net/specs/extensions/multi-prefix-3.1.html
967             while (e->network()->prefixes().contains(nick[0])) {
968                 // Mode found in 1 left-most character, add it to the list.
969                 // Note: sending multiple modes may cause a warning in older clients.
970                 // In testing, the clients still seemed to function fine.
971                 mode.append(e->network()->prefixToMode(nick[0]));
972                 // Remove this mode from the nick
973                 nick = nick.remove(0, 1);
974             }
975         } else if (e->network()->prefixes().contains(nick[0])) {
976             // Multi-prefix is disabled and a mode prefix was found.
977             mode = e->network()->prefixToMode(nick[0]);
978             nick = nick.mid(1);
979         }
980
981         // If userhost-in-names capability is enabled, the following will be
982         // in the form "nick!user@host" rather than "nick".  This works without
983         // special handling as the following use nickFromHost() as needed.
984         // See: http://ircv3.net/specs/extensions/userhost-in-names-3.2.html
985
986         nicks << nick;
987         modes << mode;
988     }
989
990     channel->joinIrcUsers(nicks, modes);
991 }
992
993
994 /*  RPL_WHOSPCRPL: "<yournick> 152 #<channel> ~<ident> <host> <servname> <nick>
995                     ("H"/ "G") <account> :<realname>"
996 <channel> is * if not specific to any channel
997 <account> is * if not logged in
998 Follows HexChat's usage of 'whox'
999 See https://github.com/hexchat/hexchat/blob/c874a9525c9b66f1d5ddcf6c4107d046eba7e2c5/src/common/proto-irc.c#L750
1000 And http://faerion.sourceforge.net/doc/irc/whox.var*/
1001 void CoreSessionEventProcessor::processIrcEvent354(IrcEvent *e)
1002 {
1003     // First only check if at least one parameter exists.  Otherwise, it'll stop the result from
1004     // being shown if the user chooses different parameters.
1005     if (!checkParamCount(e, 1))
1006         return;
1007
1008     if (e->params()[0].toUInt() != IrcCap::ACCOUNT_NOTIFY_WHOX_NUM) {
1009         // Ignore WHOX replies without expected number for we have no idea what fields are specified
1010         return;
1011     }
1012
1013     // Now we're fairly certain this is supposed to be an automated WHOX.  Bail out if it doesn't
1014     // match what we require - 9 parameters.
1015     if (!checkParamCount(e, 9))
1016         return;
1017
1018     QString channel = e->params()[1];
1019     IrcUser *ircuser = e->network()->ircUser(e->params()[5]);
1020     if (ircuser) {
1021         processWhoInformation(e->network(), channel, ircuser, e->params()[4], e->params()[2],
1022                 e->params()[3], e->params()[6], e->params().last());
1023         // Don't use .section(" ", 1) with WHOX replies, for there's no hopcount to trim out
1024
1025         // As part of IRCv3 account-notify, check account name
1026         // WHOX uses '0' to indicate logged-out, account-notify uses '*'
1027         QString newAccount = e->params()[7];
1028         if (newAccount != "0") {
1029             // Account logged in, set account name
1030             ircuser->setAccount(newAccount);
1031         } else {
1032             // Account logged out, set account name to logged-out
1033             ircuser->setAccount("*");
1034         }
1035     }
1036
1037     // Check if channel name has a who in progress.
1038     // If not, then check if user nick exists and has a who in progress.
1039     if (coreNetwork(e)->isAutoWhoInProgress(channel) ||
1040         (ircuser && coreNetwork(e)->isAutoWhoInProgress(ircuser->nick()))) {
1041         e->setFlag(EventManager::Silent);
1042     }
1043 }
1044
1045
1046 void CoreSessionEventProcessor::processWhoInformation (Network *net, const QString &targetChannel, IrcUser *ircUser,
1047                             const QString &server, const QString &user, const QString &host,
1048                             const QString &awayStateAndModes, const QString &realname)
1049 {
1050     ircUser->setUser(user);
1051     ircUser->setHost(host);
1052     ircUser->setServer(server);
1053     ircUser->setRealName(realname);
1054
1055     bool away = awayStateAndModes.contains("G", Qt::CaseInsensitive);
1056     ircUser->setAway(away);
1057
1058     if (net->capEnabled(IrcCap::MULTI_PREFIX)) {
1059         // If multi-prefix is enabled, all modes will be sent in WHO replies.
1060         // :kenny.chatspike.net 352 guest #test grawity broken.symlink *.chatspike.net grawity H@%+ :0 Mantas M.
1061         // See: http://ircv3.net/specs/extensions/multi-prefix-3.1.html
1062         QString uncheckedModes = awayStateAndModes;
1063         QString validModes = QString();
1064         while (!uncheckedModes.isEmpty()) {
1065             // Mode found in 1 left-most character, add it to the list
1066             if (net->prefixes().contains(uncheckedModes[0])) {
1067                 validModes.append(net->prefixToMode(uncheckedModes[0]));
1068             }
1069             // Remove this mode from the list of unchecked modes
1070             uncheckedModes = uncheckedModes.remove(0, 1);
1071         }
1072
1073         // Some IRC servers decide to not follow the spec, returning only -some- of the user
1074         // modes in WHO despite listing them all in NAMES.  For now, assume it can only add
1075         // and not take away.  *sigh*
1076         if (!validModes.isEmpty()) {
1077             if (targetChannel != "*") {
1078                 // Channel-specific modes received, apply to given channel only
1079                 IrcChannel *ircChan = net->ircChannel(targetChannel);
1080                 if (ircChan) {
1081                     // Do one mode at a time
1082                     // TODO Better way of syncing this without breaking protocol?
1083                     for (int i = 0; i < validModes.count(); ++i) {
1084                         ircChan->addUserMode(ircUser, validModes.at(i));
1085                     }
1086                 }
1087             } else {
1088                 // Modes apply to the user everywhere
1089                 ircUser->addUserModes(validModes);
1090             }
1091         }
1092     }
1093 }
1094
1095
1096 /* ERR_NOSUCHCHANNEL - "<channel name> :No such channel" */
1097 void CoreSessionEventProcessor::processIrcEvent403(IrcEventNumeric *e)
1098 {
1099     // If this is the result of an AutoWho, hide it.  It's confusing to show to the user.
1100     if (!checkParamCount(e, 2))
1101         return;
1102
1103     QString channelOrNick = e->params()[0];
1104     // Check if channel name has a who in progress.
1105     // If not, then check if user nick exists and has a who in progress.
1106     if (coreNetwork(e)->isAutoWhoInProgress(channelOrNick)) {
1107         qDebug() << "Channel/nick" << channelOrNick << "no longer exists during AutoWho, ignoring";
1108         e->setFlag(EventManager::Silent);
1109     }
1110 }
1111
1112 /* ERR_ERRONEUSNICKNAME */
1113 void CoreSessionEventProcessor::processIrcEvent432(IrcEventNumeric *e)
1114 {
1115     if (!checkParamCount(e, 1))
1116         return;
1117
1118     QString errnick;
1119     if (e->params().count() < 2) {
1120         // handle unreal-ircd bug, where unreal ircd doesnt supply a TARGET in ERR_ERRONEUSNICKNAME during registration phase:
1121         // nick @@@
1122         // :irc.scortum.moep.net 432  @@@ :Erroneous Nickname: Illegal characters
1123         // correct server reply:
1124         // :irc.scortum.moep.net 432 * @@@ :Erroneous Nickname: Illegal characters
1125         e->params().prepend(e->target());
1126         e->setTarget("*");
1127     }
1128     errnick = e->params()[0];
1129
1130     tryNextNick(e, errnick, true /* erroneus */);
1131 }
1132
1133
1134 /* ERR_NICKNAMEINUSE */
1135 void CoreSessionEventProcessor::processIrcEvent433(IrcEventNumeric *e)
1136 {
1137     if (!checkParamCount(e, 1))
1138         return;
1139
1140     QString errnick = e->params().first();
1141
1142     // if there is a problem while connecting to the server -> we handle it
1143     // but only if our connection has not been finished yet...
1144     if (!e->network()->currentServer().isEmpty())
1145         return;
1146
1147     tryNextNick(e, errnick);
1148 }
1149
1150
1151 /* ERR_UNAVAILRESOURCE */
1152 void CoreSessionEventProcessor::processIrcEvent437(IrcEventNumeric *e)
1153 {
1154     if (!checkParamCount(e, 1))
1155         return;
1156
1157     QString errnick = e->params().first();
1158
1159     // if there is a problem while connecting to the server -> we handle it
1160     // but only if our connection has not been finished yet...
1161     if (!e->network()->currentServer().isEmpty())
1162         return;
1163
1164     if (!e->network()->isChannelName(errnick))
1165         tryNextNick(e, errnick);
1166 }
1167
1168
1169 /* template
1170 void CoreSessionEventProcessor::processIrcEvent(IrcEvent *e) {
1171   if(!checkParamCount(e, 1))
1172     return;
1173
1174 }
1175 */
1176
1177 /* Handle signals from Netsplit objects  */
1178
1179 void CoreSessionEventProcessor::handleNetsplitJoin(Network *net,
1180     const QString &channel,
1181     const QStringList &users,
1182     const QStringList &modes,
1183     const QString &quitMessage)
1184 {
1185     IrcChannel *ircChannel = net->ircChannel(channel);
1186     if (!ircChannel) {
1187         return;
1188     }
1189     QList<IrcUser *> ircUsers;
1190     QStringList newModes = modes;
1191     QStringList newUsers = users;
1192
1193     foreach(const QString &user, users) {
1194         IrcUser *iu = net->ircUser(nickFromMask(user));
1195         if (iu)
1196             ircUsers.append(iu);
1197         else { // the user already quit
1198             int idx = users.indexOf(user);
1199             newUsers.removeAt(idx);
1200             newModes.removeAt(idx);
1201         }
1202     }
1203
1204     ircChannel->joinIrcUsers(ircUsers, newModes);
1205     NetworkSplitEvent *event = new NetworkSplitEvent(EventManager::NetworkSplitJoin, net, channel, newUsers, quitMessage);
1206     emit newEvent(event);
1207 }
1208
1209
1210 void CoreSessionEventProcessor::handleNetsplitQuit(Network *net, const QString &channel, const QStringList &users, const QString &quitMessage)
1211 {
1212     NetworkSplitEvent *event = new NetworkSplitEvent(EventManager::NetworkSplitQuit, net, channel, users, quitMessage);
1213     emit newEvent(event);
1214     foreach(QString user, users) {
1215         IrcUser *iu = net->ircUser(nickFromMask(user));
1216         if (iu)
1217             iu->quit();
1218     }
1219 }
1220
1221
1222 void CoreSessionEventProcessor::handleEarlyNetsplitJoin(Network *net, const QString &channel, const QStringList &users, const QStringList &modes)
1223 {
1224     IrcChannel *ircChannel = net->ircChannel(channel);
1225     if (!ircChannel) {
1226         qDebug() << "handleEarlyNetsplitJoin(): channel " << channel << " invalid";
1227         return;
1228     }
1229     QList<NetworkEvent *> events;
1230     QList<IrcUser *> ircUsers;
1231     QStringList newModes = modes;
1232
1233     foreach(QString user, users) {
1234         IrcUser *iu = net->updateNickFromMask(user);
1235         if (iu) {
1236             ircUsers.append(iu);
1237             // fake event for scripts that consume join events
1238             events << new IrcEvent(EventManager::IrcEventJoin, net, iu->hostmask(), QStringList() << channel);
1239         }
1240         else {
1241             newModes.removeAt(users.indexOf(user));
1242         }
1243     }
1244     ircChannel->joinIrcUsers(ircUsers, newModes);
1245     foreach(NetworkEvent *event, events) {
1246         event->setFlag(EventManager::Fake); // ignore this in here!
1247         emit newEvent(event);
1248     }
1249 }
1250
1251
1252 void CoreSessionEventProcessor::handleNetsplitFinished()
1253 {
1254     Netsplit *n = qobject_cast<Netsplit *>(sender());
1255     Q_ASSERT(n);
1256     QHash<QString, Netsplit *> splithash  = _netsplits.take(n->network());
1257     splithash.remove(splithash.key(n));
1258     if (splithash.count())
1259         _netsplits[n->network()] = splithash;
1260     n->deleteLater();
1261 }
1262
1263
1264 void CoreSessionEventProcessor::destroyNetsplits(NetworkId netId)
1265 {
1266     Network *net = coreSession()->network(netId);
1267     if (!net)
1268         return;
1269
1270     QHash<QString, Netsplit *> splits = _netsplits.take(net);
1271     qDeleteAll(splits);
1272 }
1273
1274
1275 /*******************************/
1276 /******** CTCP HANDLING ********/
1277 /*******************************/
1278
1279 void CoreSessionEventProcessor::processCtcpEvent(CtcpEvent *e)
1280 {
1281     if (e->testFlag(EventManager::Self))
1282         return;  // ignore ctcp events generated by user input
1283
1284     if (e->type() != EventManager::CtcpEvent || e->ctcpType() != CtcpEvent::Query)
1285         return;
1286
1287     handle(e->ctcpCmd(), Q_ARG(CtcpEvent *, e));
1288 }
1289
1290
1291 void CoreSessionEventProcessor::defaultHandler(const QString &ctcpCmd, CtcpEvent *e)
1292 {
1293     // This handler is only there to avoid warnings for unknown CTCPs
1294     Q_UNUSED(e);
1295     Q_UNUSED(ctcpCmd);
1296 }
1297
1298
1299 void CoreSessionEventProcessor::handleCtcpAction(CtcpEvent *e)
1300 {
1301     // This handler is only there to feed CLIENTINFO
1302     Q_UNUSED(e);
1303 }
1304
1305
1306 void CoreSessionEventProcessor::handleCtcpClientinfo(CtcpEvent *e)
1307 {
1308     QStringList supportedHandlers;
1309     foreach(QString handler, providesHandlers())
1310     supportedHandlers << handler.toUpper();
1311     qSort(supportedHandlers);
1312     e->setReply(supportedHandlers.join(" "));
1313 }
1314
1315
1316 // http://www.irchelp.org/irchelp/rfc/ctcpspec.html
1317 // http://en.wikipedia.org/wiki/Direct_Client-to-Client
1318 void CoreSessionEventProcessor::handleCtcpDcc(CtcpEvent *e)
1319 {
1320     // DCC support is unfinished, experimental and potentially dangerous, so make it opt-in
1321     if (!Quassel::isOptionSet("enable-experimental-dcc")) {
1322         quInfo() << "DCC disabled, start core with --enable-experimental-dcc if you really want to try it out";
1323         return;
1324     }
1325
1326     // normal:  SEND <filename> <ip> <port> [<filesize>]
1327     // reverse: SEND <filename> <ip> 0 <filesize> <token>
1328     QStringList params = e->param().split(' ');
1329     if (params.count()) {
1330         QString cmd = params[0].toUpper();
1331         if (cmd == "SEND") {
1332             if (params.count() < 4) {
1333                 qWarning() << "Invalid DCC SEND request:" << e;  // TODO emit proper error to client
1334                 return;
1335             }
1336             QString filename = params[1];
1337             QHostAddress address;
1338             quint16 port = params[3].toUShort();
1339             quint64 size = 0;
1340             QString numIp = params[2]; // this is either IPv4 as a 32 bit value, or IPv6 (which always contains a colon)
1341             if (numIp.contains(':')) { // IPv6
1342                 if (!address.setAddress(numIp)) {
1343                     qWarning() << "Invalid IPv6:" << numIp;
1344                     return;
1345                 }
1346             }
1347             else {
1348                 address.setAddress(numIp.toUInt());
1349             }
1350
1351             if (port == 0) { // Reverse DCC is indicated by a 0 port
1352                 emit newEvent(new MessageEvent(Message::Error, e->network(), tr("Reverse DCC SEND not supported"), e->prefix(), e->target(), Message::None, e->timestamp()));
1353                 return;
1354             }
1355             if (port < 1024) {
1356                 qWarning() << "Privileged port requested:" << port; // FIXME ask user if this is ok
1357             }
1358
1359
1360             if (params.count() > 4) { // filesize is optional
1361                 size = params[4].toULong();
1362             }
1363
1364             // TODO: check if target is the right thing to use for the partner
1365             CoreTransfer *transfer = new CoreTransfer(Transfer::Direction::Receive, e->target(), filename, address, port, size, this);
1366             coreSession()->signalProxy()->synchronize(transfer);
1367             coreSession()->transferManager()->addTransfer(transfer);
1368         }
1369         else {
1370             emit newEvent(new MessageEvent(Message::Error, e->network(), tr("DCC %1 not supported").arg(cmd), e->prefix(), e->target(), Message::None, e->timestamp()));
1371             return;
1372         }
1373     }
1374 }
1375
1376
1377 void CoreSessionEventProcessor::handleCtcpPing(CtcpEvent *e)
1378 {
1379     e->setReply(e->param().isNull() ? "" : e->param());
1380 }
1381
1382
1383 void CoreSessionEventProcessor::handleCtcpTime(CtcpEvent *e)
1384 {
1385     e->setReply(QDateTime::currentDateTime().toString());
1386 }
1387
1388
1389 void CoreSessionEventProcessor::handleCtcpVersion(CtcpEvent *e)
1390 {
1391     e->setReply(QString("Quassel IRC %1 (built on %2) -- http://www.quassel-irc.org")
1392         .arg(Quassel::buildInfo().plainVersionString).arg(Quassel::buildInfo().commitDate));
1393 }