Reformat ALL the source!
[quassel.git] / src / core / eventstringifier.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2012 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 EVENTSTRINGIFIER_H
22 #define EVENTSTRINGIFIER_H
23
24 #include "basichandler.h"
25 #include "ircevent.h"
26 #include "message.h"
27
28 class CoreSession;
29 class CtcpEvent;
30 class MessageEvent;
31
32 //! Generates user-visible MessageEvents from incoming IrcEvents
33
34 /* replaces the string-generating parts of the old IrcServerHandler */
35 class EventStringifier : public BasicHandler
36 {
37     Q_OBJECT
38
39 public:
40     explicit EventStringifier(CoreSession *parent);
41
42     inline CoreSession *coreSession() const { return _coreSession; }
43
44     MessageEvent *createMessageEvent(NetworkEvent *event,
45         Message::Type msgType,
46         const QString &msg,
47         const QString &sender = QString(),
48         const QString &target = QString(),
49         Message::Flags msgFlags = Message::None);
50
51     // legacy handlers
52     Q_INVOKABLE void processNetworkSplitJoin(NetworkSplitEvent *event);
53     Q_INVOKABLE void processNetworkSplitQuit(NetworkSplitEvent *event);
54
55     //! Handle generic numeric events
56     Q_INVOKABLE void processIrcEventNumeric(IrcEventNumeric *event);
57
58     Q_INVOKABLE void processIrcEventInvite(IrcEvent *event);
59     Q_INVOKABLE void processIrcEventJoin(IrcEvent *event);
60     Q_INVOKABLE void processIrcEventKick(IrcEvent *event);
61     Q_INVOKABLE void processIrcEventMode(IrcEvent *event);
62     Q_INVOKABLE void processIrcEventNick(IrcEvent *event);
63     Q_INVOKABLE void processIrcEventPart(IrcEvent *event);
64     Q_INVOKABLE void processIrcEventPong(IrcEvent *event);
65     Q_INVOKABLE void processIrcEventQuit(IrcEvent *event);
66     Q_INVOKABLE void processIrcEventTopic(IrcEvent *event);
67
68     Q_INVOKABLE void processIrcEvent005(IrcEvent *event);    // RPL_ISUPPORT
69     Q_INVOKABLE void processIrcEvent301(IrcEvent *event);    // RPL_AWAY
70     Q_INVOKABLE void processIrcEvent305(IrcEvent *event);    // RPL_UNAWAY
71     Q_INVOKABLE void processIrcEvent306(IrcEvent *event);    // RPL_NOWAWAY
72     Q_INVOKABLE void processIrcEvent311(IrcEvent *event);    // RPL_WHOISUSER
73     Q_INVOKABLE void processIrcEvent312(IrcEvent *event);    // RPL_WHOISSERVER
74     Q_INVOKABLE void processIrcEvent314(IrcEvent *event);    // RPL_WHOWASUSER
75     Q_INVOKABLE void processIrcEvent315(IrcEvent *event);    // RPL_ENDOFWHO
76     Q_INVOKABLE void processIrcEvent317(IrcEvent *event);    // RPL_WHOISIDLE
77     Q_INVOKABLE void processIrcEvent318(IrcEvent *event);    // RPL_ENDOFWHOIS
78     Q_INVOKABLE void processIrcEvent319(IrcEvent *event);    // RPL_WHOISCHANNELS
79     Q_INVOKABLE void processIrcEvent322(IrcEvent *event);    // RPL_LIST
80     Q_INVOKABLE void processIrcEvent323(IrcEvent *event);    // RPL_LISTEND
81     Q_INVOKABLE void processIrcEvent324(IrcEvent *event);    // RPL_CHANNELMODEIS
82     Q_INVOKABLE void processIrcEvent328(IrcEvent *event);    // RPL_??? (channel creation time)
83     Q_INVOKABLE void processIrcEvent329(IrcEvent *event);    // RPL_??? (channel homepage)
84     Q_INVOKABLE void processIrcEvent330(IrcEvent *event);    // RPL_WHOISACCOUNT (quakenet/snircd/undernet)
85     Q_INVOKABLE void processIrcEvent331(IrcEvent *event);    // RPL_NOTOPIC
86     Q_INVOKABLE void processIrcEvent332(IrcEvent *event);    // RPL_TOPIC
87     Q_INVOKABLE void processIrcEvent333(IrcEvent *event);    // RPL_??? (topic set by)
88     Q_INVOKABLE void processIrcEvent341(IrcEvent *event);    // RPL_INVITING
89     Q_INVOKABLE void processIrcEvent352(IrcEvent *event);    // RPL_WHOREPLY
90     Q_INVOKABLE void processIrcEvent369(IrcEvent *event);    // RPL_ENDOFWHOWAS
91     Q_INVOKABLE void processIrcEvent432(IrcEvent *event);    // ERR_ERRONEUSNICKNAME
92     Q_INVOKABLE void processIrcEvent433(IrcEvent *event);    // ERR_NICKNAMEINUSE
93     Q_INVOKABLE void processIrcEvent437(IrcEvent *event);    // ERR_UNAVAILRESOURCE
94
95     // Q_INVOKABLE void processIrcEvent(IrcEvent *event);
96
97     /* CTCP handlers */
98     Q_INVOKABLE void processCtcpEvent(CtcpEvent *event);
99
100     Q_INVOKABLE void handleCtcpAction(CtcpEvent *event);
101     Q_INVOKABLE void handleCtcpPing(CtcpEvent *event);
102     Q_INVOKABLE void defaultHandler(const QString &cmd, CtcpEvent *event);
103
104 public slots:
105     //! Creates and sends a MessageEvent
106     void displayMsg(NetworkEvent *event,
107         Message::Type msgType,
108         const QString &msg,
109         const QString &sender = QString(),
110         const QString &target = QString(),
111         Message::Flags msgFlags = Message::None);
112
113 signals:
114     void newMessageEvent(Event *event);
115
116 private:
117     bool checkParamCount(IrcEvent *event, int minParams);
118
119     CoreSession *_coreSession;
120     bool _whois;
121 };
122
123
124 #endif