]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_customtitle.cpp
d34e0dfe00f6a7507aaa38500c3bbbe66af9f40a
[user/henk/code/inspircd.git] / src / modules / m_customtitle.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 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 /* $ModDesc: Provides the TITLE command which allows setting of CUSTOM WHOIS TITLE line */
17
18 /** Handle /TITLE
19  */
20 class CommandTitle : public Command
21 {
22  public:
23         CommandTitle (InspIRCd* Instance) : Command(Instance,"TITLE",0,2)
24         {
25                 this->source = "m_customtitle.so";
26                 syntax = "<user> <password>";
27                 TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
28         }
29
30         bool OneOfMatches(const char* host, const char* ip, const char* hostlist)
31         {
32                 std::stringstream hl(hostlist);
33                 std::string xhost;
34                 while (hl >> xhost)
35                 {
36                         if (InspIRCd::Match(host, xhost, ascii_case_insensitive_map) || InspIRCd::MatchCIDR(ip, xhost, ascii_case_insensitive_map))
37                         {
38                                 return true;
39                         }
40                 }
41                 return false;
42         }
43
44         CmdResult Handle(const std::vector<std::string> &parameters, User* user)
45         {
46                 char TheHost[MAXBUF];
47                 char TheIP[MAXBUF];
48
49                 snprintf(TheHost,MAXBUF,"%s@%s",user->ident.c_str(), user->host.c_str());
50                 snprintf(TheIP, MAXBUF,"%s@%s",user->ident.c_str(), user->GetIPString());
51
52                 ConfigReader Conf(ServerInstance);
53                 for (int i=0; i<Conf.Enumerate("title"); i++)
54                 {
55                         std::string name = Conf.ReadValue("title", "name", "", i);
56                         std::string pass = Conf.ReadValue("title", "password", "", i);
57                         std::string hash = Conf.ReadValue("title", "hash", "", i);
58                         std::string host = Conf.ReadValue("title", "host", "*@*", i);
59                         std::string title = Conf.ReadValue("title", "title", "", i);
60                         std::string vhost = Conf.ReadValue("title", "vhost", "", i);
61
62                         if (!strcmp(name.c_str(),parameters[0].c_str()) && !ServerInstance->PassCompare(user, pass.c_str(), parameters[1].c_str(), hash.c_str()) && OneOfMatches(TheHost,TheIP,host.c_str()) && !title.empty())
63                         {
64                                 std::string* text;
65                                 if (user->GetExt("ctitle", text))
66                                 {
67                                         user->Shrink("ctitle");
68                                         delete text;
69                                 }
70
71                                 text = new std::string(title);
72                                 user->Extend("ctitle", text);
73
74                                 ServerInstance->PI->SendMetaData(user, TYPE_USER, "ctitle", *text);
75
76                                 if (!vhost.empty())
77                                         user->ChangeDisplayedHost(vhost.c_str());
78
79                                 user->WriteServ("NOTICE %s :Custom title set to '%s'",user->nick.c_str(), title.c_str());
80
81                                 return CMD_LOCALONLY;
82                         }
83                 }
84
85                 user->WriteServ("NOTICE %s :Invalid title credentials",user->nick.c_str());
86                 return CMD_LOCALONLY;
87         }
88
89 };
90
91 class ModuleCustomTitle : public Module
92 {
93         CommandTitle* mycommand;
94
95  public:
96         ModuleCustomTitle(InspIRCd* Me) : Module(Me)
97         {
98
99                 mycommand = new CommandTitle(ServerInstance);
100                 ServerInstance->AddCommand(mycommand);
101                 Implementation eventlist[] = { I_OnDecodeMetaData, I_OnWhoisLine, I_OnSyncUserMetaData, I_OnUserQuit, I_OnCleanup };
102                 ServerInstance->Modules->Attach(eventlist, this, 5);
103         }
104
105
106         // :kenny.chatspike.net 320 Brain Azhrarn :is getting paid to play games.
107         int OnWhoisLine(User* user, User* dest, int &numeric, std::string &text)
108         {
109                 /* We use this and not OnWhois because this triggers for remote, too */
110                 if (numeric == 312)
111                 {
112                         /* Insert our numeric before 312 */
113                         std::string* ctitle;
114                         if (dest->GetExt("ctitle", ctitle))
115                         {
116                                 ServerInstance->SendWhoisLine(user, dest, 320, "%s %s :%s",user->nick.c_str(), dest->nick.c_str(), ctitle->c_str());
117                         }
118                 }
119                 /* Dont block anything */
120                 return 0;
121         }
122
123         // Whenever the linking module wants to send out data, but doesnt know what the data
124         // represents (e.g. it is metadata, added to a User or Channel by a module) then
125         // this method is called. We should use the ProtoSendMetaData function after we've
126         // corrected decided how the data should look, to send the metadata on its way if
127         // it is ours.
128         virtual void OnSyncUserMetaData(User* user, Module* proto, void* opaque, const std::string &extname, bool displayable)
129         {
130                 // check if the linking module wants to know about OUR metadata
131                 if (extname == "ctitle")
132                 {
133                         // check if this user has an ctitle field to send
134                         std::string* ctitle;
135                         if (user->GetExt("ctitle", ctitle))
136                         {
137                                 // call this function in the linking module, let it format the data how it
138                                 // sees fit, and send it on its way. We dont need or want to know how.
139                                 proto->ProtoSendMetaData(opaque,TYPE_USER,user,extname,*ctitle);
140                         }
141                 }
142         }
143
144         // when a user quits, tidy up their metadata
145         virtual void OnUserQuit(User* user, const std::string &message, const std::string &oper_message)
146         {
147                 std::string* ctitle;
148                 if (user->GetExt("ctitle", ctitle))
149                 {
150                         user->Shrink("ctitle");
151                         delete ctitle;
152                 }
153         }
154
155         // if the module is unloaded, tidy up all our dangling metadata
156         virtual void OnCleanup(int target_type, void* item)
157         {
158                 if (target_type == TYPE_USER)
159                 {
160                         User* user = (User*)item;
161                         std::string* ctitle;
162                         if (user->GetExt("ctitle", ctitle))
163                         {
164                                 user->Shrink("ctitle");
165                                 delete ctitle;
166                         }
167                 }
168         }
169
170         // Whenever the linking module receives metadata from another server and doesnt know what
171         // to do with it (of course, hence the 'meta') it calls this method, and it is up to each
172         // module in turn to figure out if this metadata key belongs to them, and what they want
173         // to do with it.
174         // In our case we're only sending a single string around, so we just construct a std::string.
175         // Some modules will probably get much more complex and format more detailed structs and classes
176         // in a textual way for sending over the link.
177         virtual void OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata)
178         {
179                 // check if its our metadata key, and its associated with a user
180                 if ((target_type == TYPE_USER) && (extname == "ctitle"))
181                 {
182                         User* dest = (User*)target;
183                         std::string* text;
184                         if (dest->GetExt("ctitle", text))
185                         {
186                                 dest->Shrink("ctitle");
187                                 delete text;
188                         }
189                         if (!extdata.empty())
190                         {
191                                 text = new std::string(extdata);
192                                 dest->Extend("ctitle", text);
193                         }
194                 }
195         }
196
197         virtual ~ModuleCustomTitle()
198         {
199         }
200
201         virtual Version GetVersion()
202         {
203                 return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
204         }
205 };
206
207 MODULE_INIT(ModuleCustomTitle)