]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_swhois.cpp
This should fix it on two fronts: missing Implements() value, and OnWhois doesnt...
[user/henk/code/inspircd.git] / src / modules / m_swhois.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 /* $ModDesc: Provides the SWHOIS command which allows setting of arbitary WHOIS lines */
20
21 /** Handle /SWHOIS
22  */
23 class cmd_swhois : public command_t
24 {
25         
26  public:
27         cmd_swhois (InspIRCd* Instance) : command_t(Instance,"SWHOIS",'o',2)
28         {
29                 this->source = "m_swhois.so";
30                 syntax = "<nick> <swhois>";
31         }
32
33         CmdResult Handle(const char** parameters, int pcnt, userrec* user)
34         {
35                 userrec* dest = ServerInstance->FindNick(parameters[0]);
36                 if(dest)
37                 {
38                         std::string line;
39                         for(int i = 1; i < pcnt; i++)
40                         {
41                                 if (i != 1)
42                                         line.append(" ");
43                                         
44                                 line.append(parameters[i]);
45                         }
46                         
47                         std::string* text;
48                         dest->GetExt("swhois", text);
49         
50                         if(text)
51                         {
52                                 // We already had it set...
53                                 
54                                 if (!ServerInstance->ULine(user->server))
55                                         // Ulines set SWHOISes silently
56                                         ServerInstance->WriteOpers("*** %s used SWHOIS to set %s's extra whois from '%s' to '%s'", user->nick, dest->nick, text->c_str(), line.c_str());
57                                 
58                                 dest->Shrink("swhois");
59                                 DELETE(text);
60                         }
61                         else if(!ServerInstance->ULine(user->server))
62                         {
63                                 // Ulines set SWHOISes silently
64                                 ServerInstance->WriteOpers("*** %s used SWHOIS to set %s's extra whois to '%s'", user->nick, dest->nick, line.c_str());
65                         }
66                         
67                         text = new std::string(line);
68                         dest->Extend("swhois", text);
69
70                         return CMD_SUCCESS;
71                 }
72
73                 return CMD_FAILURE;
74         }
75 };
76
77 class ModuleSWhois : public Module
78 {
79         cmd_swhois* mycommand;
80         
81         ConfigReader* Conf;
82         
83  public:
84         ModuleSWhois(InspIRCd* Me) : Module::Module(Me)
85         {
86                 
87                 Conf = new ConfigReader(ServerInstance);
88                 mycommand = new cmd_swhois(ServerInstance);
89                 ServerInstance->AddCommand(mycommand);
90         }
91
92         void OnRehash(const std::string &parameter)
93         {
94                 DELETE(Conf);
95                 Conf = new ConfigReader(ServerInstance);
96         }
97
98         void Implements(char* List)
99         {
100                 List[I_OnDecodeMetaData] = List[I_OnWhoisLine] = List[I_OnSyncUserMetaData] = List[I_OnUserQuit] = List[I_OnCleanup] = List[I_OnRehash] = List[I_OnPostCommand] = 1;
101         }
102
103         // :kenny.chatspike.net 320 Brain Azhrarn :is getting paid to play games.
104         int OnWhoisLine(userrec* user, userrec* dest, int &numeric, std::string &text)
105         {
106                 /* We use this and not OnWhois because this triggers for remote, too */
107                 if (numeric == 312)
108                 {
109                         /* Insert our numeric before 312 */
110                         std::string* swhois;
111                         dest->GetExt("swhois", swhois);
112                         if (swhois)
113                         {
114                                 ServerInstance->SendWhoisLine(user, dest, 320, "%s %s :%s",user->nick,dest->nick,swhois->c_str());
115                         }
116                 }
117                 /* Dont block anything */
118                 return 0;
119         }
120
121         // Whenever the linking module wants to send out data, but doesnt know what the data
122         // represents (e.g. it is metadata, added to a userrec or chanrec by a module) then
123         // this method is called. We should use the ProtoSendMetaData function after we've
124         // corrected decided how the data should look, to send the metadata on its way if
125         // it is ours.
126         virtual void OnSyncUserMetaData(userrec* user, Module* proto, void* opaque, const std::string &extname)
127         {
128                 ServerInstance->Log(DEBUG,"Sync user metadata type '%s'", extname.c_str());
129                 // check if the linking module wants to know about OUR metadata
130                 if (extname == "swhois")
131                 {
132                         // check if this user has an swhois field to send
133                         std::string* swhois;
134                         user->GetExt("swhois", swhois);
135                         if (swhois)
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,*swhois);
140                         }
141                         else
142                         {
143                                 ServerInstance->Log(DEBUG,"User has a null swhois string!");
144                         }
145                 }
146         }
147
148         // when a user quits, tidy up their metadata
149         virtual void OnUserQuit(userrec* user, const std::string &message)
150         {
151                 std::string* swhois;
152                 user->GetExt("swhois", swhois);
153                 if (swhois)
154                 {
155                         user->Shrink("swhois");
156                         DELETE(swhois);
157                 }
158         }
159
160         // if the module is unloaded, tidy up all our dangling metadata
161         virtual void OnCleanup(int target_type, void* item)
162         {
163                 if (target_type == TYPE_USER)
164                 {
165                         userrec* user = (userrec*)item;
166                         std::string* swhois;
167                         user->GetExt("swhois", swhois);
168                         if (swhois)
169                         {
170                                 user->Shrink("swhois");
171                                 DELETE(swhois);
172                         }
173                 }
174         }
175
176         // Whenever the linking module receives metadata from another server and doesnt know what
177         // to do with it (of course, hence the 'meta') it calls this method, and it is up to each
178         // module in turn to figure out if this metadata key belongs to them, and what they want
179         // to do with it.
180         // In our case we're only sending a single string around, so we just construct a std::string.
181         // Some modules will probably get much more complex and format more detailed structs and classes
182         // in a textual way for sending over the link.
183         virtual void OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata)
184         {
185                 // check if its our metadata key, and its associated with a user
186                 if ((target_type == TYPE_USER) && (extname == "swhois"))
187                 {
188                         ServerInstance->Log(DEBUG,"Extend with swhois");
189                         userrec* dest = (userrec*)target;
190                         // if they dont already have an swhois field, accept the remote server's
191                         std::string* text;
192                         if (!dest->GetExt("swhois", text))
193                         {
194                                 std::string* text = new std::string(extdata);
195                                 dest->Extend("swhois",text);
196                                 ServerInstance->Log(DEBUG,"extended: %s %s", dest->nick, text->c_str());
197                         }
198                 }
199         }
200         
201         virtual void OnPostCommand(const std::string &command, const char **params, int pcnt, userrec *user, CmdResult result, const std::string &original_line)
202         {
203                 if ((command != "OPER") || (result != CMD_SUCCESS))
204                         return;
205                 
206                 std::string swhois;
207                 
208                 for (int i = 0; i < Conf->Enumerate("oper"); i++)
209                 {
210                         std::string name = Conf->ReadValue("oper", "name", i);
211                         
212                         if (name == params[0])
213                         {
214                                 swhois = Conf->ReadValue("oper", "swhois", i);
215                                 break;
216                         }
217                 }
218                 
219                 if (!swhois.length())
220                 {
221                         for (int i = 0; i < Conf->Enumerate("type"); i++)
222                         {
223                                 std::string type = Conf->ReadValue("type", "name", i);
224                                 
225                                 if (type == user->oper)
226                                 {
227                                         swhois = Conf->ReadValue("type", "swhois", i);
228                                         break;
229                                 }
230                         }
231                 }
232
233                 std::string *old;
234                 if (user->GetExt("swhois", old))
235                 {
236                         user->Shrink("swhois");
237                         DELETE(old);
238                 }
239                 
240                 if (!swhois.length())
241                         return;
242                 
243                 std::string *text = new std::string(swhois);
244                 user->Extend("swhois", text);
245         }
246         
247         virtual ~ModuleSWhois()
248         {
249                 DELETE(Conf);
250         }
251         
252         virtual Version GetVersion()
253         {
254                 return Version(1,1,0,0,VF_VENDOR,API_VERSION);
255         }
256 };
257
258
259 class ModuleSWhoisFactory : public ModuleFactory
260 {
261  public:
262         ModuleSWhoisFactory()
263         {
264         }
265         
266         ~ModuleSWhoisFactory()
267         {
268         }
269         
270         virtual Module * CreateModule(InspIRCd* Me)
271         {
272                 return new ModuleSWhois(Me);
273         }
274         
275 };
276
277
278 extern "C" void * init_module( void )
279 {
280         return new ModuleSWhoisFactory;
281 }
282