X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_hideoper.cpp;h=9f547d77db0a6e22ca8a23dbe6f1760bbcc7c2d5;hb=78fa4165c90088523e623ab2b64ca0db0d19def0;hp=9503a7562fa210bdcefe67b908a96756bf12598d;hpb=1085e6aa40bdac42bd427394e649f0d08b881c2a;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_hideoper.cpp b/src/modules/m_hideoper.cpp index 9503a7562..9f547d77d 100644 --- a/src/modules/m_hideoper.cpp +++ b/src/modules/m_hideoper.cpp @@ -2,22 +2,19 @@ * | 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. * * --------------------------------------------------- */ +#include "inspircd.h" #include "users.h" #include "channels.h" #include "modules.h" -#include "inspircd.h" /* $ModDesc: Provides support for hiding oper status with user mode +H */ @@ -30,8 +27,7 @@ class HideOper : public ModeHandler ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) { - /* Only opers can change other users modes */ - if ((source != dest) && (!*source->oper)) + if (source != dest) return MODEACTION_DENY; if (adding) @@ -61,16 +57,17 @@ class ModuleHideOper : public Module HideOper* hm; public: ModuleHideOper(InspIRCd* Me) - : Module::Module(Me) + : Module(Me) { hm = new HideOper(ServerInstance); - ServerInstance->AddMode(hm, 'H'); + if (!ServerInstance->AddMode(hm, 'H')) + throw ModuleException("Could not add new modes!"); } void Implements(char* List) { - List[I_OnWhois] = 1; + List[I_OnWhoisLine] = 1; } virtual ~ModuleHideOper() @@ -89,30 +86,9 @@ class ModuleHideOper : public Module /* Dont display numeric 313 (RPL_WHOISOPER) if they have +H set and the * person doing the WHOIS is not an oper */ - return ((!*user->oper) && (numeric == 313) && dest->IsModeSet('H')); + return ((!IS_OPER(user)) && (numeric == 313) && dest->IsModeSet('H')); } }; -class ModuleHideOperFactory : public ModuleFactory -{ - public: - ModuleHideOperFactory() - { - } - - ~ModuleHideOperFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleHideOper(Me); - } - -}; - -extern "C" void * init_module( void ) -{ - return new ModuleHideOperFactory; -} +MODULE_INIT(ModuleHideOper)