]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_blockcaps.cpp
Update $ModDep lines so that these properly depend on their headers in the makefile
[user/henk/code/inspircd.git] / src / modules / m_blockcaps.cpp
index b9ce41e074e2a4b7e564d086d079bdb25f164e67..830b05ae96ace029d2982c81038e20eaad637706 100644 (file)
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+#include "inspircd.h"
+#include "mode.h"
 
 /* $ModDesc: Provides support for channel mode +P to block all-CAPS channel messages and notices */
 
+
+/** Handles the +P channel mode
+ */
+class BlockCaps : public ModeHandler
+{
+ public:
+       BlockCaps(InspIRCd* Instance) : ModeHandler(Instance, 'P', 0, 0, false, MODETYPE_CHANNEL, false) { }
+
+       ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
+       {
+               if (adding)
+               {
+                       if (!channel->IsModeSet('P'))
+                       {
+                               channel->SetMode('P',true);
+                               return MODEACTION_ALLOW;
+                       }
+               }
+               else
+               {
+                       if (channel->IsModeSet('P'))
+                       {
+                               channel->SetMode('P',false);
+                               return MODEACTION_ALLOW;
+                       }
+               }
+
+               return MODEACTION_DENY;
+       }
+};
+
 class ModuleBlockCAPS : public Module
 {
-       Server *Srv;
+       
+       BlockCaps* bc;
 public:
        
-       ModuleBlockCAPS(Server* Me) : Module::Module(Me)
+       ModuleBlockCAPS(InspIRCd* Me) : Module::Module(Me)
        {
-               Srv = Me;
-               Srv->AddExtendedMode('P', MT_CHANNEL, false, 0, 0);
+               
+               bc = new BlockCaps(ServerInstance);
+               ServerInstance->AddMode(bc, 'P');
        }
 
        void Implements(char* List)
        {
-               List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = List[I_OnExtendedMode] = 1;
+               List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
        }
 
-       virtual void On005Numeric(std::string &output)
-       {
-               InsertMode(output, "P", 4);
-       }
-       
-       virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status)
+       virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
        {
                if (target_type == TYPE_CHANNEL)
                {
                        chanrec* c = (chanrec*)dest;
 
-                       if (c->IsCustomModeSet('P'))
+                       if (c->IsModeSet('P'))
                        {
-                               for(unsigned int i = 0; i < text.length(); i++)
+                               const char* i = text.c_str();
+                               for (; *i; i++)
                                {
-                                       if((text[i] < 'A') || (text[i] > 'Z'))
+                                       if (((*i != ' ') && (*i != '\t')) && ((*i < 'A') || (*i > 'Z')))
                                        {
                                                return 0;
                                        }
                                }
                                
-                               WriteServ(user->fd, "404 %s %s :Can't send all-CAPS to channel (+P set)", user->nick, c->name);
+                               user->WriteServ( "404 %s %s :Can't send all-CAPS to channel (+P set)", user->nick, c->name);
                                return 1;
                        }
                }
                return 0;
        }
-       
-       virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status)
-       {
-               return OnUserPreMessage(user,dest,target_type,text,status);
-       }
-       
-       virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params)
+
+       virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
        {
-               // check if this is our mode character...
-               if ((modechar == 'P') && (type == MT_CHANNEL))
-               {
-                       log(DEBUG,"Allowing P change");
-                       return 1;
-               }
-               else
-               {
-                       return 0;
-               }
+               return OnUserPreMessage(user,dest,target_type,text,status,exempt_list);
        }
 
        virtual ~ModuleBlockCAPS()
        {
+               ServerInstance->Modes->DelMode(bc);
+               DELETE(bc);
        }
-       
+
        virtual Version GetVersion()
        {
-               return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
+               return Version(1,1,0,0,VF_COMMON|VF_VENDOR,API_VERSION);
        }
 };
 
@@ -107,7 +125,7 @@ class ModuleBlockCAPSFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleBlockCAPS(Me);
        }