]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_banexception.cpp
Add const std::string &original_command to OnPreCommand and OnPostCommand, which...
[user/henk/code/inspircd.git] / src / modules / m_banexception.cpp
index bd549860f153cb606d56553c33be720154d5ea09..e704b0223c54101ff7e11e5f1ff81b3b240e15c7 100644 (file)
@@ -5,7 +5,7 @@
 #include "channels.h"
 #include "modules.h"
 #include "mode.h"
-#include "helperfuncs.h"
+
 #include "inspircd.h"
 #include "u_listmode.h"
 
 // The +e channel mode takes a nick!ident@host, glob patterns allowed,
 // and if a user matches an entry on the +e list then they can join the channel, overriding any (+b) bans set on them
 
+
+/** Handles +e channel mode
+ */
 class BanException : public ListModeBase
 {
  public:
-       BanException(Server* serv) : ListModeBase(serv, 'e', "End of Channel Exception List", "348", "349", true) { }
+       BanException(InspIRCd* Instance) : ListModeBase(Instance, 'e', "End of Channel Exception List", "348", "349", true) { }
 };
 
 
 class ModuleBanException : public Module
 {
        BanException* be;
-       Server* Srv;
+       
 
 public:
-       ModuleBanException(Server* serv)
-       : Module::Module(serv)
+       ModuleBanException(InspIRCd* Me)
+       : Module::Module(Me)
        {
-               be = new BanException(serv);
-               Srv = serv;
-               Srv->AddMode(be, 'e');
+               be = new BanException(ServerInstance);
+               ServerInstance->AddMode(be, 'e');
        }
        
        virtual void Implements(char* List)
@@ -48,7 +50,6 @@ public:
        virtual void On005Numeric(std::string &output)
        {
                output.append(" EXCEPTS=e");
-               InsertMode(output, "e", 1);
        }
 
        virtual int OnCheckBan(userrec* user, chanrec* chan)
@@ -61,7 +62,7 @@ public:
                        if(list)
                        {
                                for (modelist::iterator it = list->begin(); it != list->end(); it++)
-                                       if(Srv->MatchText(user->GetFullRealHost(), it->mask) || Srv->MatchText(user->GetFullHost(), it->mask))
+                                       if(ServerInstance->MatchText(user->GetFullRealHost(), it->mask) || ServerInstance->MatchText(user->GetFullHost(), it->mask))
                                                // They match an entry on the list, so let them in.
                                                return 1;
                                return 0;
@@ -93,11 +94,12 @@ public:
        
        virtual Version GetVersion()
        {
-               return Version(1, 0, 0, 3, VF_STATIC | VF_VENDOR);
+               return Version(1, 0, 0, 3, VF_COMMON | VF_VENDOR);
        }
        
        virtual ~ModuleBanException()
        {
+               ServerInstance->Modes->DelMode(be);
                DELETE(be);     
        }
 };
@@ -113,11 +115,10 @@ class ModuleBanExceptionFactory : public ModuleFactory
        {
        }
        
-       virtual Module* CreateModule(Server* serv)
+       virtual Module* CreateModule(InspIRCd* Me)
        {
-               return new ModuleBanException(serv);
+               return new ModuleBanException(Me);
        }
-       
 };