]> 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 ec7a57720b8871638f0f0bc16697b4209eab1b82..dd5e3caf07feef4ab5ea31c42a457bda8c82a749 100644 (file)
@@ -2,10 +2,10 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  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
  * ---------------------------------------------------
  */
 
-#include <stdio.h>
-#include <string>
+using namespace std;
+
 #include "users.h"
 #include "channels.h"
 #include "modules.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()
+       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 = new Server;
+               /* Only opers can change other users modes */
+               if ((source != dest) && (!*source->oper))
+                       return MODEACTION_DENY;
+
+               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;
+                       }
+               }
 
-               Srv->AddExtendedMode('S',MT_CHANNEL,false,0,0);
-               Srv->AddExtendedMode('S',MT_CLIENT,false,0,0);
+               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 ~ModuleStripColor()
        {
-               delete Srv;
+               DELETE(usc);
+               DELETE(csc);
        }
        
        // ANSI colour stripping by Doc (Peter Wood)
@@ -59,9 +124,9 @@ class ModuleStripColor : public Module
        {
                int i, a, len, remove;
                char sentence[MAXBUF];
-               strncpy(sentence,text.c_str(),MAXBUF);
+               strlcpy(sentence,text.c_str(),MAXBUF);
   
-               len = strlen (sentence);
+               len = text.length();
 
                for (i = 0; i < len; i++)
                {
@@ -80,23 +145,24 @@ class ModuleStripColor : public Module
                                case 3:
                                        remove = 1;
 
-                                       if (isdigit (sentence[i + remove]))
+                                       if (isdigit(sentence[i + remove]))
                                                remove++;
 
-                                       if (isdigit (sentence[i + remove]))
+                                       if (isdigit(sentence[i + remove]))
                                                remove++;
 
                                        if (sentence[i + remove] == ',')
                                        {
                                                remove += 2;
 
-                                               if (isdigit (sentence[i + remove]))
-                                               remove++;
+                                               if (isdigit(sentence[i + remove]))
+                                                       remove++;
                                        }
                                break;
                        }
 
-                       if (remove != 0) {
+                       if (remove != 0)
+                       {
                                len -= remove;
 
                                for (a = i; a <= len; a++)
@@ -108,18 +174,18 @@ class ModuleStripColor : public Module
                text = sentence;
        }
        
-       virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text)
+       virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status)
        {
                bool active = false;
                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)
                {
                        chanrec* t = (chanrec*)dest;
-                       active = (t->IsCustomModeSet('S'));
+                       active = (t->IsModeSet('S'));
                }
                if (active)
                {
@@ -128,30 +194,15 @@ class ModuleStripColor : public Module
                return 0;
        }
        
-       virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text)
+       virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status)
        {
-               bool active = false;
-               if (target_type == TYPE_USER)
-               {
-                       userrec* t = (userrec*)dest;
-                       active = (strchr(t->modes,'S') > 0);
-               }
-               else if (target_type == TYPE_CHANNEL)
-               {
-                       chanrec* t = (chanrec*)dest;
-                       active = (t->IsCustomModeSet('S'));
-               }
-               if (active)
-               {
-                       this->ReplaceLine(text);
-               }
-               return 0;
+               return OnUserPreMessage(user,dest,target_type,text,status);
        }
        
        virtual Version GetVersion()
        {
                // This is version 2 because version 1.x is the unreleased unrealircd module
-               return Version(1,0,0,0);
+               return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
        }
        
 };
@@ -169,9 +220,9 @@ class ModuleStripColorFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule()
+       virtual Module * CreateModule(InspIRCd* Me)
        {
-               return new ModuleStripColor;
+               return new ModuleStripColor(Me);
        }
        
 };