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