]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/u_listmode.h
banexception, chanfilter and inviteexception should now be unloadable :)
[user/henk/code/inspircd.git] / include / u_listmode.h
index ed27d15ea469e0358b285e7346c6b4f7eef38f89..ff62f2089f798e6a53eaded1f04c4d328319a94d 100644 (file)
@@ -8,7 +8,7 @@
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+
 #include "wildcard.h"
 #include "inspircd.h"
 
@@ -65,25 +65,22 @@ class ListModeBase : public ModeHandler
                infokey = "exceptionbase_mode_" + std::string(1, mode) + "_list";
        }
 
-        std::pair<bool,std::string> ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter)
-        {
-               log(DEBUG,"ListMode: ModeSet()");
+       std::pair<bool,std::string> ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter)
+       {
                modelist* el;
                channel->GetExt(infokey, el);
                if (el)
                {
-                       for (modelist::iterator it = el->begin(); it != el->end(); it++)
-                       {
-                               if(parameter == it->mask)
-                               {
-                                       log(DEBUG,"Found item %s",parameter.c_str());
+                       for (modelist::iterator it = el->begin(); it != el->end(); it++)
+                       {
+                               if(parameter == it->mask)
+                               {
                                        return std::make_pair(true, parameter);
                                }
-                       }
+                       }
                }
-               log(DEBUG,"Didnt find item %s",parameter.c_str());
                return std::make_pair(false, parameter);
-        }
+       }
 
        virtual void DisplayList(userrec* user, chanrec* channel)
        {
@@ -99,6 +96,30 @@ class ListModeBase : public ModeHandler
                user->WriteServ( "%s %s %s %s", endoflistnumeric.c_str(), user->nick, channel->name, endofliststring.c_str());
        }
 
+       virtual void RemoveMode(chanrec* channel)
+       {
+               modelist* el;
+               channel->GetExt(infokey, el);
+               if (el)
+               {
+                       char moderemove[MAXBUF];
+                       userrec* n = new userrec(ServerInstance);
+                       n->SetFd(FD_MAGIC_NUMBER);
+                       for(modelist::iterator it = el->begin(); it != el->end(); it++)
+                       {
+                               sprintf(moderemove,"-%c",this->GetModeChar());
+                               const char* parameters[] = { channel->name, moderemove, it->mask.c_str() };
+                               ServerInstance->SendMode(parameters, 3, n);
+                       }
+                       delete n;
+               }
+       }
+
+       virtual void RemoveMode(userrec* user)
+       {
+               /* Listmodes dont get set on users */
+       }
+
        virtual void DoRehash()
        {
                ConfigReader Conf(ServerInstance);
@@ -113,14 +134,7 @@ class ListModeBase : public ModeHandler
                        limit.limit = Conf.ReadInteger(configtag, "limit", i, true);
 
                        if(limit.mask.size() && limit.limit > 0)
-                       {
                                chanlimits.push_back(limit);
-                               log(DEBUG, "Read channel listmode limit of %u for mask '%s'", limit.limit, limit.mask.c_str());
-                       }
-                       else
-                       {
-                               log(DEBUG, "Invalid tag");
-                       }
                }
                if(chanlimits.size() == 0)
                {