X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_spy.cpp;h=12aa0d347d841c21be6bd9ba5da05190816e97c5;hb=4a64082e31c3c3dfa97a1edfb8a3c97fe8d32ea7;hp=6e1897aa27efe1820d48c5f3829708d15647bfc4;hpb=5dd1410631a3b70ac6f5de99156b4e3d86936ae5;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_spy.cpp b/src/modules/m_spy.cpp index 6e1897aa2..12aa0d347 100644 --- a/src/modules/m_spy.cpp +++ b/src/modules/m_spy.cpp @@ -2,175 +2,51 @@ * | 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-2009 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits + * * This program is free but copyrighted software; see - * the file COPYING for details. + * the file COPYING for details. * * --------------------------------------------------- */ -/* NO, THIS MODULE DOES NOT SPY ON CHANNELS OR USERS. - * IT JUST ALLOWS OPERS TO SEE +s CHANNELS IN LIST AND - * WHOIS, WHICH IS SUPPORTED BY MOST IRCDS IN CORE. - */ - -using namespace std; +/* $ModDesc: Provides the ability to see the complete names list of channels an oper is not a member of */ -/* $ModDesc: Provides SPYLIST and SPYNAMES capability, allowing opers to see who's in +s channels */ - -#include "inspircd_config.h" -#include "users.h" -#include "channels.h" -#include "modules.h" #include "inspircd.h" -#include "wildcard.h" - -void spy_userlist(userrec *user, chanrec *c) -{ - static char list[MAXBUF]; - if (!c || !user) - return; - - snprintf(list,MAXBUF,"353 %s = %s :", user->nick, c->name); - - CUList *ulist= c->GetUsers(); - for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++) - { - strlcat(list,c->GetPrefixChar(i->second),MAXBUF); - strlcat(list,i->second->nick,MAXBUF); - strlcat(list," ",MAXBUF); - if (strlen(list)>(480-NICKMAX)) - { - /* list overflowed into - * multiple numerics */ - user->WriteServ(std::string(list)); - snprintf(list,MAXBUF,"353 %s = %s :", user->nick, c->name); - } - } - /* if whats left in the list isnt empty, send it */ - if (list[strlen(list)-1] != ':') - { - user->WriteServ(std::string(list)); - } -} - - - -class cmd_spylist : public command_t +class ModuleSpy : public Module { - public: - cmd_spylist (InspIRCd* Instance) : command_t(Instance,"SPYLIST", 'o', 0) - { - this->source = "m_spy.so"; - syntax = ""; + public: + ModuleSpy() { + ServerInstance->Modules->Attach(I_OnUserList, this); } - CmdResult Handle (const char** parameters, int pcnt, userrec *user) + virtual ModResult OnUserList(User* user, Channel* Ptr) { - ServerInstance->WriteOpers("*** Oper %s used SPYLIST to list +s/+p channels and keys.",user->nick); - user->WriteServ("321 %s Channel :Users Name",user->nick); - for (chan_hash::const_iterator i = ServerInstance->chanlist.begin(); i != ServerInstance->chanlist.end(); i++) - { - if (pcnt && !match(i->second->name, parameters[0])) - continue; - user->WriteServ("322 %s %s %d :[+%s] %s",user->nick,i->second->name,i->second->GetUserCounter(),i->second->ChanModes(true),i->second->topic); - } - user->WriteServ("323 %s :End of channel list.",user->nick); + /* User has priv and is NOT on the channel */ + if (user->HasPrivPermission("channels/auspex") && !Ptr->HasUser(user)) + return MOD_RES_ALLOW; - /* Dont send out across the network */ - return CMD_FAILURE; - } -}; - -class cmd_spynames : public command_t -{ - public: - cmd_spynames (InspIRCd* Instance) : command_t(Instance,"SPYNAMES", 'o', 0) - { - this->source = "m_spy.so"; - syntax = "{{,}}"; + return MOD_RES_PASSTHRU; } - CmdResult Handle (const char** parameters, int pcnt, userrec *user) + void Prioritize() { - chanrec* c = NULL; - - if (!pcnt) - { - user->WriteServ("366 %s * :End of /NAMES list.",user->nick); - return CMD_FAILURE; - } - - if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 1)) - return CMD_FAILURE; - - c = ServerInstance->FindChan(parameters[0]); - if (c) - { - ServerInstance->WriteOpers("*** Oper %s used SPYNAMES to view the users on %s", user->nick, parameters[0]); - spy_userlist(user,c); - user->WriteServ("366 %s %s :End of /NAMES list.", user->nick, c->name); - } - else - { - user->WriteServ("401 %s %s :No such nick/channel",user->nick, parameters[0]); - } - - return CMD_FAILURE; + /* To ensure that we get priority over namesx and delayjoin for names list generation */ + Module* list[] = { ServerInstance->Modules->Find("m_namesx.so"), ServerInstance->Modules->Find("m_delayjoin.so") }; + ServerInstance->Modules->SetPriority(this, I_OnUserList, PRIORITY_BEFORE, list, 2); } -}; -class ModuleSpy : public Module -{ - cmd_spylist *mycommand; - cmd_spynames *mycommand2; - public: - ModuleSpy(InspIRCd* Me) : Module::Module(Me) - { - - mycommand = new cmd_spylist(ServerInstance); - mycommand2 = new cmd_spynames(ServerInstance); - ServerInstance->AddCommand(mycommand); - ServerInstance->AddCommand(mycommand2); - } - virtual ~ModuleSpy() { } - - virtual Version GetVersion() - { - return Version(1, 0, 0, 0, VF_VENDOR); - } -}; - -class ModuleSpyFactory : public ModuleFactory -{ - public: - ModuleSpyFactory() - { - } - - ~ModuleSpyFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) + virtual Version GetVersion() { - return new ModuleSpy(Me); + return Version("Provides the ability to see the complete names list of channels an oper is not a member of", VF_VENDOR, API_VERSION); } - }; +MODULE_INIT(ModuleSpy) -extern "C" void * init_module( void ) -{ - return new ModuleSpyFactory; -}