]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_operlevels.cpp
MetaData rework
[user/henk/code/inspircd.git] / src / modules / m_operlevels.cpp
index 3a97caa3be0501d771ef93c5f8a6695c39f6faa7..74a6e2c5fd87c4c5569ac47ae38d196787294b05 100644 (file)
@@ -1,55 +1,60 @@
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
-#include <string>
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#include "inspircd.h"
 
 /* $ModDesc: Gives each oper type a 'level', cannot kill opers 'above' your level. */
-
-Server *Srv;
-
 class ModuleOperLevels : public Module
 {
-
        private:
-
                ConfigReader* conf;
-
        public:
-
-               ModuleOperLevels()
+               ModuleOperLevels(InspIRCd* Me)
+                       : Module(Me)
                {
-
-                       Srv = new Server;
-                       conf = new ConfigReader;
+                       conf = new ConfigReader(ServerInstance);
+                       Implementation eventlist[] = { I_OnRehash, I_OnKill };
+                       ServerInstance->Modules->Attach(eventlist, this, 2);
                }
 
                virtual ~ModuleOperLevels()
                {
-                       delete Srv;
                        delete conf;
                }
 
-               virtual void OnRehash()
+
+               virtual void OnRehash(User* user)
                {
                        delete conf;
-                       conf = new ConfigReader;
+                       conf = new ConfigReader(ServerInstance);
                }
 
                virtual Version GetVersion()
                {
-                       return Version(1,0,0,0,0);
+                       return Version("$Id$", VF_VENDOR, API_VERSION);
                }
 
-               virtual int OnKill(userrec* source, userrec* dest, std::string reason)
+               virtual int OnKill(User* source, User* dest, const std::string &reason)
                {
                        long dest_level = 0,source_level = 0;
+
                        // oper killing an oper?
-                       if (strchr(dest->modes,'o'))
+                       if (IS_OPER(dest) && IS_OPER(source))
                        {
                                for (int j =0; j < conf->Enumerate("type"); j++)
                                {
                                        std::string typen = conf->ReadValue("type","name",j);
-                                       if (!strcmp(typen.c_str(),dest->oper))
+                                       if (typen == dest->oper)
                                        {
                                                dest_level = conf->ReadInteger("type","level",j,true);
                                                break;
@@ -58,7 +63,7 @@ class ModuleOperLevels : public Module
                                for (int k =0; k < conf->Enumerate("type"); k++)
                                {
                                        std::string typen = conf->ReadValue("type","name",k);
-                                       if (!strcmp(typen.c_str(),source->oper))
+                                       if (typen == source->oper)
                                        {
                                                source_level = conf->ReadInteger("type","level",k,true);
                                                break;
@@ -66,37 +71,16 @@ class ModuleOperLevels : public Module
                                }
                                if (dest_level > source_level)
                                {
-                                       WriteOpers("Oper %s (level %d) attempted to /kill a higher oper: %s (level %d): Reason: %s",source->nick,source_level,dest->nick,dest_level,reason.c_str());
-                                       WriteServ(dest->fd,"NOTICE %s :Oper %s attempted to /kill you!",dest->nick,source->nick);
-                                       WriteServ(source->fd,"481 %s :Permission Denied- Oper %s is a higher level than you",source->nick,dest->nick);
+                                       if (IS_LOCAL(source)) ServerInstance->SNO->WriteGlobalSno('a', "Oper %s (level %ld) attempted to /kill a higher oper: %s (level %ld): Reason: %s",source->nick.c_str(),source_level,dest->nick.c_str(),dest_level,reason.c_str());
+                                       dest->WriteServ("NOTICE %s :*** Oper %s attempted to /kill you!",dest->nick.c_str(),source->nick.c_str());
+                                       source->WriteNumeric(ERR_NOPRIVILEGES, "%s :Permission Denied - Oper %s is a higher level than you",source->nick.c_str(),dest->nick.c_str());
                                        return 1;
                                }
-                               return 0;
                        }
+                       return 0;
                }
 
 };
 
-class ModuleOperLevelsFactory : public ModuleFactory
-{
- public:
-        ModuleOperLevelsFactory()
-        {
-        }
-
-        ~ModuleOperLevelsFactory()
-        {
-        }
-
-        virtual Module * CreateModule()
-        {
-                return new ModuleOperLevels;
-        }
-
-};
-
-extern "C" void * init_module( void )
-{
-        return new ModuleOperLevelsFactory;
-}
+MODULE_INIT(ModuleOperLevels)