]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/mode.h
Move GetPrefixChar() from Channel to Membership
[user/henk/code/inspircd.git] / include / mode.h
index 18fed8b0ab86bec9f897b790ff0b8e28b922c478..568c550380335f67defa492880cdcb167c21d7ef 100644 (file)
@@ -84,6 +84,9 @@ enum ParamSpec
        PARAM_ALWAYS
 };
 
+class PrefixMode;
+class ListModeBase;
+
 /** Each mode is implemented by ONE ModeHandler class.
  * You must derive ModeHandler and add the child class to
  * the list of modes handled by the ircd, using
@@ -103,16 +106,11 @@ class CoreExport ModeHandler : public ServiceProvider
  public:
        enum Class
        {
+               MC_PREFIX,
+               MC_LIST,
                MC_OTHER
        };
 
-       /**
-        * Removes this prefix mode from all users on the given channel
-        * @param channel The channel which the server wants to remove your mode from
-        * @param stack The mode stack to add the mode change to
-        */
-       void RemovePrefixMode(Channel* chan, irc::modestacker& stack);
-
  protected:
        /**
         * The mode parameter translation type
@@ -128,10 +126,6 @@ class CoreExport ModeHandler : public ServiceProvider
         */
        char mode;
 
-       /** Mode prefix, or 0
-        */
-       char prefix;
-
        /**
         * True if the mode requires oper status
         * to set.
@@ -165,11 +159,6 @@ class CoreExport ModeHandler : public ServiceProvider
         */
        int levelrequired;
 
-       /** The prefix rank of this mode, used to compare prefix
-        * modes
-        */
-       unsigned int prefixrank;
-
  public:
        /**
         * The constructor for ModeHandler initalizes the mode handler.
@@ -189,20 +178,19 @@ class CoreExport ModeHandler : public ServiceProvider
         * Returns true if the mode is a list mode
         */
        bool IsListMode() const { return list; }
+
        /**
-        * Mode prefix or 0. If this is defined, you should
-        * also implement GetPrefixRank() to return an integer
-        * value for this mode prefix.
+        * Check whether this mode is a prefix mode
+        * @return non-NULL if this mode is a prefix mode, NULL otherwise
         */
-       inline char GetPrefix() const { return prefix; }
+       PrefixMode* IsPrefixMode();
+
        /**
-        * Get the 'value' of this modes prefix.
-        * determines which to display when there are multiple.
-        * The mode with the highest value is ranked first. See the
-        * PrefixModeValue enum and Channel::GetPrefixValue() for
-        * more information.
+        * Check whether this mode handler inherits from ListModeBase
+        * @return non-NULL if this mode handler inherits from ListModeBase, NULL otherwise
         */
-       unsigned int GetPrefixRank() const { return prefixrank; }
+       ListModeBase* IsListModeBase();
+
        /**
         * Returns the mode's type
         */
@@ -312,6 +300,81 @@ class CoreExport ModeHandler : public ServiceProvider
        inline unsigned int GetLevelRequired() const { return levelrequired; }
 };
 
+/**
+ * Prefix modes are channel modes that grant a specific rank to members having prefix mode set.
+ * They require a parameter when setting and unsetting; the parameter is always a member of the channel.
+ * A prefix mode may be set on any number of members on a channel, but for a given member a given prefix
+ * mode is either set or not set, in other words members cannot have the same prefix mode set more than once.
+ *
+ * A rank of a member is defined as the rank given by the 'strongest' prefix mode that member has.
+ * Other parts of the IRCd use this rank to determine whether a channel action is allowable for a user or not.
+ * The rank of a prefix mode is constant, i.e. the same rank value is given to all users having that prefix mode set.
+ *
+ * Note that it is possible that the same action requires a different rank on a different channel;
+ * for example changing the topic on a channel having +t set requires a rank that is >= than the rank of a halfop,
+ * but there is no such restriction when +t isn't set.
+ */
+class CoreExport PrefixMode : public ModeHandler
+{
+ protected:
+       /** The prefix character granted by this mode. '@' for op, '+' for voice, etc.
+        * If 0, this mode does not have a visible prefix character.
+        */
+       char prefix;
+
+       /** The prefix rank of this mode, used to compare prefix
+        * modes
+        */
+       unsigned int prefixrank;
+
+ public:
+       /**
+        * Constructor
+        * @param Creator The module creating this mode
+        * @param Name The user-friendly one word name of the prefix mode, e.g.: "op", "voice"
+        * @param ModeLetter The mode letter of this mode
+        */
+       PrefixMode(Module* Creator, const std::string& Name, char ModeLetter);
+
+       /**
+        * Handles setting and unsetting the prefix mode.
+        * Finds the given member of the given channel, if it's not found an error message is sent to 'source'
+        * and MODEACTION_DENY is returned. Otherwise the mode change is attempted.
+        * @param source Source of the mode change, an error message is sent to this user if the target is not found
+        * @param dest Unused
+        * @param channel The channel the mode change is happening on
+        * @param param The nickname or uuid of the target user
+        * @param adding True when the mode is being set, false when it is being unset
+        * @return MODEACTION_ALLOW if the change happened, MODEACTION_DENY if no change happened
+        * The latter occurs either when the member cannot be found or when the member already has this prefix set
+        * (when setting) or doesn't have this prefix set (when unsetting).
+        */
+       ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string& param, bool adding);
+
+       /**
+        * Removes this prefix mode from all users on the given channel
+        * @param chan The channel which the server wants to remove your mode from
+        * @param stack The mode stack to add the mode change to
+        */
+       void RemoveMode(Channel* chan, irc::modestacker& stack);
+
+       /**
+        * Mode prefix or 0. If this is defined, you should
+        * also implement GetPrefixRank() to return an integer
+        * value for this mode prefix.
+        */
+       char GetPrefix() const { return prefix; }
+
+       /**
+        * Get the 'value' of this modes prefix.
+        * determines which to display when there are multiple.
+        * The mode with the highest value is ranked first. See the
+        * PrefixModeValue enum and Channel::GetPrefixValue() for
+        * more information.
+        */
+       unsigned int GetPrefixRank() const { return prefixrank; }
+};
+
 /** A prebuilt mode handler which handles a simple user mode, e.g. no parameters, usable by any user, with no extra
  * behaviour to the mode beyond the basic setting and unsetting of the mode, not allowing the mode to be set if it
  * is already set and not allowing it to be unset if it is already unset.
@@ -322,7 +385,6 @@ class CoreExport SimpleUserModeHandler : public ModeHandler
  public:
        SimpleUserModeHandler(Module* Creator, const std::string& Name, char modeletter)
                : ModeHandler(Creator, Name, modeletter, PARAM_NONE, MODETYPE_USER) {}
-       virtual ~SimpleUserModeHandler() {}
        virtual ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
 };
 
@@ -336,7 +398,6 @@ class CoreExport SimpleChannelModeHandler : public ModeHandler
  public:
        SimpleChannelModeHandler(Module* Creator, const std::string& Name, char modeletter)
                : ModeHandler(Creator, Name, modeletter, PARAM_NONE, MODETYPE_CHANNEL) {}
-       virtual ~SimpleChannelModeHandler() {}
        virtual ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
 };
 
@@ -434,6 +495,19 @@ class CoreExport ModeParser
         */
        ModeHandler* modehandlers[256];
 
+       /** Lists of mode handlers by type
+        */
+       struct
+       {
+               /** List of mode handlers that inherit from ListModeBase
+                */
+               std::vector<ListModeBase*> list;
+
+               /** List of mode handlers that inherit from PrefixMode
+                */
+               std::vector<PrefixMode*> prefix;
+       } mhlist;
+
        /** Mode watcher classes
         */
        std::multimap<std::string, ModeWatcher*> modewatchermap;
@@ -482,6 +556,9 @@ class CoreExport ModeParser
        std::string Cached004ModeList;
 
  public:
+       typedef std::vector<ListModeBase*> ListModeList;
+       typedef std::vector<PrefixMode*> PrefixModeList;
+
        typedef unsigned int ModeProcessFlag;
        enum ModeProcessFlags
        {
@@ -580,12 +657,18 @@ class CoreExport ModeParser
         */
        ModeHandler* FindMode(unsigned const char modeletter, ModeType mt);
 
+       /** Find the mode handler for the given prefix mode
+        * @param modeletter The mode letter to search for
+        * @return A pointer to the PrefixMode or NULL if the mode wasn't found or it isn't a prefix mode
+        */
+       PrefixMode* FindPrefixMode(unsigned char modeletter);
+
        /** Find a mode handler by its prefix.
         * If there is no mode handler with the given prefix, NULL will be returned.
         * @param pfxletter The prefix to find, e.g. '@'
         * @return The mode handler which handles this prefix, or NULL if there is none.
         */
-       ModeHandler* FindPrefix(unsigned const char pfxletter);
+       PrefixMode* FindPrefix(unsigned const char pfxletter);
 
        /** Returns a list of modes, space seperated by type:
         * 1. User modes
@@ -607,9 +690,29 @@ class CoreExport ModeParser
         * just the "@%+" part if the parameter false
         */
        std::string BuildPrefixes(bool lettersAndModes = true);
+
+       /** Get a list of all mode handlers that inherit from ListModeBase
+        * @return A list containing ListModeBase modes
+        */
+       const ListModeList& GetListModes() const { return mhlist.list; }
+
+       /** Get a list of all prefix modes
+        * @return A list containing all prefix modes
+        */
+       const PrefixModeList& GetPrefixModes() const { return mhlist.prefix; }
 };
 
 inline const std::string& ModeParser::GetModeListFor004Numeric()
 {
        return Cached004ModeList;
 }
+
+inline PrefixMode* ModeHandler::IsPrefixMode()
+{
+       return (this->type_id == MC_PREFIX ? static_cast<PrefixMode*>(this) : NULL);
+}
+
+inline ListModeBase* ModeHandler::IsListModeBase()
+{
+       return (this->type_id == MC_LIST ? reinterpret_cast<ListModeBase*>(this) : NULL);
+}