diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-05-08 17:09:07 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-05-08 17:09:07 +0000 |
commit | 5b949866d429203ae48f2088e4f97592755592c6 (patch) | |
tree | e1a8fd0b258c4798c98424bd4f578e60b81ee2fe /src/modules | |
parent | c108e40094f390070a06e0be6e2bfb704c1bb1ac (diff) |
Added m_nokicks and chanmode +Q
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@796 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_nokicks.cpp | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/src/modules/m_nokicks.cpp b/src/modules/m_nokicks.cpp new file mode 100644 index 000000000..07b26d8e7 --- /dev/null +++ b/src/modules/m_nokicks.cpp @@ -0,0 +1,79 @@ +#include <stdio.h> + +#include "users.h" +#include "channels.h" +#include "modules.h" + +/* $ModDesc: Provides support for unreal-style channel mode +Q */ + +class ModuleNoKicks : public Module +{ + Server *Srv; + bool NoisyNoKicks; + ConfigReader *Conf; + + public: + + ModuleNoKicks() + { + Srv = new Server; + Srv->AddExtendedMode('Q',MT_CHANNEL,false,0,0); + } + + virtual int OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) + { + if (access_type == AC_KICK) + { + if (channel->IsCustomModeSet('Q')) + { + if ((Srv->IsUlined(source->nick)) || (Srv->IsUlined(source->server)) || (!strcmp(source->server,""))) + { + // ulines can still kick with +Q in place + return ACR_ALLOW; + } + else + { + // nobody else can (not even opers with override, and founders) + return ACR_DENY; + } + } + } + return ACR_DEFAULT; + } + + virtual ~ModuleNoKicks() + { + delete Srv; + } + + virtual Version GetVersion() + { + return Version(1,0,0,0); + } +}; + + +class ModuleNoKicksFactory : public ModuleFactory +{ + public: + ModuleNoKicksFactory() + { + } + + ~ModuleNoKicksFactory() + { + } + + virtual Module * CreateModule() + { + return new ModuleNoKicks; + } + +}; + + +extern "C" void * init_module( void ) +{ + return new ModuleNoKicksFactory; +} + |