]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_namesx.cpp
Someone is getting slapped for this; the new hidesplits/hidebans behavior doesn't...
[user/henk/code/inspircd.git] / src / modules / m_namesx.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "users.h"
15 #include "channels.h"
16 #include "modules.h"
17 #include "inspircd.h"
18
19 static const char* dummy = "ON";
20
21 /* $ModDesc: Provides aliases of commands. */
22
23 class ModuleNamesX : public Module
24 {
25  public:
26         
27         ModuleNamesX(InspIRCd* Me)
28                 : Module::Module(Me)
29         {
30         }
31
32         void Implements(char* List)
33         {
34                 List[I_OnPreCommand] = List[I_OnUserList] = List[I_On005Numeric] = 1;
35         }
36
37         virtual ~ModuleNamesX()
38         {
39         }
40
41         virtual Version GetVersion()
42         {
43                 return Version(1,1,0,1,VF_VENDOR,API_VERSION);
44         }
45
46         virtual void On005Numeric(std::string &output)
47         {
48                 output.append(" NAMESX");
49         }
50
51         virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line)
52         {
53                 irc::string c = command.c_str();
54                 /* We don't actually create a proper command handler class for PROTOCTL,
55                  * because other modules might want to have PROTOCTL hooks too.
56                  * Therefore, we just hook its as an unvalidated command therefore we
57                  * can capture it even if it doesnt exist! :-)
58                  */
59                 if (c == "PROTOCTL")
60                 {
61                         if ((pcnt) && (!strcasecmp(parameters[0],"NAMESX")))
62                         {
63                                 user->Extend("NAMESX",dummy);
64                                 return 1;
65                         }
66                 }
67                 return 0;
68         }
69
70         virtual int OnUserList(userrec* user, chanrec* Ptr)
71         {
72                 if (user->GetExt("NAMESX"))
73                 {
74                         char list[MAXBUF];
75                         size_t dlen, curlen;
76                         dlen = curlen = snprintf(list,MAXBUF,"353 %s = %s :", user->nick, Ptr->name);
77                         int numusers = 0;
78                         char* ptr = list + dlen;
79                         CUList *ulist= Ptr->GetUsers();
80                         bool has_user = Ptr->HasUser(user);
81                         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
82                         {
83                                 if ((!has_user) && (i->second->modes[UM_INVISIBLE]))
84                                 {
85                                         continue;
86                                 }
87                                 size_t ptrlen = snprintf(ptr, MAXBUF, "%s%s ", Ptr->GetAllPrefixChars(i->second), i->second->nick);
88                                 curlen += ptrlen;
89                                 ptr += ptrlen;
90                                 numusers++;
91                                 if (curlen > (480-NICKMAX))
92                                 {
93                                         /* list overflowed into multiple numerics */
94                                         user->WriteServ(std::string(list));
95                                         /* reset our lengths */
96                                         dlen = curlen = snprintf(list,MAXBUF,"353 %s = %s :", user->nick, Ptr->name);
97                                         ptr = list + dlen;
98                                         ptrlen = 0;
99                                         numusers = 0;
100                                 }
101                         }
102                         /* if whats left in the list isnt empty, send it */
103                         if (numusers)
104                         {
105                                 user->WriteServ(std::string(list));
106                         }
107                         user->WriteServ("366 %s %s :End of /NAMES list.", user->nick, Ptr->name);
108                         return 1;
109                 }
110                 return 0;               
111         }
112 };
113
114
115 class ModuleNamesXFactory : public ModuleFactory
116 {
117  public:
118         ModuleNamesXFactory()
119         {
120         }
121
122         ~ModuleNamesXFactory()
123         {
124         }
125
126                 virtual Module * CreateModule(InspIRCd* Me)
127         {
128                 return new ModuleNamesX(Me);
129         }
130 };
131
132
133 extern "C" void * init_module( void )
134 {
135         return new ModuleNamesXFactory;
136 }
137