]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_uhnames.cpp
830be12e81cb033c43d9bfb6506a569807f42131
[user/henk/code/inspircd.git] / src / modules / m_uhnames.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 "inspircd.h"
15
16 static const char* dummy = "ON";
17
18 /* $ModDesc: Provides aliases of commands. */
19
20 class ModuleUHNames : public Module
21 {
22         CUList nl;
23  public:
24         
25         ModuleUHNames(InspIRCd* Me)
26                 : Module(Me)
27         {
28         }
29
30         void Implements(char* List)
31         {
32                 List[I_OnSyncUserMetaData] = List[I_OnPreCommand] = List[I_OnUserList] = List[I_On005Numeric] = 1;
33         }
34
35         virtual ~ModuleUHNames()
36         {
37         }
38
39         void OnSyncUserMetaData(User* user, Module* proto,void* opaque, const std::string &extname, bool displayable)
40         {
41                 if ((displayable) && (extname == "UHNAMES"))
42                         proto->ProtoSendMetaData(opaque, TYPE_USER, user, extname, "Enabled");
43         }
44
45         virtual Version GetVersion()
46         {
47                 return Version(1,1,0,1,VF_VENDOR,API_VERSION);
48         }
49
50         virtual void On005Numeric(std::string &output)
51         {
52                 output.append(" UHNAMES");
53         }
54
55         Priority Prioritize()
56         {
57                 return (Priority)ServerInstance->Modules->PriorityBefore("m_namesx.so");
58         }
59
60         virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, User *user, bool validated, const std::string &original_line)
61         {
62                 irc::string c = command.c_str();
63                 /* We don't actually create a proper command handler class for PROTOCTL,
64                  * because other modules might want to have PROTOCTL hooks too.
65                  * Therefore, we just hook its as an unvalidated command therefore we
66                  * can capture it even if it doesnt exist! :-)
67                  */
68                 if (c == "PROTOCTL")
69                 {
70                         if ((pcnt) && (!strcasecmp(parameters[0],"UHNAMES")))
71                         {
72                                 user->Extend("UHNAMES",dummy);
73                                 return 1;
74                         }
75                 }
76                 return 0;
77         }
78
79         /* IMPORTANT: This must be prioritized above NAMESX! */
80         virtual int OnUserList(User* user, Channel* Ptr, CUList* &ulist)
81         {
82                 if (user->GetExt("UHNAMES"))
83                 {
84                         if (!ulist)
85                                 ulist = Ptr->GetUsers();
86
87                         for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
88                                 i->second = i->first->GetFullHost();
89                 }
90                 return 0;               
91         }
92 };
93
94 MODULE_INIT(ModuleUHNames)