]> 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 40be036ab1207049344260ff0e91f6d52280a9d6..053381472540cc8d77d691569b412836c515fee7 100644 (file)
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  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.
- */
-
-using namespace std;
-
-/* $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 <stdio.h>
-#include <vector>
-#include <deque>
-#include "globals.h"
-#include "inspircd_config.h"
-#include <ext/hash_map>
-#include "users.h" 
-#include "channels.h"
-#include "modules.h"
-#include "commands.h"
-#include "socket.h"
-#include "helperfuncs.h"
 #include "inspircd.h"
-#include "inspstring.h"
-#include "hashcomp.h"
-#include "message.h"
-#include "xline.h"
-#include "typedefs.h"
-#include "cull_list.h"
-#include "aes.h"
-
-#define nspace __gnu_cxx
-
-static Server *Srv;
-
-extern InspIRCd* ServerInstance;
-extern chan_hash chanlist;
-
-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,cmode(i->second,c),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
-{
-  public:
-       cmd_spylist () : command_t("SPYLIST", 'o', 0)
-       {
-               this->source = "m_spy.so";
-               syntax = "";
-       }
-
-       void Handle (const char** parameters, int pcnt, userrec *user)
-       {
-               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 = chanlist.begin(); i != chanlist.end(); i++)
-               {
-                       user->WriteServ("322 %s %s %d :[+%s] %s",user->nick,i->second->name,i->second->GetUserCounter(),chanmodes(i->second,true),i->second->topic);
-               }
-               user->WriteServ("323 %s :End of channel list.",user->nick);
-       }
-};
+#include "wildcard.h"
 
-class cmd_spynames : public command_t
+class ModuleSpy : public Module
 {
 public:
-       cmd_spynames () : command_t("SPYNAMES", 'o', 0)
+ public:
+       ModuleSpy(InspIRCd* Me) : Module(Me)
        {
-               this->source = "m_spy.so";
-               syntax = "{<channel>{,<channel>}}";
+               ServerInstance->Modules->Attach(I_OnUserList, this);
        }
 
-       void Handle (const char** parameters, int pcnt, userrec *user)
+       virtual int OnUserList(User* user, Channel* Ptr, CUList* &nameslist)
        {
-               chanrec* c;
-
-               if (!pcnt)
-               {
-                       user->WriteServ("366 %s * :End of /NAMES list.",user->nick);
-                       return;
-               }
-
-               if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 1))
-                       return;
+               /* User is an oper and is NOT on the channel */
+               if (IS_OPER(user) && !Ptr->HasUser(user))
+                       return -1;
 
-               WriteOpers("*** Oper %s used SPYNAMES to view the users on %s",user->nick,parameters[0]);
-
-               c = FindChan(parameters[0]);
-               if (c)
-               {
-                       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 0;
        }
-};
 
-class ModuleSpy : public Module
-{
-       cmd_spylist *mycommand;
-       cmd_spynames *mycommand2;
- public:
-       ModuleSpy(Server* Me) : Module::Module(Me)
-       {
-               Srv = Me;
-               mycommand = new cmd_spylist();
-               mycommand2 = new cmd_spynames();
-               Srv->AddCommand(mycommand);
-               Srv->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()
@@ -161,31 +46,9 @@ class ModuleSpy : public Module
        
        virtual Version GetVersion()
        {
-               return Version(1, 0, 0, 0, VF_VENDOR);
+               return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION);
        }
 };
 
+MODULE_INIT(ModuleSpy)
 
-class ModuleSpyFactory : public ModuleFactory
-{
- public:
-       ModuleSpyFactory()
-       {
-       }
-       
-       ~ModuleSpyFactory()
-       {
-       }
-       
-       virtual Module * CreateModule(Server* Me)
-       {
-               return new ModuleSpy(Me);
-       }
-       
-};
-
-
-extern "C" void * init_module( void )
-{
-       return new ModuleSpyFactory;
-}