X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_globops.cpp;h=ec729f7204700ce96b01e190b259d9dd2a7524ef;hb=9dd72b7003963d868a23da930a91300b49ab4959;hp=f8b6ffcceec92988d291b5bf4edf9682c2318e12;hpb=edad37d03ac503e11636b49789416661af4ac3da;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_globops.cpp b/src/modules/m_globops.cpp index f8b6ffcce..ec729f720 100644 --- a/src/modules/m_globops.cpp +++ b/src/modules/m_globops.cpp @@ -1,15 +1,22 @@ -// Hostname cloaking (+x mode) module for inspircd. -// version 1.0.0.1 by brain (C. J. Edwards) Mar 2004. -// -// When loaded this module will automatically set the -// +x mode on all connecting clients. -// -// Setting +x on a client causes the module to change the -// dhost entry (displayed host) for each user who has the -// mode, cloaking their host. Unlike unreal, the algorithm -// is non-reversible as uncloaked hosts are passed along -// the server->server link, and all encoding of hosts is -// done locally on the server by this module. +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. + * E-mail: + * + * + * + * Written by Craig Edwards, Craig McLure, and others. + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +using namespace std; + +// Globops and +g support module by C.J.Edwards #include #include @@ -17,48 +24,67 @@ #include "channels.h" #include "modules.h" -/* $ModDesc: Provides masking of user hostnames */ +/* $ModDesc: Provides support for unreal-style GLOBOPS and umode +g */ + +static Server *Srv; -Server *Srv; - -void handle_globops(char **parameters, int pcnt, userrec *user) +class cmd_globops : public command_t { - std::string line = ""; - for (int i = 0; i < pcnt; i++) + public: + cmd_globops () : command_t("GLOBOPS",'o',1) { - line = line + string(parameters[i]) + " "; + this->source = "m_globops.so"; } - Srv->SendToModeMask("og",WM_AND,line); -} + + void Handle (char **parameters, int pcnt, userrec *user) + { + std::string line = "*** GLOBOPS - From " + std::string(user->nick) + ": "; + for (int i = 0; i < pcnt; i++) + { + line = line + std::string(parameters[i]) + " "; + } + Srv->SendToModeMask("og",WM_AND,line); + } +}; class ModuleGlobops : public Module { + cmd_globops* mycommand; public: - ModuleGlobops() + ModuleGlobops(Server* Me) + : Module::Module(Me) { - Srv = new Server; + Srv = Me; if (!Srv->AddExtendedMode('g',MT_CLIENT,true,0,0)) { Srv->Log(DEFAULT,"*** m_globops: ERROR, failed to allocate user mode +g!"); printf("Could not claim usermode +g for this module!"); - exit(0); + return; + } + else + { + mycommand = new cmd_globops(); + Srv->AddCommand(mycommand); } - Srv->AddCommand("GLOBOPS",handle_globops,'o',1); } virtual ~ModuleGlobops() { - delete Srv; } virtual Version GetVersion() { - return Version(1,0,0,1); + return Version(1,0,0,1,VF_STATIC|VF_VENDOR); + } + + void Implements(char* List) + { + List[I_OnExtendedMode] = 1; } - virtual bool OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list ¶ms) + virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list ¶ms) { // check if this is our mode character... if ((modechar == 'g') && (type == MT_CLIENT)) @@ -73,15 +99,6 @@ class ModuleGlobops : public Module return 0; } } - - virtual void OnOper(userrec* user) - { - char* modes[2]; // only two parameters - modes[0] = user->nick; // first parameter is the nick - modes[1] = "+g"; // second parameter is the mode - Srv->SendMode(modes,2,user); // send these, forming the command "MODE +g" - } - }; // stuff down here is the module-factory stuff. For basic modules you can ignore this. @@ -97,9 +114,9 @@ class ModuleGlobopsFactory : public ModuleFactory { } - virtual Module * CreateModule() + virtual Module * CreateModule(Server* Me) { - return new ModuleGlobops; + return new ModuleGlobops(Me); } };