849308808b28ebb24d815792f4ae9affe01d3f0e
[quassel.git] / src / core / ctcphandler.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 "ctcphandler.h"
21
22 #include "global.h"
23 #include "util.h"
24 #include "message.h"
25 #include "network.h"
26
27 CtcpHandler::CtcpHandler(NetworkConnection *parent)
28   : BasicHandler(parent),
29     XDELIM("\001")
30 {
31
32   QByteArray MQUOTE = QByteArray("\020");
33   ctcpMDequoteHash[MQUOTE + '0'] = QByteArray("\000");
34   ctcpMDequoteHash[MQUOTE + 'n'] = QByteArray("\n");
35   ctcpMDequoteHash[MQUOTE + 'r'] = QByteArray("\r");
36   ctcpMDequoteHash[MQUOTE + MQUOTE] = MQUOTE;
37
38   QByteArray XQUOTE = QByteArray("\134");
39   ctcpXDelimDequoteHash[XQUOTE + XQUOTE] = XQUOTE;
40   ctcpXDelimDequoteHash[XQUOTE + QByteArray("a")] = XDELIM;
41 }
42
43 QByteArray CtcpHandler::dequote(const QByteArray &message) {
44   QByteArray dequotedMessage;
45   QByteArray messagepart;
46   QHash<QByteArray, QByteArray>::iterator ctcpquote;
47   
48   // copy dequote Message
49   for(int i = 0; i < message.size(); i++) {
50     messagepart = message.mid(i,1);
51     if(i+1 < message.size()) {
52       for(ctcpquote = ctcpMDequoteHash.begin(); ctcpquote != ctcpMDequoteHash.end(); ++ctcpquote) {
53         if(message.mid(i,2) == ctcpquote.key()) {
54           messagepart = ctcpquote.value();
55           i++;
56           break;
57         }
58       }
59     }
60     dequotedMessage += messagepart;
61   }
62   return dequotedMessage;
63 }
64
65
66 QByteArray CtcpHandler::xdelimDequote(const QByteArray &message) {
67   QByteArray dequotedMessage;
68   QByteArray messagepart;
69   QHash<QByteArray, QByteArray>::iterator xdelimquote;
70
71   for(int i = 0; i < message.size(); i++) {
72     messagepart = message.mid(i,1);
73     if(i+1 < message.size()) {
74       for(xdelimquote = ctcpXDelimDequoteHash.begin(); xdelimquote != ctcpXDelimDequoteHash.end(); ++xdelimquote) {
75         if(message.mid(i,2) == xdelimquote.key()) {
76           messagepart = xdelimquote.value();
77           i++;
78           break;
79         }
80       }
81     }
82     dequotedMessage += messagepart;
83   }
84   return dequotedMessage;
85 }
86
87 void CtcpHandler::parse(Message::Type messageType, const QString &prefix, const QString &target, const QByteArray &message) {
88   QByteArray ctcp;
89   
90   //lowlevel message dequote
91   QByteArray dequotedMessage = dequote(message);
92
93   CtcpType ctcptype = messageType == Message::Notice
94     ? CtcpReply
95     : CtcpQuery;
96   
97   quint8 flags = (messageType == Message::Notice && !network()->isChannelName(target))
98     ? Message::Redirected
99     : Message::None;
100
101   // extract tagged / extended data
102   int xdelimPos = -1;
103   int xdelimEndPos = -1;
104   int spacePos = -1;
105   while((xdelimPos = dequotedMessage.indexOf(XDELIM)) != -1) {
106     if(xdelimPos > 0)
107       displayMsg(messageType, target, userDecode(target, dequotedMessage.left(xdelimPos)), prefix, flags);
108
109     xdelimEndPos = dequotedMessage.indexOf(XDELIM, xdelimPos + 1);
110     
111     ctcp = xdelimDequote(dequotedMessage.mid(xdelimPos + 1, xdelimEndPos - xdelimPos - 1));
112     dequotedMessage = dequotedMessage.mid(xdelimEndPos + 1);
113
114     //dispatch the ctcp command
115     QString ctcpcmd = userDecode(target, ctcp.left(spacePos));
116     QString ctcpparam = userDecode(target, ctcp.mid(spacePos + 1));
117
118     spacePos = ctcp.indexOf(' ');
119     if(spacePos != -1) {
120       ctcpcmd = userDecode(target, ctcp.left(spacePos));
121       ctcpparam = userDecode(target, ctcp.mid(spacePos + 1));
122     } else {
123       ctcpcmd = userDecode(target, ctcp);
124       ctcpparam = QString();
125     }
126
127     handle(ctcpcmd, Q_ARG(CtcpType, ctcptype), Q_ARG(QString, prefix), Q_ARG(QString, target), Q_ARG(QString, ctcpparam));
128   }
129   
130   if(!dequotedMessage.isEmpty())
131     displayMsg(messageType, target, userDecode(target, dequotedMessage), prefix, flags);
132 }
133
134 QByteArray CtcpHandler::pack(const QByteArray &ctcpTag, const QByteArray &message) {
135   return XDELIM + ctcpTag + ' ' + message + XDELIM;
136 }
137
138 // TODO handle encodings correctly!
139 void CtcpHandler::query(const QString &bufname, const QString &ctcpTag, const QString &message) {
140   QList<QByteArray> params;
141   params << serverEncode(bufname) << pack(serverEncode(ctcpTag), userEncode(bufname, message));
142   emit putCmd("PRIVMSG", params);
143 }
144
145 void CtcpHandler::reply(const QString &bufname, const QString &ctcpTag, const QString &message) {
146   QList<QByteArray> params;
147   params << serverEncode(bufname) << pack(serverEncode(ctcpTag), userEncode(bufname, message));
148   emit putCmd("NOTICE", params);
149 }
150
151 //******************************/
152 // CTCP HANDLER
153 //******************************/
154 void CtcpHandler::handleAction(CtcpType ctcptype, const QString &prefix, const QString &target, const QString &param) {
155   Q_UNUSED(ctcptype)
156   emit displayMsg(Message::Action, typeByTarget(target), target, param, prefix);
157 }
158
159 void CtcpHandler::handlePing(CtcpType ctcptype, const QString &prefix, const QString &target, const QString &param) {
160   Q_UNUSED(target)
161   if(ctcptype == CtcpQuery) {
162     reply(nickFromMask(prefix), "PING", param);
163     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Received CTCP PING request from %1").arg(prefix));
164   } else {
165     // display ping answer
166     uint now = QDateTime::currentDateTime().toTime_t();
167     uint then = QDateTime().fromTime_t(param.toInt()).toTime_t();
168     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Received CTCP PING answer from %1 with %2 seconds round trip time").arg(prefix).arg(now-then));
169   }
170 }
171
172 void CtcpHandler::handleVersion(CtcpType ctcptype, const QString &prefix, const QString &target, const QString &param) {
173   Q_UNUSED(target)
174   if(ctcptype == CtcpQuery) {
175     // FIXME use real Info about quassel :)
176     reply(nickFromMask(prefix), "VERSION", QString("Quassel IRC (v%1 build >= %2) -- http://www.quassel-irc.org")
177         .arg(Global::quasselVersion).arg(Global::quasselBuild));
178     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Received CTCP VERSION request by %1").arg(prefix));
179   } else {
180     // display Version answer
181     emit displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Received CTCP VERSION answer from %1: %2").arg(prefix).arg(param));
182   }
183 }
184
185 void CtcpHandler::defaultHandler(const QString &cmd, CtcpType ctcptype, const QString &prefix, const QString &target, const QString &param) {
186   Q_UNUSED(ctcptype);
187   Q_UNUSED(target);
188   Q_UNUSED(param);
189   emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Received unknown CTCP %1 by %2").arg(cmd).arg(prefix));
190 }
191
192