]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/mode.h
Add ParamChannelModeHandler
[user/henk/code/inspircd.git] / include / mode.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __MODE_H
15 #define __MODE_H
16
17 #include "ctables.h"
18
19 /**
20  * Holds the values for different type of modes
21  * that can exist, USER or CHANNEL type.
22  */
23 enum ModeType
24 {
25         /** User mode */
26         MODETYPE_USER = 0,
27         /** Channel mode */
28         MODETYPE_CHANNEL = 1
29 };
30
31 /**
32  * Holds mode actions - modes can be allowed or denied.
33  */
34 enum ModeAction
35 {
36         MODEACTION_DENY = 0, /* Drop the mode change, AND a parameter if its a parameterized mode */
37         MODEACTION_ALLOW = 1 /* Allow the mode */
38 };
39
40 /**
41  * Used to mask off the mode types in the mode handler
42  * array. Used in a simple two instruction hashing function
43  * "(modeletter - 65) OR mask"
44  */
45 enum ModeMasks
46 {
47         MASK_USER = 128,        /* A user mode */
48         MASK_CHANNEL = 0        /* A channel mode */
49 };
50
51 /**
52  * These fixed values can be used to proportionally compare module-defined prefixes to known values.
53  * For example, if your module queries a Channel, and is told that user 'joebloggs' has the prefix
54  * '$', and you dont know what $ means, then you can compare it to these three values to determine
55  * its worth against them. For example if '$' had a value of 15000, you would know it is of higher
56  * status than voice, but lower status than halfop.
57  * No two modes should have equal prefix values.
58  */
59 enum PrefixModeValue
60 {
61         /* +v */
62         VOICE_VALUE     =       10000,
63         /* +h */
64         HALFOP_VALUE    =       20000,
65         /* +o */
66         OP_VALUE        =       30000
67 };
68
69 enum ParamSpec
70 {
71         /** No parameters */
72         PARAM_NONE,
73         /** Parameter required on mode setting only */
74         PARAM_SETONLY,
75         /** Parameter always required */
76         PARAM_ALWAYS
77 };
78
79 /** Each mode is implemented by ONE ModeHandler class.
80  * You must derive ModeHandler and add the child class to
81  * the list of modes handled by the ircd, using
82  * ModeParser::AddMode. When the mode you implement is
83  * set by a user, the virtual function OnModeChange is
84  * called. If you specify a value greater than 0 for
85  * parameters_on or parameters_off, then when the mode is
86  * set or unset respectively, std::string &parameter will
87  * contain the parameter given by the user, else it will
88  * contain an empty string. You may alter this parameter
89  * string, and if you alter it to an empty string, and your
90  * mode is expected to have a parameter, then this is
91  * equivalent to returning MODEACTION_DENY.
92  */
93 class CoreExport ModeHandler : public classbase
94 {
95  protected:
96         /**
97          * The mode parameter translation type
98          */
99         TranslateType m_paramtype;
100
101         /** What kind of parameters does the mode take?
102          */
103         ParamSpec parameters_taken;
104
105         /**
106          * The mode letter you're implementing.
107          */
108         char mode;
109
110         /** Mode prefix, or 0
111          */
112         char prefix;
113
114         /**
115          * True if the mode requires oper status
116          * to set.
117          */
118         bool oper;
119
120         /**
121          * Mode is a 'list' mode. The behaviour
122          * of your mode is now set entirely within
123          * the class as of the 1.1 api, rather than
124          * inside the mode parser as in the 1.0 api,
125          * so the only use of this value (along with
126          * IsListMode()) is for the core to determine
127          * wether your module can produce 'lists' or not
128          * (e.g. banlists, etc)
129          */
130         bool list;
131
132         /**
133          * The mode type, either MODETYPE_USER or
134          * MODETYPE_CHANNEL.
135          */
136         ModeType m_type;
137
138         /** Number of items with this mode set on them
139          */
140         unsigned int count;
141
142         /** The prefix char needed on channel to use this mode,
143          * only checked for channel modes
144          */
145         int levelrequired;
146
147  public:
148         /** Module that created this mode. NULL for core modes */
149         ModuleRef creator;
150         /** Long-form name
151          */
152         const std::string name;
153
154         /**
155          * The constructor for ModeHandler initalizes the mode handler.
156          * The constructor of any class you derive from ModeHandler should
157          * probably call this constructor with the parameters set correctly.
158          * @param name A one-word name for the mode
159          * @param modeletter The mode letter you wish to handle
160          * @param params Parameters taken by the mode
161          * @param type Type of the mode (MODETYPE_USER or MODETYPE_CHANNEL)
162          */
163         ModeHandler(Module* me, const std::string& name, char modeletter, ParamSpec params, ModeType type);
164         virtual CullResult cull();
165         virtual ~ModeHandler();
166         /**
167          * Returns true if the mode is a list mode
168          */
169         bool IsListMode();
170         /**
171          * Mode prefix or 0. If this is defined, you should
172          * also implement GetPrefixRank() to return an integer
173          * value for this mode prefix.
174          */
175         inline char GetPrefix() const { return prefix; }
176         /** Get number of items with this mode set on them
177          */
178         virtual unsigned int GetCount();
179         /** Adjust usage count returned by GetCount
180          */
181         virtual void ChangeCount(int modifier);
182         /**
183          * Get the 'value' of this modes prefix.
184          * determines which to display when there are multiple.
185          * The mode with the highest value is ranked first. See the
186          * PrefixModeValue enum and Channel::GetPrefixValue() for
187          * more information.
188          */
189         virtual unsigned int GetPrefixRank();
190         /**
191          * Returns the mode's type
192          */
193         inline ModeType GetModeType() const { return m_type; }
194         /**
195          * Returns the mode's parameter translation type
196          */
197         inline TranslateType GetTranslateType() const { return m_paramtype; }
198         /**
199          * Returns true if the mode can only be set/unset by an oper
200          */
201         inline bool NeedsOper() const { return oper; }
202         /**
203          * Returns the number of parameters for the mode. Any non-zero
204          * value should be considered to be equivalent to one.
205          * @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.
206          * @return The number of parameters the mode expects
207          */
208         int GetNumParams(bool adding);
209         /**
210          * Returns the mode character this handler handles.
211          * @return The mode character
212          */
213         inline char GetModeChar() { return mode; }
214
215         /** For user modes, return the current parameter, if any
216          */
217         virtual std::string GetUserParameter(User* useor);
218
219         /**
220          * Called when a channel mode change access check for your mode occurs.
221          * @param source Contains the user setting the mode.
222          * @param channel contains the destination channel the modes are being set on.
223          * @param parameter The parameter for your mode. This is modifiable.
224          * @param adding This value is true when the mode is being set, or false when it is being unset.
225          * @return allow, deny, or passthru to check against the required level
226          */
227         virtual ModResult AccessCheck(User* source, Channel* channel, std::string &parameter, bool adding);
228
229         /**
230          * Called when a mode change for your mode occurs.
231          * @param source Contains the user setting the mode.
232          * @param dest For usermodes, contains the destination user the mode is being set on. For channelmodes, this is an undefined value.
233          * @param channel For channel modes, contains the destination channel the modes are being set on. For usermodes, this is an undefined value.
234          * @param parameter The parameter for your mode, if you indicated that your mode requires a parameter when being set or unset. Note that
235          * 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
236          * but you specified your mode REQUIRES a parameter, this is equivalent to returning MODEACTION_DENY and will prevent the mode from being
237          * displayed.
238          * @param adding This value is true when the mode is being set, or false when it is being unset.
239          * @return MODEACTION_ALLOW to allow the mode, or MODEACTION_DENY to prevent the mode, also see the description of 'parameter'.
240          */
241         virtual ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding); /* Can change the mode parameter as its a ref */
242         /**
243          * If your mode is a listmode, then this method will be called for displaying an item list, e.g. on MODE #channel +modechar
244          * without any parameter or other modes in the command.
245          * @param user The user issuing the command
246          * @param channel The channel they're requesting an item list of (e.g. a banlist, or an exception list etc)
247          */
248         virtual void DisplayList(User* user, Channel* channel);
249
250         /** In the event that the mode should be given a parameter, and no parameter was provided, this method is called.
251          * This allows you to give special information to the user, or handle this any way you like.
252          * @param user The user issuing the mode change
253          * @param dest For user mode changes, the target of the mode. For channel mode changes, NULL.
254          * @param channel For channel mode changes, the target of the mode. For user mode changes, NULL.
255          */
256         virtual void OnParameterMissing(User* user, User* dest, Channel* channel);
257
258         /**
259          * If your mode is a listmode, this method will be called to display an empty list (just the end of list numeric)
260          * @param user The user issuing the command
261          * @param channel The channel tehy're requesting an item list of (e.g. a banlist, or an exception list etc)
262          */
263         virtual void DisplayEmptyList(User* user, Channel* channel);
264
265         /**
266          * If your mode needs special action during a server sync to determine which side wins when comparing timestamps,
267          * override this function and use it to return true or false. The default implementation just returns true if
268          * theirs < ours. This will only be called for non-listmodes with parameters, when adding the mode and where
269          * theirs == ours (therefore the default implementation will always return false).
270          * @param their_param Their parameter if the mode has a parameter
271          * @param our_param Our parameter if the mode has a parameter
272          * @param channel The channel we are checking against
273          * @return True if the other side wins the merge, false if we win the merge for this mode.
274          */
275         virtual bool ResolveModeConflict(std::string &their_param, const std::string &our_param, Channel* channel);
276
277         /**
278          * When a MODETYPE_USER mode handler is being removed, the server will call this method for every user on the server.
279          * Your mode handler should remove its user mode from the user by sending the appropriate server modes using
280          * InspIRCd::SendMode(). The default implementation of this method can remove simple modes which have no parameters,
281          * and can be used when your mode is of this type, otherwise you must implement a more advanced version of it to remove
282          * your mode properly from each user.
283          * @param user The user which the server wants to remove your mode from
284          */
285         virtual void RemoveMode(User* user, irc::modestacker* stack = NULL);
286
287         /**
288          * When a MODETYPE_CHANNEL mode handler is being removed, the server will call this method for every channel on the server.
289          * Your mode handler should remove its user mode from the channel by sending the appropriate server modes using
290          * InspIRCd::SendMode(). The default implementation of this method can remove simple modes which have no parameters,
291          * and can be used when your mode is of this type, otherwise you must implement a more advanced version of it to remove
292          * your mode properly from each channel. Note that in the case of listmodes, you should remove the entire list of items.
293          * @param channel The channel which the server wants to remove your mode from
294          */
295         virtual void RemoveMode(Channel* channel, irc::modestacker* stack = NULL);
296
297         inline unsigned int GetLevelRequired() const { return levelrequired; }
298 };
299
300 /** A prebuilt mode handler which handles a simple user mode, e.g. no parameters, usable by any user, with no extra
301  * behaviour to the mode beyond the basic setting and unsetting of the mode, not allowing the mode to be set if it
302  * is already set and not allowing it to be unset if it is already unset.
303  * An example of a simple user mode is user mode +w.
304  */
305 class CoreExport SimpleUserModeHandler : public ModeHandler
306 {
307  public:
308         SimpleUserModeHandler(Module* Creator, const std::string& Name, char modeletter)
309                 : ModeHandler(Creator, Name, modeletter, PARAM_NONE, MODETYPE_USER) {}
310         virtual ~SimpleUserModeHandler() {}
311         virtual ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
312 };
313
314 /** A prebuilt mode handler which handles a simple channel mode, e.g. no parameters, usable by any user, with no extra
315  * behaviour to the mode beyond the basic setting and unsetting of the mode, not allowing the mode to be set if it
316  * is already set and not allowing it to be unset if it is already unset.
317  * An example of a simple channel mode is channel mode +s.
318  */
319 class CoreExport SimpleChannelModeHandler : public ModeHandler
320 {
321  public:
322         SimpleChannelModeHandler(Module* Creator, const std::string& Name, char modeletter)
323                 : ModeHandler(Creator, Name, modeletter, PARAM_NONE, MODETYPE_CHANNEL) {}
324         virtual ~SimpleChannelModeHandler() {}
325         virtual ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
326 };
327
328 class CoreExport ParamChannelModeHandler : public ModeHandler
329 {
330  public:
331         ParamChannelModeHandler(Module* Creator, const std::string& Name, char modeletter)
332                 : ModeHandler(Creator, Name, modeletter, PARAM_SETONLY, MODETYPE_CHANNEL) {}
333         virtual ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
334         /** Validate the parameter - you may change the value to normalize it. Return true if it is valid. */
335         virtual bool ParamValidate(std::string& parameter);
336 };
337
338 /**
339  * The ModeWatcher class can be used to alter the behaviour of a mode implemented
340  * by the core or by another module. To use ModeWatcher, derive a class from it,
341  * and attach it to the mode using Server::AddModeWatcher and Server::DelModeWatcher.
342  * A ModeWatcher will be called both before and after the mode change.
343  */
344 class CoreExport ModeWatcher : public classbase
345 {
346  protected:
347         /**
348          * The mode letter this class is watching
349          */
350         char mode;
351         /**
352          * The mode type being watched (user or  channel)
353          */
354         ModeType m_type;
355
356  public:
357         ModuleRef creator;
358         /**
359          * The constructor initializes the mode and the mode type
360          */
361         ModeWatcher(Module* creator, char modeletter, ModeType type);
362         /**
363          * The default destructor does nothing.
364          */
365         virtual ~ModeWatcher();
366
367         /**
368          * Get the mode character being watched
369          * @return The mode character being watched
370          */
371         char GetModeChar();
372         /**
373          * Get the mode type being watched
374          * @return The mode type being watched (user or channel)
375          */
376         ModeType GetModeType();
377
378         /**
379          * Before the mode character is processed by its handler, this method will be called.
380          * @param source The sender of the mode
381          * @param dest The target user for the mode, if you are watching a user mode
382          * @param channel The target channel for the mode, if you are watching a channel mode
383          * @param parameter The parameter of the mode, if the mode is supposed to have a parameter.
384          * If you alter the parameter you are given, the mode handler will see your atered version
385          * when it handles the mode.
386          * @param adding True if the mode is being added and false if it is being removed
387          * @type The mode type, either MODETYPE_USER or MODETYPE_CHANNEL
388          * @return True to allow the mode change to go ahead, false to abort it. If you abort the
389          * change, the mode handler (and ModeWatcher::AfterMode()) will never see the mode change.
390          */
391         virtual bool BeforeMode(User* source, User* dest, Channel* channel, std::string &parameter, bool adding, ModeType type);
392         /**
393          * After the mode character has been processed by the ModeHandler, this method will be called.
394          * @param source The sender of the mode
395          * @param dest The target user for the mode, if you are watching a user mode
396          * @param channel The target channel for the mode, if you are watching a channel mode
397          * @param parameter The parameter of the mode, if the mode is supposed to have a parameter.
398          * You cannot alter the parameter here, as the mode handler has already processed it.
399          * @param adding True if the mode is being added and false if it is being removed
400          * @type The mode type, either MODETYPE_USER or MODETYPE_CHANNEL
401          */
402         virtual void AfterMode(User* source, User* dest, Channel* channel, const std::string &parameter, bool adding, ModeType type);
403 };
404
405 typedef std::vector<ModeWatcher*>::iterator ModeWatchIter;
406
407 /** The mode parser handles routing of modes and handling of mode strings.
408  * It marshalls, controls and maintains both ModeWatcher and ModeHandler classes,
409  * parses client to server MODE strings for user and channel modes, and performs
410  * processing for the 004 mode list numeric, amongst other things.
411  */
412 class CoreExport ModeParser
413 {
414  private:
415         /** Mode handlers for each mode, to access a handler subtract
416          * 65 from the ascii value of the mode letter.
417          * The upper bit of the value indicates if its a usermode
418          * or a channel mode, so we have 256 of them not 64.
419          */
420         ModeHandler* modehandlers[256];
421         /** Mode watcher classes arranged in the same way as the
422          * mode handlers, except for instead of having 256 of them
423          * we have 256 lists of them.
424          */
425         std::vector<ModeWatcher*> modewatchers[256];
426         /** Displays the current modes of a channel or user.
427          * Used by ModeParser::Process.
428          */
429         void DisplayCurrentModes(User *user, User* targetuser, Channel* targetchannel, const char* text);
430         /** Displays the value of a list mode
431          * Used by ModeParser::Process.
432          */
433         void DisplayListModes(User* user, Channel* chan, std::string &mode_sequence);
434
435         /**
436          * Attempts to apply a mode change to a user or channel
437          */
438         ModeAction TryMode(User* user, User* targu, Channel* targc, bool adding, unsigned char mode, std::string &param, bool SkipACL);
439
440         /** The string representing the last set of modes to be parsed.
441          * Use GetLastParse() to get this value, to be used for  display purposes.
442          */
443         std::string LastParse;
444         std::vector<std::string> LastParseParams;
445         std::vector<TranslateType> LastParseTranslate;
446
447         unsigned int sent[256];
448
449         unsigned int seq;
450
451  public:
452
453         /** The constructor initializes all the RFC basic modes by using ModeParserAddMode().
454          */
455         ModeParser();
456         ~ModeParser();
457
458         /** Used to check if user 'd' should be allowed to do operation 'MASK' on channel 'chan'.
459          * for example, should 'user A' be able to 'op' on 'channel B'.
460          */
461         User* SanityChecks(User *user,const char *dest,Channel *chan,int status);
462         /** Tidy a banmask. This makes a banmask 'acceptable' if fields are left out.
463          * E.g.
464          *
465          * nick -> nick!*@*
466          *
467          * nick!ident -> nick!ident@*
468          *
469          * host.name -> *!*@host.name
470          *
471          * ident@host.name -> *!ident@host.name
472          *
473          * This method can be used on both IPV4 and IPV6 user masks.
474          */
475         static void CleanMask(std::string &mask);
476         /** Get the last string to be processed, as it was sent to the user or channel.
477          * Use this to display a string you just sent to be parsed, as the actual output
478          * may be different to what you sent after it has been 'cleaned up' by the parser.
479          * @return Last parsed string, as seen by users.
480          */
481         const std::string& GetLastParse();
482         const std::vector<std::string>& GetLastParseParams() { return LastParseParams; }
483         const std::vector<TranslateType>& GetLastParseTranslate() { return LastParseTranslate; }
484         /** Add a mode to the mode parser.
485          * @return True if the mode was successfully added.
486          */
487         bool AddMode(ModeHandler* mh);
488         /** Delete a mode from the mode parser.
489          * When a mode is deleted, the mode handler will be called
490          * for every user (if it is a user mode) or for every  channel
491          * (if it is a channel mode) to unset the mode on all objects.
492          * This prevents modes staying in the system which no longer exist.
493          * @param mh The mode handler to remove
494          * @return True if the mode was successfully removed.
495          */
496         bool DelMode(ModeHandler* mh);
497
498         /** Add a mode watcher.
499          * A mode watcher is triggered before and after a mode handler is
500          * triggered. See the documentation of class ModeWatcher for more
501          * information.
502          * @param mw The ModeWatcher you want to add
503          * @return True if the ModeWatcher was added correctly
504          */
505         bool AddModeWatcher(ModeWatcher* mw);
506         /** Delete a mode watcher.
507          * A mode watcher is triggered before and after a mode handler is
508          * triggered. See the documentation of class ModeWatcher for more
509          * information.
510          * @param mw The ModeWatcher you want to delete
511          * @return True if the ModeWatcher was deleted correctly
512          */
513         bool DelModeWatcher(ModeWatcher* mw);
514         /** Process a set of mode changes from a server or user.
515          * @param parameters The parameters of the mode change, in the format
516          * they would be from a MODE command.
517          * @param user The user setting or removing the modes. When the modes are set
518          * by a server, an 'uninitialized' User is used, where *user::nick == NULL
519          * and *user->server == NULL.
520          */
521         void Process(const std::vector<std::string>& parameters, User *user, bool merge = false);
522
523         /** Find the mode handler for a given mode and type.
524          * @param modeletter mode letter to search for
525          * @param type of mode to search for, user or channel
526          * @returns a pointer to a ModeHandler class, or NULL of there isnt a handler for the given mode
527          */
528         ModeHandler* FindMode(unsigned const char modeletter, ModeType mt);
529
530         /** Find a mode handler by its prefix.
531          * If there is no mode handler with the given prefix, NULL will be returned.
532          * @param pfxletter The prefix to find, e.g. '@'
533          * @return The mode handler which handles this prefix, or NULL if there is none.
534          */
535         ModeHandler* FindPrefix(unsigned const char pfxletter);
536
537         /** Returns a list of mode characters which are usermodes.
538          * This is used in the 004 numeric when users connect.
539          */
540         std::string UserModeList();
541
542         /** Returns a list of channel mode characters which are listmodes.
543          * This is used in the 004 numeric when users connect.
544          */
545         std::string ChannelModeList();
546
547         /** Returns a list of channel mode characters which take parameters.
548          * This is used in the 004 numeric when users connect.
549          */
550         std::string ParaModeList();
551
552         /** Generates a list of modes, comma seperated by type:
553          *  1; Listmodes EXCEPT those with a prefix
554          *  2; Modes that take a param when adding or removing
555          *  3; Modes that only take a param when adding
556          *  4; Modes that dont take a param
557          */
558         std::string GiveModeList(ModeMasks m);
559
560         static bool PrefixComparison(ModeHandler* one, ModeHandler* two);
561
562         /** This returns the PREFIX=(ohv)@%+ section of the 005 numeric, or
563          * just the "@%+" part if the parameter false
564          */
565         std::string BuildPrefixes(bool lettersAndModes = true);
566 };
567
568 #endif