]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spy.cpp
Header update: 2007 -> 2008
[user/henk/code/inspircd.git] / src / modules / m_spy.cpp
index 17998b9643a87ac3047c3356c690c1cc0498e407..053381472540cc8d77d691569b412836c515fee7 100644 (file)
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ *  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.
+ *         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.
- */
-
-/* $ModDesc: Provides SPYLIST and SPYNAMES capability, allowing opers to see who's in +s channels */
+/* $ModDesc: Provides the ability to see the complete names list of channels an oper is not a member of */
 
 #include "inspircd.h"
-#include "users.h" 
-#include "channels.h"
-#include "modules.h"
 #include "wildcard.h"
 
-void spy_userlist(userrec *user, chanrec *c)
-{
-       char list[MAXBUF];
-       size_t dlen, curlen;
-
-       dlen = curlen = snprintf(list,MAXBUF,"353 %s = %s :", user->nick, c->name);
-
-       int numusers = 0;
-       char* ptr = list + dlen;
-
-       CUList *ulist= c->GetUsers();
-
-       for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
-       {
-               size_t ptrlen = snprintf(ptr, MAXBUF, "%s%s ", c->GetPrefixChar(i->first), i->first->nick);
-
-               curlen += ptrlen;
-               ptr += ptrlen;
-
-               numusers++;
-
-               if (curlen > (480-NICKMAX))
-               {
-                       /* list overflowed into multiple numerics */
-                       user->WriteServ(std::string(list));
-
-                       /* reset our lengths */
-                       dlen = curlen = snprintf(list,MAXBUF,"353 %s = %s :", user->nick, c->name);
-                       ptr = list + dlen;
-
-                       ptrlen = 0;
-                       numusers = 0;
-               }
-       }
-
-       /* if whats left in the list isnt empty, send it */
-       if (numusers)
-       {
-               user->WriteServ(std::string(list));
-       }
-
-       user->WriteServ("366 %s %s :End of /NAMES list.", user->nick, c->name);
-
-}
-
-/** Handle /SPYLIST
- */
-class cmd_spylist : public command_t
-{
-  public:
-       cmd_spylist (InspIRCd* Instance) : command_t(Instance,"SPYLIST", 'o', 0)
-       {
-               this->source = "m_spy.so";
-               syntax = "";
-       }
-
-       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
-       {
-               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);
-
-               /* Dont send out across the network */
-               return CMD_FAILURE;
-       }
-};
-
-/** Handle /SPYNAMES
- */
-class cmd_spynames : public command_t
+class ModuleSpy : public Module
 {
 public:
-       cmd_spynames (InspIRCd* Instance) : command_t(Instance,"SPYNAMES", 'o', 0)
+ public:
+       ModuleSpy(InspIRCd* Me) : Module(Me)
        {
-               this->source = "m_spy.so";
-               syntax = "{<channel>{,<channel>}}";
+               ServerInstance->Modules->Attach(I_OnUserList, this);
        }
 
-       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
+       virtual int OnUserList(User* user, Channel* Ptr, CUList* &nameslist)
        {
-               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, 0))
-                       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);
-               }
-               else
-               {
-                       user->WriteServ("401 %s %s :No such nick/channel",user->nick, parameters[0]);
-               }
+               /* User is an oper and is NOT on the channel */
+               if (IS_OPER(user) && !Ptr->HasUser(user))
+                       return -1;
 
-               return CMD_FAILURE;
+               return 0;
        }
-};
 
-class ModuleSpy : public Module
-{
-       cmd_spylist *mycommand;
-       cmd_spynames *mycommand2;
- public:
-       ModuleSpy(InspIRCd* Me) : Module(Me)
-       {
-               
-               mycommand = new cmd_spylist(ServerInstance);
-               mycommand2 = new cmd_spynames(ServerInstance);
-               ServerInstance->AddCommand(mycommand);
-               ServerInstance->AddCommand(mycommand2);
+       void Prioritize()       
+       {                      
+               /* 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, PRIO_BEFORE, list, 2);
        }
        
        virtual ~ModuleSpy()
@@ -160,27 +50,5 @@ class ModuleSpy : public Module
        }
 };
 
+MODULE_INIT(ModuleSpy)
 
-class ModuleSpyFactory : public ModuleFactory
-{
- public:
-       ModuleSpyFactory()
-       {
-       }
-       
-       ~ModuleSpyFactory()
-       {
-       }
-       
-       virtual Module * CreateModule(InspIRCd* Me)
-       {
-               return new ModuleSpy(Me);
-       }
-       
-};
-
-
-extern "C" DllExport void * init_module( void )
-{
-       return new ModuleSpyFactory;
-}