two leading slashes are now treated as a regular message with one slah being stripped
[quassel.git] / src / core / userinputhandler.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 "userinputhandler.h"
21
22 #include "util.h"
23
24 #include "networkconnection.h"
25 #include "network.h"
26 #include "ctcphandler.h"
27 #include "ircuser.h"
28
29 #include <QDebug>
30
31 UserInputHandler::UserInputHandler(NetworkConnection *parent) : BasicHandler(parent) {
32 }
33
34 void UserInputHandler::handleUserInput(const BufferInfo &bufferInfo, const QString &msg_) {
35   try {
36     if(msg_.isEmpty())
37       return;
38     QString cmd;
39     QString msg = msg_;
40     // leading slashes indicate there's a command to call unless there is anothere one in the first section (like a path /proc/cpuinfo)
41     int secondSlashPos = msg.indexOf('/', 1);
42     int firstSpacePos = msg.indexOf(' ');
43     if(!msg.startsWith('/') || (secondSlashPos != -1 && (secondSlashPos < firstSpacePos || firstSpacePos == -1))) {
44       if(secondSlashPos == 1)
45         msg.remove(0, 1); // //asdf is transformed to /asdf
46       cmd = QString("SAY");
47     } else {
48       cmd = msg.section(' ', 0, 0).remove(0, 1).toUpper();
49       msg = msg.section(' ', 1);
50     }
51     handle(cmd, Q_ARG(BufferInfo, bufferInfo), Q_ARG(QString, msg));
52   } catch(Exception e) {
53     emit displayMsg(Message::Error, bufferInfo.type(), "", e.msg());
54   }
55 }
56
57 // ====================
58 //  Public Slots
59 // ====================
60
61 void UserInputHandler::handleAway(const BufferInfo &bufferInfo, const QString &msg) {
62   Q_UNUSED(bufferInfo)
63
64   QString awayMsg = msg;
65   IrcUser *me = network()->me();
66
67   // if there is no message supplied we have to check if we are already away or not
68   if(msg.isEmpty()) {
69     if(me && !me->isAway())
70       awayMsg = networkConnection()->identity()->awayReason();
71   }
72   if(me)
73     me->setAwayMessage(awayMsg);
74   
75   putCmd("AWAY", serverEncode(awayMsg));
76 }
77
78 void UserInputHandler::handleBan(const BufferInfo &bufferInfo, const QString &msg) {
79   QString banChannel;
80   QString banUser;
81
82   QStringList params = msg.split(" ");
83
84   if(!params.isEmpty() && isChannelName(params[0])) {
85     banChannel = params.takeFirst();
86   } else if(bufferInfo.type() == BufferInfo::ChannelBuffer) {
87     banChannel = bufferInfo.bufferName();
88   } else {
89     emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", QString("Error: channel unknown in command: /BAN %1").arg(msg));
90     return;
91   }
92
93   if(!params.isEmpty() && !params.contains("!") && network()->ircUser(params[0])) {
94     IrcUser *ircuser = network()->ircUser(params[0]);
95     // generalizedHost changes <nick> to  *!ident@*.sld.tld.
96     QString generalizedHost = ircuser->host();
97     if(generalizedHost.isEmpty()) {
98       emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", QString("Error: host unknown in command: /BAN %1").arg(msg));
99       return;
100     }
101
102     if(generalizedHost.lastIndexOf(".") != -1 && generalizedHost.lastIndexOf(".", generalizedHost.lastIndexOf(".")-1) != -1) {
103       int secondLastPeriodPosition = generalizedHost.lastIndexOf(".", generalizedHost.lastIndexOf(".")-1);
104       generalizedHost.replace(0, secondLastPeriodPosition, "*");
105     }
106     banUser = QString("*!%1@%2").arg(ircuser->user()).arg(generalizedHost);
107   } else {
108     banUser = params.join(" ");
109   }
110
111   QString banMsg = QString("MODE %1 +b %2").arg(banChannel).arg(banUser);
112   emit putRawLine(serverEncode(banMsg));
113 }
114
115 void UserInputHandler::handleCtcp(const BufferInfo &bufferInfo, const QString &msg) {
116   Q_UNUSED(bufferInfo)
117   QString nick = msg.section(' ', 0, 0);
118   QString ctcpTag = msg.section(' ', 1, 1).toUpper();
119   if (ctcpTag.isEmpty()) return;
120   QString message = "";
121   QString verboseMessage = tr("sending CTCP-%1 request").arg(ctcpTag);
122
123   if(ctcpTag == "PING") {
124     uint now = QDateTime::currentDateTime().toTime_t();
125     message = QString::number(now);
126   }
127
128   networkConnection()->ctcpHandler()->query(nick, ctcpTag, message);
129   emit displayMsg(Message::Action, BufferInfo::StatusBuffer, "", verboseMessage, network()->myNick());
130 }
131
132 void UserInputHandler::handleDeop(const BufferInfo &bufferInfo, const QString &msg) {
133   QStringList nicks = msg.split(' ', QString::SkipEmptyParts);
134   QString m = "-"; for(int i = 0; i < nicks.count(); i++) m += 'o';
135   QStringList params;
136   params << bufferInfo.bufferName() << m << nicks;
137   emit putCmd("MODE", serverEncode(params));
138 }
139
140 void UserInputHandler::handleDevoice(const BufferInfo &bufferInfo, const QString &msg) {
141   QStringList nicks = msg.split(' ', QString::SkipEmptyParts);
142   QString m = "-"; for(int i = 0; i < nicks.count(); i++) m += 'v';
143   QStringList params;
144   params << bufferInfo.bufferName() << m << nicks;
145   emit putCmd("MODE", serverEncode(params));
146 }
147
148 void UserInputHandler::handleInvite(const BufferInfo &bufferInfo, const QString &msg) {
149   QStringList params;
150   params << msg << bufferInfo.bufferName();
151   emit putCmd("INVITE", serverEncode(params));
152 }
153
154 void UserInputHandler::handleJoin(const BufferInfo &bufferInfo, const QString &msg) {
155   Q_UNUSED(bufferInfo)
156   QStringList params = msg.trimmed().split(" ");
157   QStringList chans = params[0].split(",");
158   QStringList keys;
159   if(params.count() > 1) keys = params[1].split(",");
160   emit putCmd("JOIN", serverEncode(params)); // FIXME handle messages longer than 512 bytes!
161   int i = 0;
162   for(; i < keys.count(); i++) {
163     if(i >= chans.count()) break;
164     networkConnection()->addChannelKey(chans[i], keys[i]);
165   }
166   for(; i < chans.count(); i++) {
167     networkConnection()->removeChannelKey(chans[i]);
168   }
169 }
170
171 void UserInputHandler::handleKick(const BufferInfo &bufferInfo, const QString &msg) {
172   QString nick = msg.section(' ', 0, 0, QString::SectionSkipEmpty);
173   QString reason = msg.section(' ', 1, -1, QString::SectionSkipEmpty).trimmed();
174   if(reason.isEmpty())
175     reason = networkConnection()->identity()->kickReason();
176
177   QList<QByteArray> params;
178   params << serverEncode(bufferInfo.bufferName()) << serverEncode(nick) << channelEncode(bufferInfo.bufferName(), reason);
179   emit putCmd("KICK", params);
180 }
181
182 void UserInputHandler::handleKill(const BufferInfo &bufferInfo, const QString &msg) {
183   Q_UNUSED(bufferInfo)
184   QString nick = msg.section(' ', 0, 0, QString::SectionSkipEmpty);
185   QString pass = msg.section(' ', 1, -1, QString::SectionSkipEmpty);
186   QList<QByteArray> params;
187   params << serverEncode(nick) << serverEncode(pass);
188   emit putCmd("KILL", params);
189 }
190
191
192 void UserInputHandler::handleList(const BufferInfo &bufferInfo, const QString &msg) {
193   Q_UNUSED(bufferInfo)
194   emit putCmd("LIST", serverEncode(msg.split(' ', QString::SkipEmptyParts)));
195 }
196
197 void UserInputHandler::handleMe(const BufferInfo &bufferInfo, const QString &msg) {
198   if(bufferInfo.bufferName().isEmpty()) return; // server buffer
199   networkConnection()->ctcpHandler()->query(bufferInfo.bufferName(), "ACTION", msg);
200   emit displayMsg(Message::Action, bufferInfo.type(), bufferInfo.bufferName(), msg, network()->myNick());
201 }
202
203 void UserInputHandler::handleMode(const BufferInfo &bufferInfo, const QString &msg) {
204   Q_UNUSED(bufferInfo)
205
206   QStringList params = msg.split(' ', QString::SkipEmptyParts);
207   // 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
208   if(!params.isEmpty() && !network()->isChannelName(params[0]) && !network()->isMyNick(params[0]))
209     params.prepend(bufferInfo.bufferName());
210   
211   // TODO handle correct encoding for buffer modes (channelEncode())
212   emit putCmd("MODE", serverEncode(params));
213 }
214
215 // TODO: show privmsgs
216 void UserInputHandler::handleMsg(const BufferInfo &bufferInfo, const QString &msg) {
217   Q_UNUSED(bufferInfo);
218   if(!msg.contains(' '))
219     return;
220
221   QList<QByteArray> params;
222   params << serverEncode(msg.section(' ', 0, 0));
223   params << userEncode(params[0], msg.section(' ', 1));
224
225   emit putCmd("PRIVMSG", params);
226 }
227
228 void UserInputHandler::handleNick(const BufferInfo &bufferInfo, const QString &msg) {
229   Q_UNUSED(bufferInfo)
230   QString nick = msg.section(' ', 0, 0);
231   emit putCmd("NICK", serverEncode(nick));
232 }
233
234 void UserInputHandler::handleOp(const BufferInfo &bufferInfo, const QString &msg) {
235   QStringList nicks = msg.split(' ', QString::SkipEmptyParts);
236   QString m = "+"; for(int i = 0; i < nicks.count(); i++) m += 'o';
237   QStringList params;
238   params << bufferInfo.bufferName() << m << nicks;
239   emit putCmd("MODE", serverEncode(params));
240 }
241
242 void UserInputHandler::handleOper(const BufferInfo &bufferInfo, const QString &msg) {
243   Q_UNUSED(bufferInfo)
244   emit putRawLine(serverEncode(QString("OPER %1").arg(msg)));
245 }
246
247 void UserInputHandler::handlePart(const BufferInfo &bufferInfo, const QString &msg) {
248   QList<QByteArray> params;
249   QString partReason;
250
251   // msg might contain either a channel name and/or a reaon, so we have to check if the first word is a known channel
252   QString channelName = msg.section(' ', 0, 0);
253   if(channelName.isEmpty() || !network()->ircChannel(channelName)) {
254     channelName = bufferInfo.bufferName();
255     partReason = msg;
256   } else {
257     partReason = msg.mid(channelName.length() + 1);
258   }
259   
260   if(partReason.isEmpty())
261     partReason = networkConnection()->identity()->partReason();
262
263   params << serverEncode(channelName) << channelEncode(bufferInfo.bufferName(), partReason);
264   emit putCmd("PART", params);
265 }
266
267 void UserInputHandler::handlePing(const BufferInfo &bufferInfo, const QString &msg) {
268   Q_UNUSED(bufferInfo)
269
270   QString param = msg;
271   if(param.isEmpty())
272     param = QTime::currentTime().toString("hh:mm:ss.zzz");
273
274   putCmd("PING", serverEncode(param));
275 }
276
277 // TODO: implement queries
278 void UserInputHandler::handleQuery(const BufferInfo &bufferInfo, const QString &msg) {
279   Q_UNUSED(bufferInfo)
280   QString target = msg.section(' ', 0, 0);
281   QString message = msg.section(' ', 1);
282   if(message.isEmpty())
283     emit displayMsg(Message::Server, BufferInfo::QueryBuffer, target, "Starting query with " + target, network()->myNick(), Message::Self);
284   else
285     emit displayMsg(Message::Plain, BufferInfo::QueryBuffer, target, message, network()->myNick(), Message::Self);
286   handleMsg(bufferInfo, msg);
287 }
288
289 void UserInputHandler::handleQuit(const BufferInfo &bufferInfo, const QString &msg) {
290   Q_UNUSED(bufferInfo)
291
292   QString quitReason;
293   if(msg.isEmpty())
294     quitReason = networkConnection()->identity()->quitReason();
295   else
296     quitReason = msg;
297
298   emit putCmd("QUIT", serverEncode(quitReason));
299   networkConnection()->disconnectFromIrc();
300 }
301
302 void UserInputHandler::handleQuote(const BufferInfo &bufferInfo, const QString &msg) {
303   Q_UNUSED(bufferInfo)
304   emit putRawLine(serverEncode(msg));
305 }
306
307 void UserInputHandler::handleSay(const BufferInfo &bufferInfo, const QString &msg) {
308   if(bufferInfo.bufferName().isEmpty()) return;  // server buffer
309   QList<QByteArray> params;
310   params << serverEncode(bufferInfo.bufferName()) << channelEncode(bufferInfo.bufferName(), msg);
311   emit putCmd("PRIVMSG", params);
312   emit displayMsg(Message::Plain, bufferInfo.type(), bufferInfo.bufferName(), msg, network()->myNick(), Message::Self);
313 }
314
315 void UserInputHandler::handleTopic(const BufferInfo &bufferInfo, const QString &msg) {
316   if(bufferInfo.bufferName().isEmpty()) return;
317   if(!msg.isEmpty()) {
318     QList<QByteArray> params;
319     params << serverEncode(bufferInfo.bufferName()) << channelEncode(bufferInfo.bufferName(), msg);
320     emit putCmd("TOPIC", params);
321   } else {
322     emit networkConnection()->putRawLine("TOPIC " + serverEncode(bufferInfo.bufferName()) + " :");
323   }
324 }
325
326 void UserInputHandler::handleVoice(const BufferInfo &bufferInfo, const QString &msg) {
327   QStringList nicks = msg.split(' ', QString::SkipEmptyParts);
328   QString m = "+"; for(int i = 0; i < nicks.count(); i++) m += 'v';
329   QStringList params;
330   params << bufferInfo.bufferName() << m << nicks;
331   emit putCmd("MODE", serverEncode(params));
332 }
333
334 void UserInputHandler::handleWho(const BufferInfo &bufferInfo, const QString &msg) {
335   Q_UNUSED(bufferInfo)
336   emit putCmd("WHO", serverEncode(msg.split(' ')));
337 }
338
339 void UserInputHandler::handleWhois(const BufferInfo &bufferInfo, const QString &msg) {
340   Q_UNUSED(bufferInfo)
341   emit putCmd("WHOIS", serverEncode(msg.split(' ')));
342 }
343
344 void UserInputHandler::handleWhowas(const BufferInfo &bufferInfo, const QString &msg) {
345   Q_UNUSED(bufferInfo)
346   emit putCmd("WHOWAS", serverEncode(msg.split(' ')));
347 }
348
349 void UserInputHandler::defaultHandler(QString cmd, const BufferInfo &bufferInfo, const QString &msg) {
350   for(int i = 0; i < coreSession()->aliasManager().count(); i++) {
351     if(coreSession()->aliasManager()[i].name.toLower() == cmd.toLower()) {
352       expand(coreSession()->aliasManager()[i].expansion, bufferInfo, msg);
353       return;
354     }
355   }
356   emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", QString("Error: %1 %2").arg(cmd).arg(msg));
357 }
358
359 void UserInputHandler::expand(const QString &alias, const BufferInfo &bufferInfo, const QString &msg) {
360   QStringList commands = alias.split(QRegExp("; ?"));
361   QStringList params = msg.split(' ');
362   for(int i = 0; i < commands.count(); i++) {
363     QString command = commands[i];
364     for(int j = params.count(); j > 0; j--) {
365       command = command.replace(QString("$%1").arg(j), params[j - 1]);
366     }
367     command = command.replace("$0", msg);
368     command = command.replace("$channelname", bufferInfo.bufferName());
369     command = command.replace("$currentnick", network()->myNick());
370     handleUserInput(bufferInfo, command);
371   }
372 }
373
374
375