]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/u_listmode.h
Construct explicit parameter type list for MODE parameters
[user/henk/code/inspircd.git] / include / u_listmode.h
index 738eddeb07ae160e093b04e608fee1b030e0cb31..88b5fb3eea17c66a4643903147af900f1a9da925 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
@@ -19,7 +19,7 @@
 inline std::string stringtime(InspIRCd* Instance)
 {
        std::ostringstream TIME;
-       TIME << Instance->Time(); 
+       TIME << Instance->Time();
        return TIME.str();
 }
 
@@ -129,7 +129,7 @@ class ListModeBase : public ModeHandler
         * specified in ListModeBase::configtag
         */
        limitlist chanlimits;
+
  public:
        /** Constructor.
         * @param Instance The creator of this class
@@ -147,7 +147,7 @@ class ListModeBase : public ModeHandler
                infokey = "listbase_mode_" + std::string(1, mode) + "_list";
        }
 
-       /** See mode.h 
+       /** See mode.h
         */
        std::pair<bool,std::string> ModeSet(User*, User*, Channel* channel, const std::string &parameter)
        {
@@ -222,7 +222,7 @@ class ListModeBase : public ModeHandler
                                        mode_junk.push_back(stackresult[j]);
                                }
 
-                               ServerInstance->SendMode(mode_junk, ServerInstance->FakeClient);                
+                               ServerInstance->SendMode(mode_junk, ServerInstance->FakeClient);
                        }
                }
        }
@@ -299,7 +299,7 @@ class ListModeBase : public ModeHandler
                                {
                                        /* Give a subclass a chance to error about this */
                                        TellAlreadyOnList(source, channel, parameter);
-                                       
+
                                        // it does, deny the change
                                        return MODEACTION_DENY;
                                }
@@ -350,9 +350,9 @@ class ListModeBase : public ModeHandler
                        {
                                source->WriteNumeric(478, "%s %s %s :Channel ban/ignore list is full", source->nick.c_str(), channel->name.c_str(), parameter.c_str());
                        }
-                       
+
                        parameter = "";
-                       return MODEACTION_DENY; 
+                       return MODEACTION_DENY;
                }
                else
                {
@@ -423,18 +423,21 @@ class ListModeBase : public ModeHandler
                chan->GetExt(infokey, mlist);
                irc::modestacker modestack(ServerInstance, true);
                std::deque<std::string> stackresult;
+               std::vector<TranslateType> types;
+               types.push_back(TR_TEXT);
                if (mlist)
                {
                        for (modelist::iterator it = mlist->begin(); it != mlist->end(); it++)
                        {
                                modestack.Push(std::string(1, mode)[0], it->mask);
+                               types.push_back(this->GetTranslateType());
                        }
                }
                while (modestack.GetStackedLine(stackresult))
                {
                        irc::stringjoiner mode_join(" ", stackresult, 0, stackresult.size() - 1);
                        std::string line = mode_join.GetJoined();
-                       proto->ProtoSendMode(opaque, TYPE_CHANNEL, chan, line);
+                       proto->ProtoSendMode(opaque, TYPE_CHANNEL, chan, line, types);
                }
        }
 
@@ -445,7 +448,7 @@ class ListModeBase : public ModeHandler
        virtual void DoCleanup(int, void*)
        {
        }
-       
+
        /** Validate parameters.
         * Overridden by implementing module.
         * @param source Source user adding the parameter
@@ -457,7 +460,7 @@ class ListModeBase : public ModeHandler
        {
                return true;
        }
-       
+
        /** Tell the user the list is too long.
         * Overridden by implementing module.
         * @param source Source user adding the parameter
@@ -469,7 +472,7 @@ class ListModeBase : public ModeHandler
        {
                return false;
        }
-       
+
        /** Tell the user an item is already on the list.
         * Overridden by implementing module.
         * @param source Source user adding the parameter
@@ -479,7 +482,7 @@ class ListModeBase : public ModeHandler
        virtual void TellAlreadyOnList(User*, Channel*, std::string&)
        {
        }
-       
+
        /** Tell the user that the parameter is not in the list.
         * Overridden by implementing module.
         * @param source Source user removing the parameter
@@ -512,33 +515,44 @@ class ListModeBase : public ModeHandler
                {
                        modelist* mlist;
                        LM->chan->GetExt(GetInfoKey(), mlist);
+
                        if (mlist)
                        {
                                if (LM->user)
+                               {
                                        LM->literal = LM->user->nick + "!" + LM->user->ident + "@" + LM->user->GetIPString();
-                               
+                               }
+
                                for (modelist::iterator it = mlist->begin(); it != mlist->end(); it++)
                                {
                                        if (LM->extban && it->mask.length() > 1 && it->mask[0] == LM->extban && it->mask[1] == ':')
                                        {
-                                               static std::string ext = it->mask.substr(2);
+                                               std::string ext = it->mask.substr(2);
                                                if (LM->user)
                                                {
                                                        if (InspIRCd::Match(LM->user->GetFullRealHost(), ext) || InspIRCd::Match(LM->user->GetFullHost(), ext) || (InspIRCd::MatchCIDR(LM->literal, ext)))
+                                                       {
                                                                return it->mask.c_str();
+                                                       }
                                                }
                                                else if (InspIRCd::Match(LM->literal, ext))
+                                               {
                                                        return it->mask.c_str();
+                                               }
                                        }
                                        else
                                        {
                                                if (LM->user)
                                                {
                                                        if (InspIRCd::Match(LM->user->GetFullRealHost(), it->mask) || InspIRCd::Match(LM->user->GetFullHost(), it->mask) || (InspIRCd::MatchCIDR(LM->literal, it->mask)))
+                                                       {
                                                                return it->mask.c_str();
+                                                       }
                                                }
                                                else if (InspIRCd::Match(LM->literal, it->mask))
+                                               {
                                                        return it->mask.c_str();
+                                               }
                                        }
                                }
                        }
@@ -549,4 +563,3 @@ class ListModeBase : public ModeHandler
 };
 
 #endif
-