X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_stripcolor.cpp;h=4c5e7c0282641cc018b2176746dcfe0b60ee1774;hb=f25c4b7a2263f5f3ce9bb41ba56b43c0d3a6d124;hp=9fec3dcad9ad634271780bd1764581407e35d1ee;hpb=d185decae97752368d5cf62311cbc0d1a52aa22c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_stripcolor.cpp b/src/modules/m_stripcolor.cpp index 9fec3dcad..4c5e7c028 100644 --- a/src/modules/m_stripcolor.cpp +++ b/src/modules/m_stripcolor.cpp @@ -2,8 +2,8 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2008 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -35,28 +35,27 @@ class UserStripColor : public SimpleUserModeHandler class ModuleStripColor : public Module { bool AllowChanOps; - ChannelStripColor *csc; - UserStripColor *usc; + ChannelStripColor csc; + UserStripColor usc; public: - ModuleStripColor(InspIRCd* Me) : Module(Me) + ModuleStripColor(InspIRCd* Me) : Module(Me), csc(Me), usc(Me) { - usc = new UserStripColor(ServerInstance); - csc = new ChannelStripColor(ServerInstance); - - if (!ServerInstance->Modes->AddMode(usc) || !ServerInstance->Modes->AddMode(csc)) + if (!ServerInstance->Modes->AddMode(&usc) || !ServerInstance->Modes->AddMode(&csc)) throw ModuleException("Could not add new modes!"); - Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice }; - ServerInstance->Modules->Attach(eventlist, this, 2); + Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice, I_On005Numeric }; + ServerInstance->Modules->Attach(eventlist, this, 3); } - virtual ~ModuleStripColor() { - ServerInstance->Modes->DelMode(usc); - ServerInstance->Modes->DelMode(csc); - delete usc; - delete csc; + ServerInstance->Modes->DelMode(&usc); + ServerInstance->Modes->DelMode(&csc); + } + + virtual void On005Numeric(std::string &output) + { + ServerInstance->AddExtBanChar('S'); } virtual void ReplaceLine(std::string &sentence) @@ -68,7 +67,7 @@ class ModuleStripColor : public Module { if ((*i == 3)) seq = 1; - else if (seq && ( (*i >= '0') && (*i <= '9') || (*i == ',') ) ) + else if (seq && (( ((*i >= '0') && (*i <= '9')) || (*i == ',') ) )) { seq++; if ( (seq <= 4) && (*i == ',') ) @@ -121,7 +120,7 @@ class ModuleStripColor : public Module return 0; } - active = t->IsModeSet('S'); + active = t->IsModeSet('S') || t->GetExtBanStatus(user, 'S') < 0; } if (active) @@ -139,7 +138,7 @@ class ModuleStripColor : public Module virtual Version GetVersion() { - return Version(1, 2, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION); + return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION); } };