ace85f622db96d914faf59f2e54f131c6e531ae5
[quassel.git] / src / core / ircserverhandler.h
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
21 #ifndef _IRCSERVERHANDLER_H_
22 #define _IRCSERVERHANDLER_H_
23
24 #include "basichandler.h"
25
26 class IrcServerHandler : public BasicHandler {
27   Q_OBJECT
28
29 public:
30   IrcServerHandler(NetworkConnection *parent);
31   ~IrcServerHandler();
32
33   void handleServerMsg(QByteArray rawMsg);
34
35 public slots:
36   void handleJoin(QString, QList<QByteArray>);
37   void handleKick(QString, QList<QByteArray>);
38   void handleMode(QString, QList<QByteArray>);
39   void handleNick(QString, QList<QByteArray>);
40   void handleNotice(QString, QList<QByteArray>);
41   void handlePart(QString, QList<QByteArray>);
42   void handlePing(QString, QList<QByteArray>);
43   void handlePrivmsg(QString, QList<QByteArray>);
44   void handleQuit(QString, QList<QByteArray>);
45   void handleTopic(QString, QList<QByteArray>);
46
47   void handle001(QString, QList<QByteArray>);   // RPL_WELCOME
48   void handle005(QString, QList<QByteArray>);   // RPL_ISUPPORT
49   void handle301(QString, QList<QByteArray>);   // RPL_AWAY
50   void handle311(QString, QList<QByteArray>);   // RPL_WHOISUSER
51   void handle312(QString, QList<QByteArray>);   // RPL_WHOISSERVER
52   void handle313(QString, QList<QByteArray>);   // RPL_WHOISOPERATOR
53   void handle314(QString, QList<QByteArray>);   // RPL_WHOWASUSER
54   void handle315(QString, QList<QByteArray>);   // RPL_ENDOFWHO
55   void handle317(QString, QList<QByteArray>);   // RPL_WHOISIDLE
56   void handle318(QString, QList<QByteArray>);   // RPL_ENDOFWHOIS
57   void handle319(QString, QList<QByteArray>);   // RPL_WHOISCHANNELS
58   void handle331(QString, QList<QByteArray>);   // RPL_NOTOPIC
59   void handle332(QString, QList<QByteArray>);   // RPL_TOPIC
60   void handle333(QString, QList<QByteArray>);   // Topic set by...
61   void handle352(QString, QList<QByteArray>);   //  RPL_WHOREPLY
62   void handle353(QString, QList<QByteArray>);   // RPL_NAMREPLY
63   void handle369(QString, QList<QByteArray>);   // RPL_ENDOFWHOWAS
64   void handle432(QString, QList<QByteArray>);   // ERR_ERRONEUSNICKNAME
65   void handle433(QString, QList<QByteArray>);   // ERR_NICKNAMEINUSE
66
67   void defaultHandler(QString cmd, QString prefix, QList<QByteArray> params);
68
69 private:
70   void tryNextNick(const QString &errnick);
71   bool _whois;
72 };
73
74
75 #endif