]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_blockcaps.cpp
Add extra parameter to MySQLresult and SQLresult
[user/henk/code/inspircd.git] / src / modules / m_blockcaps.cpp
index 3db5e1ba8fa4d152659b455ed13d916cc49ffa90..a15cc67c5e215e5ae60571b1e01b7c371723c65d 100644 (file)
 
 /* $ModDesc: Provides support for channel mode +P to block all-CAPS channel messages and notices */
 
+class BlockCaps : public ModeHandler
+{
+ public:
+       BlockCaps() : ModeHandler('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)
        {
                Srv = Me;
-               Srv->AddExtendedMode('P', MT_CHANNEL, false, 0, 0);
+               bc = new BlockCaps;
+               Srv->AddMode(bc, 'P');
        }
 
        void Implements(char* List)
        {
-               List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = List[I_OnExtendedMode] = 1;
+               List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
        }
 
        virtual void On005Numeric(std::string &output)
@@ -51,7 +81,7 @@ public:
 
                        if (c->IsModeSet('P'))
                        {
-                               char* i = (char*)text.c_str();
+                               const char* i = text.c_str();
                                for (; *i; i++)
                                {
                                        if (((*i != ' ') && (*i != '\t')) && ((*i < 'A') || (*i > 'Z')))
@@ -72,22 +102,9 @@ public:
                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)
-       {
-               // check if this is our mode character...
-               if ((modechar == 'P') && (type == MT_CHANNEL))
-               {
-                       log(DEBUG,"Allowing P change");
-                       return 1;
-               }
-               else
-               {
-                       return 0;
-               }
-       }
-
        virtual ~ModuleBlockCAPS()
        {
+               DELETE(bc);
        }
        
        virtual Version GetVersion()