]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_nokicks.cpp
fix little typo in syntax hint, type => action
[user/henk/code/inspircd.git] / src / modules / m_nokicks.cpp
index 5050101e006e68f8c03ca5aae73bc55f447f3b45..5db14299bb216e859761f59ea199399ed43383da 100644 (file)
@@ -1,30 +1,53 @@
-#include <stdio.h>
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2009 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.
+ *
+ * ---------------------------------------------------
+ */
 
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
+#include "inspircd.h"
 
 /* $ModDesc: Provides support for unreal-style channel mode +Q */
 
+class NoKicks : public SimpleChannelModeHandler
+{
+ public:
+       NoKicks(InspIRCd* Instance) : SimpleChannelModeHandler(Instance, 'Q') { }
+};
+
 class ModuleNoKicks : public Module
 {
-       ConfigReader *Conf;
-       
+       NoKicks* nk;
+
  public:
-       ModuleNoKicks()
+       ModuleNoKicks(InspIRCd* Me)
+               : Module(Me)
+       {
+               nk = new NoKicks(ServerInstance);
+               if (!ServerInstance->Modes->AddMode(nk))
+                       throw ModuleException("Could not add new modes!");
+               Implementation eventlist[] = { I_OnAccessCheck, I_On005Numeric };
+               ServerInstance->Modules->Attach(eventlist, this, 2);
+       }
+
+       virtual void On005Numeric(std::string &output)
        {
-               Srv = new Server;
-               Srv->AddExtendedMode('Q',MT_CHANNEL,false,0,0);
+               ServerInstance->AddExtBanChar('Q');
        }
-       
-       virtual int OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type)
+
+       virtual int OnAccessCheck(User* source,User* dest,Channel* channel,int access_type)
        {
                if (access_type == AC_KICK)
                {
-                       if (channel->IsCustomModeSet('Q'))
+                       if (channel->IsModeSet('Q') || channel->IsExtBanned(source, 'Q'))
                        {
-                               if ((Srv->IsUlined(source->nick)) || (Srv->IsUlined(source->server)) || (!strcmp(source->server,"")))
+                               if ((ServerInstance->ULine(source->nick.c_str())) || (ServerInstance->ULine(source->server)) || (!*source->server))
                                {
                                        // ulines can still kick with +Q in place
                                        return ACR_ALLOW;
@@ -32,47 +55,25 @@ class ModuleNoKicks : public Module
                                else
                                {
                                        // nobody else can (not even opers with override, and founders)
-                                       WriteServ(source->fd,"484 %s %s :Can't kick user %s from channel (+Q set)",source->nick, c->name,dest->nick);
+                                       source->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s %s :Can't kick user %s from channel (+Q set)",source->nick.c_str(), channel->name.c_str(), dest->nick.c_str());
                                        return ACR_DENY;
                                }
                        }
                }
                return ACR_DEFAULT;
        }
-       
+
        virtual ~ModuleNoKicks()
        {
-               delete Srv;
-       }
-       
-       virtual Version GetVersion()
-       {
-               return Version(1,0,0,0);
+               ServerInstance->Modes->DelMode(nk);
+               delete nk;
        }
-};
-
 
-class ModuleNoKicksFactory : public ModuleFactory
-{
- public:
-       ModuleNoKicksFactory()
-       {
-       }
-       
-       ~ModuleNoKicksFactory()
-       {
-       }
-       
-       virtual Module * CreateModule()
+       virtual Version GetVersion()
        {
-               return new ModuleNoKicks;
+               return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
        }
-       
 };
 
 
-extern "C" void * init_module( void )
-{
-       return new ModuleNoKicksFactory;
-}
-
+MODULE_INIT(ModuleNoKicks)