X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_oper_hash.cpp;h=b4661741b52b9ce4e44341c62324be6aa78cae94;hb=fed58f5c25915d60d40c0f407914ff7381902f9d;hp=f87f46be2507e3eba0a096dfe11e163066bb2c75;hpb=7adaae1083b75bf4581e8301e610332dfc5aa6f5;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_oper_hash.cpp b/src/modules/m_oper_hash.cpp index f87f46be2..b4661741b 100644 --- a/src/modules/m_oper_hash.cpp +++ b/src/modules/m_oper_hash.cpp @@ -2,12 +2,9 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. + * InspIRCd: (C) 2002-2007 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. * @@ -17,25 +14,23 @@ /* $ModDesc: Allows for hashed oper passwords */ /* $ModDep: m_hash.h */ -using namespace std; - -#include "inspircd_config.h" +#include "inspircd.h" #include "users.h" #include "channels.h" #include "modules.h" -#include "inspircd.h" - #include "m_hash.h" +typedef std::map hashymodules; + /* Handle /MKPASSWD */ class cmd_mkpasswd : public command_t { Module* Sender; - std::map &hashers; + hashymodules &hashers; std::deque &names; public: - cmd_mkpasswd (InspIRCd* Instance, Module* S, std::map &h, std::deque &n) + cmd_mkpasswd (InspIRCd* Instance, Module* S, hashymodules &h, std::deque &n) : command_t(Instance,"MKPASSWD", 'o', 2), Sender(S), hashers(h), names(n) { this->source = "m_oper_hash.so"; @@ -45,7 +40,7 @@ class cmd_mkpasswd : public command_t void MakeHash(userrec* user, const char* algo, const char* stuff) { /* Lets see if they gave us an algorithm which has been implemented */ - std::map::iterator x = hashers.find(algo); + hashymodules::iterator x = hashers.find(algo); if (x != hashers.end()) { /* Yup, reset it first (Always ALWAYS do this) */ @@ -76,18 +71,20 @@ class ModuleOperHash : public Module cmd_mkpasswd* mycommand; ConfigReader* Conf; - std::map hashers; /* List of modules which implement HashRequest */ + hashymodules hashers; /* List of modules which implement HashRequest */ std::deque names; /* Module names which implement HashRequest */ public: ModuleOperHash(InspIRCd* Me) - : Module::Module(Me) + : Module(Me) { /* Read the config file first */ Conf = NULL; - OnRehash(""); + OnRehash(NULL,""); + + ServerInstance->UseInterface("HashRequest"); /* Find all modules which implement the interface 'HashRequest' */ modulelist* ml = ServerInstance->FindInterface("HashRequest"); @@ -105,7 +102,6 @@ class ModuleOperHash : public Module /* Build a map of them */ hashers[name.c_str()] = *m; names.push_back(name); - ServerInstance->Log(DEBUG, "Found HashRequest interface: '%s' -> '%08x'", name.c_str(), *m); } } else @@ -119,6 +115,7 @@ class ModuleOperHash : public Module virtual ~ModuleOperHash() { + ServerInstance->DoneWithInterface("HashRequest"); } void Implements(char* List) @@ -126,7 +123,7 @@ class ModuleOperHash : public Module List[I_OnRehash] = List[I_OnOperCompare] = 1; } - virtual void OnRehash(const std::string ¶meter) + virtual void OnRehash(userrec* user, const std::string ¶meter) { /* Re-read configuration file */ if (Conf) @@ -139,7 +136,7 @@ class ModuleOperHash : public Module { /* First, lets see what hash theyre using on this oper */ std::string hashtype = Conf->ReadValue("oper", "hash", tagnumber); - std::map::iterator x = hashers.find(hashtype.c_str()); + hashymodules::iterator x = hashers.find(hashtype.c_str()); /* Is this a valid hash name? (case insensitive) */ if (x != hashers.end()) @@ -163,27 +160,4 @@ class ModuleOperHash : public Module } }; - -class ModuleOperHashFactory : public ModuleFactory -{ - public: - ModuleOperHashFactory() - { - } - - ~ModuleOperHashFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleOperHash(Me); - } - -}; - - -extern "C" void * init_module( void ) -{ - return new ModuleOperHashFactory; -} +MODULE_INIT(ModuleOperHash)