Fixes #960 - "Core crashes after deleting a Network without disconnecting the Network...
[quassel.git] / src / core / coreuserinputhandler.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2010 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 "coreuserinputhandler.h"
21
22 #include "util.h"
23
24 #include "ctcpparser.h"
25
26 #include <QRegExp>
27
28 #ifdef HAVE_QCA2
29 #  include "cipher.h"
30 #endif
31
32 CoreUserInputHandler::CoreUserInputHandler(CoreNetwork *parent)
33   : CoreBasicHandler(parent)
34 {
35 }
36
37 void CoreUserInputHandler::handleUserInput(const BufferInfo &bufferInfo, const QString &msg) {
38   if(msg.isEmpty())
39     return;
40
41   AliasManager::CommandList list = coreSession()->aliasManager().processInput(bufferInfo, msg);
42
43   for(int i = 0; i < list.count(); i++) {
44     QString cmd = list.at(i).second.section(' ', 0, 0).remove(0, 1).toUpper();
45     QString payload = list.at(i).second.section(' ', 1);
46     handle(cmd, Q_ARG(BufferInfo, list.at(i).first), Q_ARG(QString, payload));
47   }
48 }
49
50 // ====================
51 //  Public Slots
52 // ====================
53 void CoreUserInputHandler::handleAway(const BufferInfo &bufferInfo, const QString &msg) {
54   Q_UNUSED(bufferInfo)
55   if(msg.startsWith("-all")) {
56     if(msg.length() == 4) {
57       coreSession()->globalAway();
58       return;
59     }
60     Q_ASSERT(msg.length() > 4);
61     if(msg[4] == ' ') {
62       coreSession()->globalAway(msg.mid(5));
63       return;
64     }
65   }
66   issueAway(msg);
67 }
68
69 void CoreUserInputHandler::issueAway(const QString &msg, bool autoCheck) {
70   QString awayMsg = msg;
71   IrcUser *me = network()->me();
72
73   // if there is no message supplied we have to check if we are already away or not
74   if(autoCheck && msg.isEmpty()) {
75     if(me && !me->isAway()) {
76       Identity *identity = network()->identityPtr();
77       if(identity) {
78         awayMsg = identity->awayReason();
79       }
80       if(awayMsg.isEmpty()) {
81         awayMsg = tr("away");
82       }
83     }
84   }
85   if(me)
86     me->setAwayMessage(awayMsg);
87
88   putCmd("AWAY", serverEncode(awayMsg));
89 }
90
91 void CoreUserInputHandler::handleBan(const BufferInfo &bufferInfo, const QString &msg) {
92   banOrUnban(bufferInfo, msg, true);
93 }
94
95 void CoreUserInputHandler::handleUnban(const BufferInfo &bufferInfo, const QString &msg) {
96   banOrUnban(bufferInfo, msg, false);
97 }
98
99 void CoreUserInputHandler::banOrUnban(const BufferInfo &bufferInfo, const QString &msg, bool ban) {
100   QString banChannel;
101   QString banUser;
102
103   QStringList params = msg.split(" ");
104
105   if(!params.isEmpty() && isChannelName(params[0])) {
106     banChannel = params.takeFirst();
107   } else if(bufferInfo.type() == BufferInfo::ChannelBuffer) {
108     banChannel = bufferInfo.bufferName();
109   } else {
110     emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", QString("Error: channel unknown in command: /BAN %1").arg(msg));
111     return;
112   }
113
114   if(!params.isEmpty() && !params.contains("!") && network()->ircUser(params[0])) {
115     IrcUser *ircuser = network()->ircUser(params[0]);
116     // generalizedHost changes <nick> to  *!ident@*.sld.tld.
117     QString generalizedHost = ircuser->host();
118     if(generalizedHost.isEmpty()) {
119       emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", QString("Error: host unknown in command: /BAN %1").arg(msg));
120       return;
121     }
122
123     static QRegExp ipAddress("\\d+\\.\\d+\\.\\d+\\.\\d+");
124     if(ipAddress.exactMatch(generalizedHost))    {
125         int lastDotPos = generalizedHost.lastIndexOf('.') + 1;
126         generalizedHost.replace(lastDotPos, generalizedHost.length() - lastDotPos, '*');
127     } else if(generalizedHost.lastIndexOf(".") != -1 && generalizedHost.lastIndexOf(".", generalizedHost.lastIndexOf(".")-1) != -1) {
128       int secondLastPeriodPosition = generalizedHost.lastIndexOf(".", generalizedHost.lastIndexOf(".")-1);
129       generalizedHost.replace(0, secondLastPeriodPosition, "*");
130     }
131     banUser = QString("*!%1@%2").arg(ircuser->user(), generalizedHost);
132   } else {
133     banUser = params.join(" ");
134   }
135
136   QString banMode = ban ? "+b" : "-b";
137   QString banMsg = QString("MODE %1 %2 %3").arg(banChannel, banMode, banUser);
138   emit putRawLine(serverEncode(banMsg));
139 }
140
141 void CoreUserInputHandler::handleCtcp(const BufferInfo &bufferInfo, const QString &msg) {
142   Q_UNUSED(bufferInfo)
143
144   QString nick = msg.section(' ', 0, 0);
145   QString ctcpTag = msg.section(' ', 1, 1).toUpper();
146   if(ctcpTag.isEmpty())
147     return;
148
149   QString message = msg.section(' ', 2);
150   QString verboseMessage = tr("sending CTCP-%1 request to %2").arg(ctcpTag).arg(nick);
151
152   if(ctcpTag == "PING") {
153     uint now = QDateTime::currentDateTime().toTime_t();
154     message = QString::number(now);
155   }
156
157   // FIXME make this a proper event
158   coreNetwork()->coreSession()->ctcpParser()->query(coreNetwork(), nick, ctcpTag, message);
159   emit displayMsg(Message::Action, BufferInfo::StatusBuffer, "", verboseMessage, network()->myNick());
160 }
161
162 void CoreUserInputHandler::handleDelkey(const BufferInfo &bufferInfo, const QString &msg) {
163 #ifdef HAVE_QCA2
164   if(!bufferInfo.isValid())
165     return;
166
167   if(!Cipher::neededFeaturesAvailable())
168     return;
169
170   QStringList parms = msg.split(' ', QString::SkipEmptyParts);
171
172   if(parms.isEmpty() && !bufferInfo.bufferName().isEmpty())
173     parms.prepend(bufferInfo.bufferName());
174
175   if(parms.isEmpty()) {
176     emit displayMsg(Message::Info, bufferInfo.bufferName(), "",
177                     tr("[usage] /delkey <nick|channel> deletes the encryption key for nick or channel or just /delkey when in a channel or query."));
178     return;
179   }
180
181   QString target = parms.at(0);
182
183   if(network()->cipherKey(target).isEmpty()) {
184     emit displayMsg(Message::Info, bufferInfo.bufferName(), tr("No key has been set for %1.").arg(target));
185     return;
186   }
187
188   network()->setCipherKey(target, QByteArray());
189
190   if(network()->isChannelName(target) && network()->channels().contains(target)) {
191     qobject_cast<CoreIrcChannel *>(network()->ircChannel(target))->setEncrypted(false);
192   }
193   else if(network()->nicks().contains(target)) {
194     qobject_cast<CoreIrcUser *>(network()->ircUser(target))->setEncrypted(false);
195   }
196
197   emit displayMsg(Message::Info, bufferInfo.bufferName(), tr("The key for %1 has been deleted.").arg(target));
198
199 #else
200   Q_UNUSED(msg)
201   emit displayMsg(Message::Error, bufferInfo.bufferName(), "", tr("Error: Setting an encryption key requires Quassel to have been built "
202                                                                   "with support for the Qt Cryptographic Architecture (QCA2) library. "
203                                                                   "Contact your distributor about a Quassel package with QCA2 "
204                                                                   "support, or rebuild Quassel with QCA2 present."));
205 #endif
206 }
207
208 void CoreUserInputHandler::handleDeop(const BufferInfo &bufferInfo, const QString &msg) {
209   QStringList nicks = msg.split(' ', QString::SkipEmptyParts);
210   QString m = "-"; for(int i = 0; i < nicks.count(); i++) m += 'o';
211   QStringList params;
212   params << bufferInfo.bufferName() << m << nicks;
213   emit putCmd("MODE", serverEncode(params));
214 }
215
216 void CoreUserInputHandler::handleDevoice(const BufferInfo &bufferInfo, const QString &msg) {
217   QStringList nicks = msg.split(' ', QString::SkipEmptyParts);
218   QString m = "-"; for(int i = 0; i < nicks.count(); i++) m += 'v';
219   QStringList params;
220   params << bufferInfo.bufferName() << m << nicks;
221   emit putCmd("MODE", serverEncode(params));
222 }
223
224 void CoreUserInputHandler::handleInvite(const BufferInfo &bufferInfo, const QString &msg) {
225   QStringList params;
226   params << msg << bufferInfo.bufferName();
227   emit putCmd("INVITE", serverEncode(params));
228 }
229
230 void CoreUserInputHandler::handleJoin(const BufferInfo &bufferInfo, const QString &msg) {
231   Q_UNUSED(bufferInfo);
232
233   // trim spaces before chans or keys
234   QString sane_msg = msg;
235   sane_msg.replace(QRegExp(", +"), ",");
236   QStringList params = sane_msg.trimmed().split(" ");
237
238   QStringList chans = params[0].split(",", QString::SkipEmptyParts);
239   QStringList keys;
240   if(params.count() > 1)
241     keys = params[1].split(",");
242
243   int i;
244   for(i = 0; i < chans.count(); i++) {
245     if(!network()->isChannelName(chans[i]))
246       chans[i].prepend('#');
247
248     if(i < keys.count()) {
249       network()->addChannelKey(chans[i], keys[i]);
250     } else {
251       network()->removeChannelKey(chans[i]);
252     }
253   }
254
255   static const char *cmd = "JOIN";
256   i = 0;
257   QStringList joinChans, joinKeys;
258   int slicesize = chans.count();
259   QList<QByteArray> encodedParams;
260
261   // go through all to-be-joined channels and (re)build the join list
262   while(i < chans.count()) {
263     joinChans.append(chans.at(i));
264     if(i < keys.count())
265       joinKeys.append(keys.at(i));
266
267     // if the channel list we built so far either contains all requested channels or exceeds
268     // the desired amount of channels in this slice, try to send what we have so far
269     if(++i == chans.count() || joinChans.count() >= slicesize) {
270       params.clear();
271       params.append(joinChans.join(","));
272       params.append(joinKeys.join(","));
273       encodedParams = serverEncode(params);
274       // check if it fits in one command
275       if(lastParamOverrun(cmd, encodedParams) == 0) {
276         emit putCmd(cmd, encodedParams);
277       } else if(slicesize > 1) {
278         // back to start of slice, try again with half the amount of channels
279         i -= slicesize;
280         slicesize /= 2;
281       }
282       joinChans.clear();
283       joinKeys.clear();
284     }
285   }
286 }
287
288 void CoreUserInputHandler::handleKick(const BufferInfo &bufferInfo, const QString &msg) {
289   QString nick = msg.section(' ', 0, 0, QString::SectionSkipEmpty);
290   QString reason = msg.section(' ', 1, -1, QString::SectionSkipEmpty).trimmed();
291   if(reason.isEmpty())
292     reason = network()->identityPtr()->kickReason();
293
294   QList<QByteArray> params;
295   params << serverEncode(bufferInfo.bufferName()) << serverEncode(nick) << channelEncode(bufferInfo.bufferName(), reason);
296   emit putCmd("KICK", params);
297 }
298
299 void CoreUserInputHandler::handleKill(const BufferInfo &bufferInfo, const QString &msg) {
300   Q_UNUSED(bufferInfo)
301   QString nick = msg.section(' ', 0, 0, QString::SectionSkipEmpty);
302   QString pass = msg.section(' ', 1, -1, QString::SectionSkipEmpty);
303   QList<QByteArray> params;
304   params << serverEncode(nick) << serverEncode(pass);
305   emit putCmd("KILL", params);
306 }
307
308
309 void CoreUserInputHandler::handleList(const BufferInfo &bufferInfo, const QString &msg) {
310   Q_UNUSED(bufferInfo)
311   emit putCmd("LIST", serverEncode(msg.split(' ', QString::SkipEmptyParts)));
312 }
313
314 void CoreUserInputHandler::handleMe(const BufferInfo &bufferInfo, const QString &msg) {
315   if(bufferInfo.bufferName().isEmpty()) return; // server buffer
316   // FIXME make this a proper event
317   coreNetwork()->coreSession()->ctcpParser()->query(coreNetwork(), bufferInfo.bufferName(), "ACTION", msg);
318   emit displayMsg(Message::Action, bufferInfo.type(), bufferInfo.bufferName(), msg, network()->myNick(), Message::Self);
319 }
320
321 void CoreUserInputHandler::handleMode(const BufferInfo &bufferInfo, const QString &msg) {
322   Q_UNUSED(bufferInfo)
323
324   QStringList params = msg.split(' ', QString::SkipEmptyParts);
325   // if the first argument is neither a channel nor us (user modes are only to oneself) the current buffer is assumed to be the target
326   if(!params.isEmpty()) {
327     if(!network()->isChannelName(params[0]) && !network()->isMyNick(params[0]))
328       params.prepend(bufferInfo.bufferName());
329     if(network()->isMyNick(params[0]) && params.count() == 2)
330       network()->updateIssuedModes(params[1]);
331     if(params[0] == "-reset" && params.count() == 1) {
332       // FIXME: give feedback to the user (I don't want to add new strings right now)
333       network()->resetPersistentModes();
334       return;
335     }
336   }
337
338   // TODO handle correct encoding for buffer modes (channelEncode())
339   emit putCmd("MODE", serverEncode(params));
340 }
341
342 // TODO: show privmsgs
343 void CoreUserInputHandler::handleMsg(const BufferInfo &bufferInfo, const QString &msg) {
344   Q_UNUSED(bufferInfo);
345   if(!msg.contains(' '))
346     return;
347
348   QString target = msg.section(' ', 0, 0);
349   QByteArray encMsg = userEncode(target, msg.section(' ', 1));
350
351 #ifdef HAVE_QCA2
352   putPrivmsg(serverEncode(target), encMsg, network()->cipher(target));
353 #else
354   putPrivmsg(serverEncode(target), encMsg);
355 #endif
356 }
357
358 void CoreUserInputHandler::handleNick(const BufferInfo &bufferInfo, const QString &msg) {
359   Q_UNUSED(bufferInfo)
360   QString nick = msg.section(' ', 0, 0);
361   emit putCmd("NICK", serverEncode(nick));
362 }
363
364 void CoreUserInputHandler::handleNotice(const BufferInfo &bufferInfo, const QString &msg) {
365   QString bufferName = msg.section(' ', 0, 0);
366   QString payload = msg.section(' ', 1);
367   QList<QByteArray> params;
368   params << serverEncode(bufferName) << channelEncode(bufferInfo.bufferName(), payload);
369   emit putCmd("NOTICE", params);
370   emit displayMsg(Message::Notice, bufferName, payload, network()->myNick(), Message::Self);
371 }
372
373 void CoreUserInputHandler::handleOp(const BufferInfo &bufferInfo, const QString &msg) {
374   QStringList nicks = msg.split(' ', QString::SkipEmptyParts);
375   QString m = "+"; for(int i = 0; i < nicks.count(); i++) m += 'o';
376   QStringList params;
377   params << bufferInfo.bufferName() << m << nicks;
378   emit putCmd("MODE", serverEncode(params));
379 }
380
381 void CoreUserInputHandler::handleOper(const BufferInfo &bufferInfo, const QString &msg) {
382   Q_UNUSED(bufferInfo)
383   emit putRawLine(serverEncode(QString("OPER %1").arg(msg)));
384 }
385
386 void CoreUserInputHandler::handlePart(const BufferInfo &bufferInfo, const QString &msg) {
387   QList<QByteArray> params;
388   QString partReason;
389
390   // msg might contain either a channel name and/or a reaon, so we have to check if the first word is a known channel
391   QString channelName = msg.section(' ', 0, 0);
392   if(channelName.isEmpty() || !network()->ircChannel(channelName)) {
393     channelName = bufferInfo.bufferName();
394     partReason = msg;
395   } else {
396     partReason = msg.mid(channelName.length() + 1);
397   }
398
399   if(partReason.isEmpty())
400     partReason = network()->identityPtr()->partReason();
401
402   params << serverEncode(channelName) << channelEncode(bufferInfo.bufferName(), partReason);
403   emit putCmd("PART", params);
404 }
405
406 void CoreUserInputHandler::handlePing(const BufferInfo &bufferInfo, const QString &msg) {
407   Q_UNUSED(bufferInfo)
408
409   QString param = msg;
410   if(param.isEmpty())
411     param = QTime::currentTime().toString("hh:mm:ss.zzz");
412
413   putCmd("PING", serverEncode(param));
414 }
415
416 // TODO: implement queries
417 void CoreUserInputHandler::handleQuery(const BufferInfo &bufferInfo, const QString &msg) {
418   Q_UNUSED(bufferInfo)
419   QString target = msg.section(' ', 0, 0);
420   QString message = msg.section(' ', 1);
421   if(message.isEmpty())
422     emit displayMsg(Message::Server, BufferInfo::QueryBuffer, target, tr("Starting query with %1").arg(target), network()->myNick(), Message::Self);
423   else
424     emit displayMsg(Message::Plain, BufferInfo::QueryBuffer, target, message, network()->myNick(), Message::Self);
425   handleMsg(bufferInfo, msg);
426 }
427
428 void CoreUserInputHandler::handleQuit(const BufferInfo &bufferInfo, const QString &msg) {
429   Q_UNUSED(bufferInfo)
430   network()->disconnectFromIrc(true, msg);
431 }
432
433 void CoreUserInputHandler::issueQuit(const QString &reason) {
434   emit putCmd("QUIT", serverEncode(reason));
435 }
436
437 void CoreUserInputHandler::handleQuote(const BufferInfo &bufferInfo, const QString &msg) {
438   Q_UNUSED(bufferInfo)
439   emit putRawLine(serverEncode(msg));
440 }
441
442 void CoreUserInputHandler::handleSay(const BufferInfo &bufferInfo, const QString &msg) {
443   if(bufferInfo.bufferName().isEmpty())
444     return;  // server buffer
445
446   QByteArray encMsg = channelEncode(bufferInfo.bufferName(), msg);
447 #ifdef HAVE_QCA2
448   putPrivmsg(serverEncode(bufferInfo.bufferName()), encMsg, network()->cipher(bufferInfo.bufferName()));
449 #else
450   putPrivmsg(serverEncode(bufferInfo.bufferName()), encMsg);
451 #endif
452   emit displayMsg(Message::Plain, bufferInfo.type(), bufferInfo.bufferName(), msg, network()->myNick(), Message::Self);
453 }
454
455 void CoreUserInputHandler::handleSetkey(const BufferInfo &bufferInfo, const QString &msg) {
456 #ifdef HAVE_QCA2
457   if(!bufferInfo.isValid())
458     return;
459
460   if(!Cipher::neededFeaturesAvailable())
461     return;
462
463   QStringList parms = msg.split(' ', QString::SkipEmptyParts);
464
465   if(parms.count() == 1 && !bufferInfo.bufferName().isEmpty())
466     parms.prepend(bufferInfo.bufferName());
467   else if(parms.count() != 2) {
468     emit displayMsg(Message::Info, bufferInfo.bufferName(),
469                     tr("[usage] /setkey <nick|channel> <key> sets the encryption key for nick or channel. "
470                        "/setkey <key> when in a channel or query buffer sets the key for it."));
471     return;
472   }
473
474   QString target = parms.at(0);
475   QByteArray key = parms.at(1).toLocal8Bit();
476
477   network()->setCipherKey(target, key);
478
479   if(network()->isChannelName(target) && network()->channels().contains(target))
480     qobject_cast<CoreIrcChannel *>(network()->ircChannel(target))->setEncrypted(true);
481   else if(network()->nicks().contains(target))
482     qobject_cast<CoreIrcUser *>(network()->ircUser(target))->setEncrypted(true);
483
484   emit displayMsg(Message::Info, bufferInfo.bufferName(), tr("The key for %1 has been set.").arg(target));
485 #else
486   Q_UNUSED(msg)
487   emit displayMsg(Message::Error, bufferInfo.bufferName(), tr("Error: Setting an encryption key requires Quassel to have been built "
488                                                               "with support for the Qt Cryptographic Architecture (QCA) library. "
489                                                               "Contact your distributor about a Quassel package with QCA "
490                                                               "support, or rebuild Quassel with QCA present."));
491 #endif
492 }
493
494 void CoreUserInputHandler::handleTopic(const BufferInfo &bufferInfo, const QString &msg) {
495   if(bufferInfo.bufferName().isEmpty())
496     return;
497
498   QList<QByteArray> params;
499   params << serverEncode(bufferInfo.bufferName());
500
501   if(!msg.isEmpty()) {
502 #   ifdef HAVE_QCA2
503       params << encrypt(bufferInfo.bufferName(), channelEncode(bufferInfo.bufferName(), msg));
504 #   else
505       params << channelEncode(bufferInfo.bufferName(), msg);
506 #   endif
507   }
508
509   emit putCmd("TOPIC", params);
510 }
511
512 void CoreUserInputHandler::handleVoice(const BufferInfo &bufferInfo, const QString &msg) {
513   QStringList nicks = msg.split(' ', QString::SkipEmptyParts);
514   QString m = "+"; for(int i = 0; i < nicks.count(); i++) m += 'v';
515   QStringList params;
516   params << bufferInfo.bufferName() << m << nicks;
517   emit putCmd("MODE", serverEncode(params));
518 }
519
520 void CoreUserInputHandler::handleWait(const BufferInfo &bufferInfo, const QString &msg) {
521   int splitPos = msg.indexOf(';');
522   if(splitPos <= 0)
523     return;
524
525   bool ok;
526   int delay = msg.left(splitPos).trimmed().toInt(&ok);
527   if(!ok)
528     return;
529
530   delay *= 1000;
531
532   QString command = msg.mid(splitPos + 1).trimmed();
533   if(command.isEmpty())
534     return;
535
536   _delayedCommands[startTimer(delay)] = Command(bufferInfo, command);
537 }
538
539 void CoreUserInputHandler::handleWho(const BufferInfo &bufferInfo, const QString &msg) {
540   Q_UNUSED(bufferInfo)
541   emit putCmd("WHO", serverEncode(msg.split(' ')));
542 }
543
544 void CoreUserInputHandler::handleWhois(const BufferInfo &bufferInfo, const QString &msg) {
545   Q_UNUSED(bufferInfo)
546   emit putCmd("WHOIS", serverEncode(msg.split(' ')));
547 }
548
549 void CoreUserInputHandler::handleWhowas(const BufferInfo &bufferInfo, const QString &msg) {
550   Q_UNUSED(bufferInfo)
551   emit putCmd("WHOWAS", serverEncode(msg.split(' ')));
552 }
553
554 void CoreUserInputHandler::defaultHandler(QString cmd, const BufferInfo &bufferInfo, const QString &msg) {
555   Q_UNUSED(bufferInfo);
556   emit putCmd(serverEncode(cmd.toUpper()), serverEncode(msg.split(" ")));
557 }
558
559 void CoreUserInputHandler::putPrivmsg(const QByteArray &target, const QByteArray &message, Cipher *cipher) {
560   // Encrypted messages need special care. There's no clear relation between cleartext and encrypted message length,
561   // so we can't just compute the maxSplitPos. Instead, we need to loop through the splitpoints until the crypted
562   // version is short enough...
563   // TODO: check out how the various possible encryption methods behave length-wise and make
564   //       this clean by predicting the length of the crypted msg.
565   //       For example, blowfish-ebc seems to create 8-char chunks.
566
567   static const char *cmd = "PRIVMSG";
568   static const char *splitter = " .,-";
569
570   int maxSplitPos = message.count();
571   int splitPos = maxSplitPos;
572   forever {
573     QByteArray crypted = message.left(splitPos);
574     bool isEncrypted = false;
575 #ifdef HAVE_QCA2
576     if(cipher && !message.isEmpty()) {
577       isEncrypted = cipher->encrypt(crypted);
578     }
579 #endif
580     int overrun = lastParamOverrun(cmd, QList<QByteArray>() << target << crypted);
581     if(overrun) {
582       // In case this is not an encrypted msg, we can just cut off at the end
583       if(!isEncrypted)
584         maxSplitPos = message.count() - overrun;
585
586       splitPos = -1;
587       for(const char *splitChar = splitter; *splitChar != 0; splitChar++) {
588         splitPos = qMax(splitPos, message.lastIndexOf(*splitChar, maxSplitPos) + 1); // keep split char on old line
589       }
590       if(splitPos <= 0 || splitPos > maxSplitPos)
591         splitPos = maxSplitPos;
592
593       maxSplitPos = splitPos - 1;
594       if(maxSplitPos <= 0) { // this should never happen, but who knows...
595         qWarning() << tr("[Error] Could not encrypt your message: %1").arg(message.data());
596         return;
597       }
598       continue;  // we never come back here for !encrypted!
599     }
600
601     // now we have found a valid splitpos (or didn't need to split to begin with)
602     putCmd(cmd, QList<QByteArray>() << target << crypted);
603     if(splitPos < message.count())
604       putPrivmsg(target, message.mid(splitPos), cipher);
605
606     return;
607   }
608 }
609
610 // returns 0 if the message will not be chopped by the irc server or number of chopped bytes if message is too long
611 int CoreUserInputHandler::lastParamOverrun(const QString &cmd, const QList<QByteArray> &params) {
612   // the server will pass our message truncated to 512 bytes including CRLF with the following format:
613   // ":prefix COMMAND param0 param1 :lastparam"
614   // where prefix = "nickname!user@host"
615   // that means that the last message can be as long as:
616   // 512 - nicklen - userlen - hostlen - commandlen - sum(param[0]..param[n-1])) - 2 (for CRLF) - 4 (":!@" + 1space between prefix and command) - max(paramcount - 1, 0) (space for simple params) - 2 (space and colon for last param)
617   IrcUser *me = network()->me();
618   int maxLen = 480 - cmd.toAscii().count(); // educated guess in case we don't know us (yet?)
619
620   if(me)
621     maxLen = 512 - serverEncode(me->nick()).count() - serverEncode(me->user()).count() - serverEncode(me->host()).count() - cmd.toAscii().count() - 6;
622
623   if(!params.isEmpty()) {
624     for(int i = 0; i < params.count() - 1; i++) {
625       maxLen -= (params[i].count() + 1);
626     }
627     maxLen -= 2; // " :" last param separator;
628
629     if(params.last().count() > maxLen) {
630       return params.last().count() - maxLen;
631     } else {
632       return 0;
633     }
634   } else {
635     return 0;
636   }
637 }
638
639 #ifdef HAVE_QCA2
640 QByteArray CoreUserInputHandler::encrypt(const QString &target, const QByteArray &message_, bool *didEncrypt) const {
641   if(didEncrypt)
642     *didEncrypt = false;
643
644   if(message_.isEmpty())
645     return message_;
646
647   if(!Cipher::neededFeaturesAvailable())
648     return message_;
649
650   Cipher *cipher = network()->cipher(target);
651   if(!cipher)
652     return message_;
653
654   QByteArray message = message_;
655   bool result = cipher->encrypt(message);
656   if(didEncrypt)
657     *didEncrypt = result;
658
659   return message;
660 }
661 #endif
662
663 void CoreUserInputHandler::timerEvent(QTimerEvent *event) {
664   if(!_delayedCommands.contains(event->timerId())) {
665     QObject::timerEvent(event);
666     return;
667   }
668   BufferInfo bufferInfo = _delayedCommands[event->timerId()].bufferInfo;
669   QString rawCommand = _delayedCommands[event->timerId()].command;
670   _delayedCommands.remove(event->timerId());
671   event->accept();
672
673   // the stored command might be the result of an alias expansion, so we need to split it up again
674   QStringList commands = rawCommand.split(QRegExp("; ?"));
675   foreach(QString command, commands) {
676     handleUserInput(bufferInfo, command);
677   }
678 }