diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-09 13:51:33 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-09 13:51:33 +0000 |
commit | f9900a3e43840feebfb86ac3f2e6d32058dfa36a (patch) | |
tree | 23e73a7a39ea077f7c7f907f57da31e424f65e2d /src | |
parent | 6dfc98470938a932ddee0100f515658dffe94438 (diff) |
Stripcolor completed
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4214 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_stripcolor.cpp | 138 |
1 files changed, 66 insertions, 72 deletions
diff --git a/src/modules/m_stripcolor.cpp b/src/modules/m_stripcolor.cpp index 485f05c14..601500586 100644 --- a/src/modules/m_stripcolor.cpp +++ b/src/modules/m_stripcolor.cpp @@ -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 @@ -28,65 +28,65 @@ using namespace std; class ChannelStripColor : public ModeHandler { public: - StripColor() : ModeHandler('S', 0, 0, false, MODETYPE_CHANNEL, false) { } - - ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) - { - /* 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; - } - } - - return MODEACTION_DENY; - } + StripColor() : ModeHandler('S', 0, 0, false, MODETYPE_CHANNEL, false) { } + + ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) + { + /* 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; + } + } + + return MODEACTION_DENY; + } }; class UserStripColor : public ModeHandler { public: - StripColor() : ModeHandler('S', 0, 0, false, MODETYPE_USER, false) { } - - ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) - { - /* 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 - { - if (dest->IsModeSet('S')) - { - dest->SetMode('S',false); - return MODEACTION_ALLOW; - } - } - - return MODEACTION_DENY; - } + StripColor() : ModeHandler('S', 0, 0, false, MODETYPE_USER, false) { } + + ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) + { + /* 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 + { + if (dest->IsModeSet('S')) + { + dest->SetMode('S',false); + return MODEACTION_ALLOW; + } + } + + return MODEACTION_DENY; + } }; @@ -94,6 +94,8 @@ class ModuleStripColor : public Module { Server *Srv; ConfigReader *Conf, *MyConf; + ChannelStripColor *csc; + UserStripColor *usc; public: ModuleStripColor(Server* Me) @@ -101,26 +103,16 @@ class ModuleStripColor : public Module { Srv = Me; - Srv->AddExtendedMode('S',MT_CHANNEL,false,0,0); - Srv->AddExtendedMode('S',MT_CLIENT,false,0,0); - } + usc = new UserStripColor(); + csc = new ChannelStripColor(); - void Implements(char* List) - { - List[I_OnExtendedMode] = List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1; + Srv->AddMode(usc, 'S'); + Srv->AddMode(csc, 'S'); } - virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list ¶ms) + void Implements(char* List) { - // check if this is our mode character... - if (modechar == 'S') - { - return 1; - } - else - { - return 0; - } + List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1; } virtual void On005Numeric(std::string &output) @@ -130,6 +122,8 @@ class ModuleStripColor : public Module virtual ~ModuleStripColor() { + DELETE(usc); + DELETE(csc); } // ANSI colour stripping by Doc (Peter Wood) @@ -139,7 +133,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++) { |