]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_operlevels.cpp
DOH! Fix my muppetry of a segfault, and fix some warnings
[user/henk/code/inspircd.git] / src / modules / m_operlevels.cpp
index 2793241117a1bf8450c9a57267fe52163a2f96cd..b436b953bb21dad3931003ba2e8cf7919c0d1f45 100644 (file)
@@ -1,9 +1,15 @@
-using namespace std;
-
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
-#include <string>
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2008 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 "inspircd.h"
 
@@ -13,48 +19,40 @@ using namespace std;
 
 class ModuleOperLevels : public Module
 {
-
        private:
-
-               
                ConfigReader* conf;
-
        public:
-
                ModuleOperLevels(InspIRCd* Me)
-                       : Module::Module(Me)
+                       : Module(Me)
                {
-
-                       
                        conf = new ConfigReader(ServerInstance);
+                       Implementation eventlist[] = { I_OnRehash, I_OnKill };
+                       ServerInstance->Modules->Attach(eventlist, this, 2);
                }
 
                virtual ~ModuleOperLevels()
                {
-                       DELETE(conf);
+                       delete conf;
                }
 
-               void Implements(char* List)
-               {
-                       List[I_OnRehash] = List[I_OnKill] = 1;
-               }
 
-               virtual void OnRehash(const std::string &parameter)
+               virtual void OnRehash(User* user, const std::string &parameter)
                {
-                       DELETE(conf);
+                       delete conf;
                        conf = new ConfigReader(ServerInstance);
                }
 
                virtual Version GetVersion()
                {
-                       return Version(1,0,0,1,VF_VENDOR,API_VERSION);
+                       return Version(1,2,0,1,VF_VENDOR,API_VERSION);
                }
 
-               virtual int OnKill(userrec* source, userrec* dest, const 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 (*dest->oper)
+                       if (IS_OPER(dest) && IS_OPER(source))
                        {
                                for (int j =0; j < conf->Enumerate("type"); j++)
                                {
@@ -76,9 +74,9 @@ class ModuleOperLevels : public Module
                                }
                                if (dest_level > source_level)
                                {
-                                       ServerInstance->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());
+                                       ServerInstance->SNO->WriteToSnoMask('A', "Oper %s (level %ld) attempted to /kill a higher oper: %s (level %ld): Reason: %s",source->nick,source_level,dest->nick,dest_level,reason.c_str());
                                        dest->WriteServ("NOTICE %s :Oper %s attempted to /kill you!",dest->nick,source->nick);
-                                       source->WriteServ("481 %s :Permission Denied- Oper %s is a higher level than you",source->nick,dest->nick);
+                                       source->WriteNumeric(481, "%s :Permission Denied - Oper %s is a higher level than you",source->nick,dest->nick);
                                        return 1;
                                }
                        }
@@ -87,26 +85,5 @@ class ModuleOperLevels : public Module
 
 };
 
-class ModuleOperLevelsFactory : public ModuleFactory
-{
- public:
-       ModuleOperLevelsFactory()
-       {
-       }
-
-       ~ModuleOperLevelsFactory()
-       {
-       }
-
-       virtual Module * CreateModule(InspIRCd* Me)
-       {
-               return new ModuleOperLevels(Me);
-       }
-
-};
-
-extern "C" void * init_module( void )
-{
-       return new ModuleOperLevelsFactory;
-}
+MODULE_INIT(ModuleOperLevels)