X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_blockcolor.cpp;h=bcc6f93b56c2e2404e6e2e2bbd62b31817f48fa1;hb=be609949e3ec2543d6cb16d23240870028732f36;hp=a6a255e23f093ff7e0046dda74ad0e9ce2285dfa;hpb=638381c529a2f19c699718234d689e54ad459c97;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_blockcolor.cpp b/src/modules/m_blockcolor.cpp index a6a255e23..bcc6f93b5 100644 --- a/src/modules/m_blockcolor.cpp +++ b/src/modules/m_blockcolor.cpp @@ -17,50 +17,31 @@ /** Handles the +c channel mode */ -class BlockColor : public ModeHandler +class BlockColor : public SimpleChannelModeHandler { public: - BlockColor(InspIRCd* Instance) : ModeHandler(Instance, 'c', 0, 0, false, MODETYPE_CHANNEL, false) { } - - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool) - { - if (adding) - { - if (!channel->IsModeSet('c')) - { - channel->SetMode('c',true); - return MODEACTION_ALLOW; - } - } - else - { - if (channel->IsModeSet('c')) - { - channel->SetMode('c',false); - return MODEACTION_ALLOW; - } - } - - return MODEACTION_DENY; - } + BlockColor(InspIRCd* Instance) : SimpleChannelModeHandler(Instance, 'c') { } }; class ModuleBlockColour : public Module { - bool AllowChanOps; + bool AllowChanOps; BlockColor *bc; public: - + ModuleBlockColour(InspIRCd* Me) : Module(Me) { bc = new BlockColor(ServerInstance); if (!ServerInstance->Modes->AddMode(bc)) 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 void On005Numeric(std::string &output) + { + ServerInstance->AddExtBanChar('c'); + } virtual int OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list) { @@ -72,8 +53,8 @@ class ModuleBlockColour : public Module { return 0; } - - if(c->IsModeSet('c')) + + if(c->IsModeSet('c') || c->IsExtBanned(user, 'c')) { for (std::string::iterator i = text.begin(); i != text.end(); i++) { @@ -85,7 +66,7 @@ class ModuleBlockColour : public Module case 21: case 22: case 31: - user->WriteNumeric(404, "%s %s :Can't send colours to channel (+c set)",user->nick, c->name); + user->WriteNumeric(404, "%s %s :Can't send colours to channel (+c set)",user->nick.c_str(), c->name.c_str()); return 1; break; } @@ -94,7 +75,7 @@ class ModuleBlockColour : public Module } return 0; } - + virtual int OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list) { return OnUserPreMessage(user,dest,target_type,text,status,exempt_list); @@ -105,10 +86,10 @@ class ModuleBlockColour : public Module ServerInstance->Modes->DelMode(bc); delete bc; } - + virtual Version GetVersion() { - return Version(1,2,0,0,VF_COMMON|VF_VENDOR,API_VERSION); + return Version("$Id$",VF_COMMON|VF_VENDOR,API_VERSION); } };