diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-08 21:12:22 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-08 21:12:22 +0000 |
commit | 5e5162341d0ce830ba66c1965c800cecaa6b02cd (patch) | |
tree | e7349f989463d86ec03eaf3b85c286269a803b4e /src/modules/m_blockcaps.cpp | |
parent | f74b9b3debdf67e4f35483b3617515e43b686ccf (diff) |
Port m_blockcaps to new api, remove OnExtendedMode and OnDisplayList events entirely
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4191 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_blockcaps.cpp')
-rw-r--r-- | src/modules/m_blockcaps.cpp | 47 |
1 files changed, 31 insertions, 16 deletions
diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp index f23726c58..8e5685398 100644 --- a/src/modules/m_blockcaps.cpp +++ b/src/modules/m_blockcaps.cpp @@ -22,20 +22,49 @@ /* $ModDesc: Provides support for channel mode +P to block all-CAPS channel messages and notices */ +class BlockCaps : public ModeHandler +{ + BlockCaps() : ModeHandler('P', 0, 0, false, MODETYPE_CHANNEL, false) { } + + ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) + { + if (adding) + { + if (!channel->IsModeSet('P')) + { + channel->SetCustomMode('P',true); + return MODEACTION_ALLOW; + } + } + else + { + if (channel->IsModeSet('P')) + { + channel->SetCustomMode('P',false); + return MODEACTION_ALLOW; + } + } + + return MODEACTION_DENY; + } +}; + class ModuleBlockCAPS : public Module { Server *Srv; + BlockCaps* bc; public: ModuleBlockCAPS(Server* Me) : Module::Module(Me) { Srv = Me; - Srv->AddExtendedMode('P', MT_CHANNEL, false, 0, 0); + bc = new BlockCaps; + Srv->AddMode(bc, 'P'); } void Implements(char* List) { - List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = List[I_OnExtendedMode] = 1; + List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1; } virtual void On005Numeric(std::string &output) @@ -72,20 +101,6 @@ public: return OnUserPreMessage(user,dest,target_type,text,status); } - virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list ¶ms) - { - // check if this is our mode character... - if ((modechar == 'P') && (type == MT_CHANNEL)) - { - log(DEBUG,"Allowing P change"); - return 1; - } - else - { - return 0; - } - } - virtual ~ModuleBlockCAPS() { } |