]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/mode.h
Added Server::GetModuleName(), Module* to filename
[user/henk/code/inspircd.git] / include / mode.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #ifndef __MODE_H
18 #define __MODE_H
19
20 // include the common header files
21
22 #include <typeinfo>
23 #include <iostream>
24 #include <string>
25 #include <deque>
26 #include <sstream>
27 #include <vector>
28 #include "users.h"
29 #include "channels.h"
30 #include "ctables.h"
31
32 /**
33  * Holds the values for different type of modes
34  * that can exist, USER or CHANNEL type.
35  */
36 enum ModeType {
37         MODETYPE_USER = 0,
38         MODETYPE_CHANNEL = 1
39 };
40
41 /**
42  * Holds mode actions - modes can be allowed or denied.
43  */
44 enum ModeAction {
45         MODEACTION_DENY = 0, /* Drop the mode change, AND a parameter if its a parameterized mode */
46         MODEACTION_ALLOW = 1 /* Allow the mode */
47 };
48
49 /**
50  * Used to mask off the mode types in the mode handler
51  * array. Used in a simple two instruction hashing function
52  * "(modeletter - 65) OR mask"
53  */
54 enum ModeMasks {
55         MASK_USER = 128,        /* A user mode */
56         MASK_CHANNEL = 0        /* A channel mode */
57 };
58
59 /** Each mode is implemented by ONE ModeHandler class.
60  * You must derive ModeHandler and add the child class to
61  * the list of modes handled by the ircd, using
62  * ModeParser::AddMode. When the mode you implement is
63  * set by a user, the virtual function OnModeChange is
64  * called. If you specify a value greater than 0 for
65  * parameters_on or parameters_off, then when the mode is
66  * set or unset respectively, std::string &parameter will
67  * contain the parameter given by the user, else it will
68  * contain an empty string. You may alter this parameter
69  * string, and if you alter it to an empty string, and your
70  * mode is expected to have a parameter, then this is
71  * equivalent to returning MODEACTION_DENY.
72  */
73 class ModeHandler
74 {
75  protected:
76         /**
77          * The mode letter you're implementing.
78          */
79         char mode;
80         /**
81          * Number of parameters when being set
82          */
83         int n_params_on;
84         /**
85          * Number of parameters when being unset
86          */
87         int n_params_off;
88         /**
89          * Mode is a 'list' mode. The behaviour
90          * of your mode is now set entirely within
91          * the class as of the 1.1 api, rather than
92          * inside the mode parser as in the 1.0 api,
93          * so the only use of this value (along with
94          * IsListMode()) is for the core to determine
95          * wether your module can produce 'lists' or not
96          * (e.g. banlists, etc)
97          */
98         bool list;
99         /**
100          * The mode type, either MODETYPE_USER or
101          * MODETYPE_CHANNEL.
102          */
103         ModeType m_type;
104         /**
105          * True if the mode requires oper status
106          * to set.
107          */
108         bool oper;
109
110  public:
111         /**
112          * The constructor for ModeHandler initalizes the mode handler.
113          * The constructor of any class you derive from ModeHandler should
114          * probably call this constructor with the parameters set correctly.
115          * @param modeletter The mode letter you wish to handle
116          * @param parameters_on The number of parameters your mode takes when being set. Note that any nonzero value is treated as 1.
117          * @param parameters_off The number of parameters your mode takes when being unset. Note that any nonzero value is treated as 1.
118          * @param listmode Set to true if your mode is a listmode, e.g. it will respond to MODE #channel +modechar with a list of items
119          * @param ModeType Set this to MODETYPE_USER for a usermode, or MODETYPE_CHANNEL for a channelmode.
120          * @param operonly Set this to true if only opers should be allowed to set or unset the mode.
121          */
122         ModeHandler(char modeletter, int parameters_on, int parameters_off, bool listmode, ModeType type, bool operonly);
123         /**
124          * The default destructor does nothing
125          */
126         virtual ~ModeHandler();
127
128         /**
129          * Returns true if the mode is a list mode
130          */
131         bool IsListMode();
132         /**
133          * Returns the modes type
134          */
135         ModeType GetModeType();
136         /**
137          * Returns true if the mode can only be set/unset by an oper
138          */
139         bool NeedsOper();
140         /**
141          * Returns the number of parameters for the mode. Any non-zero
142          * value should be considered to be equivalent to one.
143          * @param adding If this is true, the number of parameters required to set the mode should be returned, otherwise the number of parameters required to unset the mode shall be returned.
144          * @return The number of parameters the mode expects
145          */
146         int GetNumParams(bool adding);
147         /**
148          * Returns the mode character this handler handles.
149          * @return The mode character
150          */
151         char GetModeChar();
152
153         /**
154          * Called when a mode change for your mode occurs.
155          * @param source Contains the user setting the mode.
156          * @param dest For usermodes, contains the destination user the mode is being set on. For channelmodes, this is an undefined value.
157          * @param channel For channel modes, contains the destination channel the modes are being set on. For usermodes, this is an undefined value.
158          * @param parameter The parameter for your mode, if you indicated that your mode requires a parameter when being set or unset. Note that
159          * if you alter this value, the new value becomes the one displayed and send out to the network, also, if you set this to an empty string
160          * but you specified your mode REQUIRES a parameter, this is equivalent to returning MODEACTION_DENY and will prevent the mode from being
161          * displayed.
162          * @param adding This value is true when the mode is being set, or false when it is being unset.
163          * @return MODEACTION_ALLOW to allow the mode, or MODEACTION_DENY to prevent the mode, also see the description of 'parameter'.
164          */
165         virtual ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding); /* Can change the mode parameter as its a ref */
166         /**
167          * If your mode is a listmode, then this method will be called for displaying an item list, e.g. on MODE #channel +modechar
168          * without any parameter or other modes in the command.
169          * @param user The user issuing the command
170          * @parameter channel The channel they're requesting an item list of (e.g. a banlist, or an exception list etc)
171          */
172         virtual void DisplayList(userrec* user, chanrec* channel);
173         /**
174          * If your mode needs special action during a server sync to determine which side wins when comparing timestamps,
175          * override this function and use it to return true or false. The default implementation just returns true if
176          * theirs < ours.
177          * @param theirs The timestamp of the remote side
178          * @param ours The timestamp of the local side
179          * @param their_param Their parameter if the mode has a parameter
180          * @param our_param Our parameter if the mode has a parameter
181          * @param channel The channel we are checking against
182          * @return True if the other side wins the merge, false if we win the merge for this mode.
183          */
184         virtual bool CheckTimeStamp(time_t theirs, time_t ours, const std::string &their_param, const std::string &our_param, chanrec* channel);
185 };
186
187 class ModeWatcher
188 {
189  protected:
190         char mode;
191         ModeType m_type;
192
193  public:
194         ModeWatcher(char modeletter, ModeType type);
195         virtual ~ModeWatcher();
196
197         char GetModeChar();
198         ModeType GetModeType();
199
200         virtual bool BeforeMode(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding, ModeType type); /* Can change the mode parameter */
201         virtual void AfterMode(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter, bool adding, ModeType type);
202 };
203
204 typedef std::vector<ModeWatcher*>::iterator ModeWatchIter;
205
206 class ModeParser
207 {
208  private:
209         /**
210          * Mode handlers for each mode, to access a handler subtract
211          * 65 from the ascii value of the mode letter.
212          * The upper bit of the value indicates if its a usermode
213          * or a channel mode, so we have 256 of them not 64.
214          */
215         ModeHandler* modehandlers[256];
216         /**
217          * Mode watcher classes arranged in the same way as the
218          * mode handlers, except for instead of having 256 of them
219          * we have 256 lists of them.
220          */
221         std::vector<ModeWatcher*> modewatchers[256];
222
223         void DisplayCurrentModes(userrec *user, userrec* targetuser, chanrec* targetchannel, const char* text);
224
225  public:
226
227         ModeParser();
228
229         static userrec* SanityChecks(userrec *user,const char *dest,chanrec *chan,int status);
230         static const char* Grant(userrec *d,chanrec *chan,int MASK);
231         static const char* Revoke(userrec *d,chanrec *chan,int MASK);
232         static void CleanMask(std::string &mask);
233         static void BuildModeString(userrec* user);
234
235         bool AddMode(ModeHandler* mh, unsigned const char modeletter);
236         void Process(char **parameters, int pcnt, userrec *user, bool servermode);
237 };
238
239 class cmd_mode : public command_t
240 {
241  public:
242         cmd_mode () : command_t("MODE",0,1) { }
243         void Handle(char **parameters, int pcnt, userrec *user);
244 };
245
246 #endif