]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_stripcolor.cpp
Remove On005Numeric event from a ton of modules which no longer need it (as CHANMODES...
[user/henk/code/inspircd.git] / src / modules / m_stripcolor.cpp
index 22b1cf7e8d1646f2bfb8947edcf6d223c3025f4e..dd5e3caf07feef4ab5ea31c42a457bda8c82a749 100644 (file)
@@ -5,7 +5,7 @@
  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
+ *                <Craig@chatspike.net>
  *     
  * Written by Craig Edwards, Craig McLure, and others.
  * This program is free but copyrighted software; see
 
 using namespace std;
 
-#include <stdio.h>
-#include <string>
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+#include "inspircd.h"
 
 /* $ModDesc: Provides channel +S mode (strip ansi colour) */
 
-class ModuleStripColor : public Module
+class ChannelStripColor : public ModeHandler
 {
- Server *Srv;
- ConfigReader *Conf, *MyConf;
  public:
-       ModuleStripColor(Server* Me)
-               : Module::Module(Me)
+       ChannelStripColor(InspIRCd* Instance) : ModeHandler(Instance, 'S', 0, 0, false, MODETYPE_CHANNEL, false) { }
+
+       ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
        {
-               Srv = Me;
+               /* Only opers can change other users modes */
+               if ((source != dest) && (!*source->oper))
+                       return MODEACTION_DENY;
 
-               Srv->AddExtendedMode('S',MT_CHANNEL,false,0,0);
-               Srv->AddExtendedMode('S',MT_CLIENT,false,0,0);
-       }
+               if (adding)
+               {
+                       if (!channel->IsModeSet('S'))
+                       {
+                               channel->SetMode('S',true);
+                               return MODEACTION_ALLOW;
+                       }
+               }
+               else
+               {
+                       if (channel->IsModeSet('S'))
+                       {
+                               channel->SetMode('S',false);
+                               return MODEACTION_ALLOW;
+                       }
+               }
 
-       void Implements(char* List)
-       {
-               List[I_OnExtendedMode] = List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
+               return MODEACTION_DENY;
        }
+};
 
-       virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params)
+class UserStripColor : public ModeHandler
+{
+ public:
+       UserStripColor(InspIRCd* Instance) : ModeHandler(Instance, 'S', 0, 0, false, MODETYPE_USER, false) { }
+
+       ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
        {
-               // check if this is our mode character...
-               if (modechar == 'S')
-               {
-                       return 1;
+               /* Only opers can change other users modes */
+               if ((source != dest) && (!*source->oper))
+                       return MODEACTION_DENY;
+
+               if (adding)
+               {
+                       if (!dest->IsModeSet('S'))
+                       {
+                               dest->SetMode('S',true);
+                               return MODEACTION_ALLOW;
+                       }
                }
                else
                {
-                       return 0;
+                       if (dest->IsModeSet('S'))
+                       {
+                               dest->SetMode('S',false);
+                               return MODEACTION_ALLOW;
+                       }
                }
+
+               return MODEACTION_DENY;
+       }
+};
+
+
+class ModuleStripColor : public Module
+{
+ ConfigReader *Conf, *MyConf;
+ ChannelStripColor *csc;
+ UserStripColor *usc;
+ public:
+       ModuleStripColor(InspIRCd* Me)
+               : Module::Module(Me)
+       {
+               
+
+               usc = new UserStripColor(ServerInstance);
+               csc = new ChannelStripColor(ServerInstance);
+
+               ServerInstance->AddMode(usc, 'S');
+               ServerInstance->AddMode(csc, 'S');
+       }
+
+       void Implements(char* List)
+       {
+               List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
        }
 
-        virtual void On005Numeric(std::string &output)
-        {
-               InsertMode(output,"S",4);
-        }
-       
        virtual ~ModuleStripColor()
        {
+               DELETE(usc);
+               DELETE(csc);
        }
        
        // ANSI colour stripping by Doc (Peter Wood)
@@ -74,7 +126,7 @@ class ModuleStripColor : public Module
                char sentence[MAXBUF];
                strlcpy(sentence,text.c_str(),MAXBUF);
   
-               len = strlen(sentence);
+               len = text.length();
 
                for (i = 0; i < len; i++)
                {
@@ -128,7 +180,7 @@ class ModuleStripColor : public Module
                if (target_type == TYPE_USER)
                {
                        userrec* t = (userrec*)dest;
-                       active = (strchr(t->modes,'S') > 0);
+                       active = t->modes['S'-65];
                }
                else if (target_type == TYPE_CHANNEL)
                {
@@ -168,7 +220,7 @@ class ModuleStripColorFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleStripColor(Me);
        }