X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_blockcolor.cpp;h=69b0e468699d5195b44fcfaefed33b64daef15c5;hb=d556a4f8740b65e635ff7d2b976faaedbdac51d4;hp=967e8fd025d5670bee59ae503706e7f83c8babc0;hpb=7f9c6c5118261eac40d9bae22ac2c0ede670512d;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_blockcolor.cpp b/src/modules/m_blockcolor.cpp index 967e8fd02..69b0e4686 100644 --- a/src/modules/m_blockcolor.cpp +++ b/src/modules/m_blockcolor.cpp @@ -2,26 +2,19 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ -using namespace std; - -#include -#include +#include "inspircd.h" #include "users.h" #include "channels.h" #include "modules.h" -#include "inspircd.h" /* $ModDesc: Provides support for unreal-style channel mode +c */ @@ -57,15 +50,15 @@ class BlockColor : public ModeHandler class ModuleBlockColour : public Module { - + bool AllowChanOps; BlockColor *bc; public: - ModuleBlockColour(InspIRCd* Me) : Module::Module(Me) + ModuleBlockColour(InspIRCd* Me) : Module(Me) { - bc = new BlockColor(ServerInstance); - ServerInstance->AddMode(bc, 'c'); + if (!ServerInstance->AddMode(bc, 'c')) + throw ModuleException("Could not add new modes!"); } void Implements(char* List) @@ -73,28 +66,31 @@ class ModuleBlockColour : public Module List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1; } - virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status) + + virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list) { - if (target_type == TYPE_CHANNEL) + if ((target_type == TYPE_CHANNEL) && (IS_LOCAL(user))) { chanrec* c = (chanrec*)dest; if(c->IsModeSet('c')) { - /* Replace a strlcpy(), which ran even when +c wasn't set, with this (no copies at all) -- Om */ - for (std::string::iterator i = text.begin(); i != text.end(); i++) + if (!CHANOPS_EXEMPT(ServerInstance, 'c') || CHANOPS_EXEMPT(ServerInstance, 'c') && c->GetStatus(user) != STATUS_OP) { - switch (*i) + for (std::string::iterator i = text.begin(); i != text.end(); i++) { - case 2: - case 3: - case 15: - case 21: - case 22: - case 31: - user->WriteServ("404 %s %s :Can't send colours to channel (+c set)",user->nick, c->name); - return 1; - break; + switch (*i) + { + case 2: + case 3: + case 15: + case 21: + case 22: + case 31: + user->WriteServ("404 %s %s :Can't send colours to channel (+c set)",user->nick, c->name); + return 1; + break; + } } } } @@ -102,9 +98,9 @@ class ModuleBlockColour : public Module return 0; } - virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status) + virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list) { - return OnUserPreMessage(user,dest,target_type,text,status); + return OnUserPreMessage(user,dest,target_type,text,status,exempt_list); } virtual ~ModuleBlockColour() @@ -119,27 +115,4 @@ class ModuleBlockColour : public Module } }; - -class ModuleBlockColourFactory : public ModuleFactory -{ - public: - ModuleBlockColourFactory() - { - } - - ~ModuleBlockColourFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleBlockColour(Me); - } - -}; - - -extern "C" void * init_module( void ) -{ - return new ModuleBlockColourFactory; -} +MODULE_INIT(ModuleBlockColour)