]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Added Server::CountUsers function
[user/henk/code/inspircd.git] / src / modules.cpp
1 /*
2
3
4 */
5
6
7
8 #include <typeinfo>
9 #include <iostream>
10 #include "globals.h"
11 #include "modules.h"
12 #include "ctables.h"
13 #include "inspircd_io.h"
14 #include "wildcard.h"
15
16 // class type for holding an extended mode character - internal to core
17
18 class ExtMode
19 {
20 public:
21         char modechar;
22         int type;
23         int params_when_on;
24         int params_when_off;
25         bool needsoper;
26         ExtMode(char mc, int ty, bool oper, int p_on, int p_off) : modechar(mc), type(ty), needsoper(oper), params_when_on(p_on), params_when_off(p_off) { };
27 };                                     
28
29 typedef std::vector<ExtMode> ExtModeList;
30 typedef ExtModeList::iterator ExtModeListIter;
31
32 ExtModeList EMode;
33
34 // returns true if an extended mode character is in use
35 bool ModeDefined(char modechar, int type)
36 {
37         log(DEBUG,"Size of extmodes vector is %d",EMode.size());
38         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
39         {
40                 log(DEBUG,"i->modechar==%c, modechar=%c, i->type=%d, type=%d",i->modechar,modechar,i->type,type);
41                 if ((i->modechar == modechar) && (i->type == type))
42                 {
43                         return true;
44                 }
45         }
46         return false;
47 }
48
49 bool ModeDefinedOper(char modechar, int type)
50 {
51         log(DEBUG,"Size of extmodes vector is %d",EMode.size());
52         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
53         {
54                 log(DEBUG,"i->modechar==%c, modechar=%c, i->type=%d, type=%d",i->modechar,modechar,i->type,type);
55                 if ((i->modechar == modechar) && (i->type == type) && (i->needsoper == true))
56                 {
57                         return true;
58                 }
59         }
60         return false;
61 }
62
63 // returns number of parameters for a custom mode when it is switched on
64 int ModeDefinedOn(char modechar, int type)
65 {
66         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
67         {
68                 if ((i->modechar == modechar) && (i->type == type))
69                 {
70                         return i->params_when_on;
71                 }
72         }
73         return 0;
74 }
75
76 // returns number of parameters for a custom mode when it is switched on
77 int ModeDefinedOff(char modechar, int type)
78 {
79         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
80         {
81                 if ((i->modechar == modechar) && (i->type == type))
82                 {
83                         return i->params_when_off;
84                 }
85         }
86         return 0;
87 }
88
89 // returns true if an extended mode character is in use
90 bool DoAddExtendedMode(char modechar, int type, bool requires_oper, int params_on, int params_off)
91 {
92         if (ModeDefined(modechar,type)) {
93                 return false;
94         }
95         EMode.push_back(ExtMode(modechar,type,requires_oper,params_on,params_off));
96         return true;
97 }
98
99
100 // version is a simple class for holding a modules version number
101
102 Version::Version(int major, int minor, int revision, int build) : Major(major), Minor(minor), Revision(revision), Build(build) { };
103
104 // admin is a simple class for holding a server's administrative info
105
106 Admin::Admin(std::string name, std::string email, std::string nick) : Name(name), Email(email), Nick(nick) { };
107
108 Module::Module() { }
109 Module::~Module() { }
110 void Module::OnUserConnect(userrec* user) { }
111 void Module::OnUserQuit(userrec* user) { }
112 void Module::OnUserJoin(userrec* user, chanrec* channel) { }
113 void Module::OnUserPart(userrec* user, chanrec* channel) { }
114 void Module::OnPacketTransmit(char *p) { }
115 void Module::OnPacketReceive(char *p) { }
116 void Module::OnRehash() { }
117 void Module::OnServerRaw(std::string &raw, bool inbound) { }
118 int Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { return 0; }
119 bool Module::OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params) { }
120 Version Module::GetVersion() { return Version(1,0,0,0); }
121 void Module::OnOper(userrec* user) { };
122 void Module::OnInfo(userrec* user) { };
123 void Module::OnWhois(userrec* source, userrec* dest) { };
124 int Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string text) { return 0; };
125 int Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string text) { return 0; };
126
127 // server is a wrapper class that provides methods to all of the C-style
128 // exports in the core
129 //
130
131 Server::Server()
132 {
133 }
134
135 Server::~Server()
136 {
137 }
138
139 void Server::SendOpers(std::string s)
140 {
141         WriteOpers("%s",s.c_str());
142 }
143
144 bool Server::MatchText(std::string sliteral, std::string spattern)
145 {
146         char literal[MAXBUF],pattern[MAXBUF];
147         strncpy(literal,sliteral.c_str(),MAXBUF);
148         strncpy(pattern,spattern.c_str(),MAXBUF);
149         return match(literal,pattern);
150 }
151
152 void Server::SendToModeMask(std::string modes, int flags, std::string text)
153 {
154         WriteMode(modes.c_str(),flags,"%s",text.c_str());
155 }
156
157 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key)
158 {
159         return add_channel(user,cname.c_str(),key.c_str());
160 }
161
162 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason)
163 {
164         return del_channel(user,cname.c_str(),reason.c_str());
165 }
166
167 void Server::ChangeUserNick(userrec* user, std::string nickname)
168 {
169         force_nickchange(user,nickname.c_str());
170 }
171
172 void Server::QuitUser(userrec* user, std::string reason)
173 {
174         kill_link(user,reason.c_str());
175 }
176
177
178 void Server::Log(int level, std::string s)
179 {
180         log(level,"%s",s.c_str());
181 }
182
183 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams)
184 {
185         createcommand(cmd,f,flags,minparams);
186 }
187
188 void Server::SendMode(char **parameters, int pcnt, userrec *user)
189 {
190         server_mode(parameters,pcnt,user);
191 }
192
193 void Server::Send(int Socket, std::string s)
194 {
195         Write(Socket,"%s",s.c_str());
196 }
197
198 void Server::SendServ(int Socket, std::string s)
199 {
200         WriteServ(Socket,"%s",s.c_str());
201 }
202
203 void Server::SendFrom(int Socket, userrec* User, std::string s)
204 {
205         WriteFrom(Socket,User,"%s",s.c_str());
206 }
207
208 void Server::SendTo(userrec* Source, userrec* Dest, std::string s)
209 {
210         if (!Source)
211         {
212                 // if source is NULL, then the message originates from the local server
213                 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str());
214         }
215         else
216         {
217                 // otherwise it comes from the user specified
218                 WriteTo(Source,Dest,"%s",s.c_str());
219         }
220 }
221
222 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender)
223 {
224         if (IncludeSender)
225         {
226                 WriteChannel(Channel,User,"%s",s.c_str());
227         }
228         else
229         {
230                 ChanExceptSender(Channel,User,"%s",s.c_str());
231         }
232 }
233
234 bool Server::CommonChannels(userrec* u1, userrec* u2)
235 {
236         return (common_channels(u1,u2) != 0);
237 }
238
239 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender)
240 {
241         if (IncludeSender)
242         {
243                 WriteCommon(User,"%s",text.c_str());
244         }
245         else
246         {
247                 WriteCommonExcept(User,"%s",text.c_str());
248         }
249 }
250
251 void Server::SendWallops(userrec* User, std::string text)
252 {
253         WriteWallOps(User,"%s",text.c_str());
254 }
255
256 bool Server::IsNick(std::string nick)
257 {
258         return (isnick(nick.c_str()) != 0);
259 }
260
261 userrec* Server::FindNick(std::string nick)
262 {
263         return Find(nick);
264 }
265
266 chanrec* Server::FindChannel(std::string channel)
267 {
268         return FindChan(channel.c_str());
269 }
270
271 std::string Server::ChanMode(userrec* User, chanrec* Chan)
272 {
273         return cmode(User,Chan);
274 }
275
276 std::string Server::GetServerName()
277 {
278         return getservername();
279 }
280
281 std::string Server::GetNetworkName()
282 {
283         return getnetworkname();
284 }
285
286 Admin Server::GetAdmin()
287 {
288         return Admin(getadminname(),getadminemail(),getadminnick());
289 }
290
291
292
293 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)
294 {
295         if (type == MT_SERVER)
296         {
297                 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion");
298                 return false;
299         }
300         if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
301         {
302                 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported");
303                 return false;
304         }
305         if ((params_when_on>1) || (params_when_off>1))
306         {
307                 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported");
308                 return false;
309         }
310         return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
311 }
312
313 int Server::CountUsers(chanrec* c)
314 {
315         return usercount(c);
316 }
317
318
319 ConfigReader::ConfigReader()
320 {
321         this->cache = new std::stringstream(stringstream::in | stringstream::out);
322         this->error = LoadConf(CONFIG_FILE,this->cache);
323 }
324
325
326 ConfigReader::~ConfigReader()
327 {
328         if (this->cache)
329                 delete this->cache;
330 }
331
332
333 ConfigReader::ConfigReader(std::string filename)
334 {
335         this->cache = new std::stringstream(stringstream::in | stringstream::out);
336         this->error = LoadConf(filename.c_str(),this->cache);
337 };
338
339 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index)
340 {
341         char val[MAXBUF];
342         ReadConf(cache,tag.c_str(),name.c_str(),index,val);
343         return val;
344 }
345
346
347 int ConfigReader::Enumerate(std::string tag)
348 {
349         return EnumConf(cache,tag.c_str());
350 }
351
352
353 bool ConfigReader::Verify()
354 {
355         return this->error;
356 }
357
358
359 FileReader::FileReader(std::string filename)
360 {
361         file_cache c;
362         readfile(c,filename.c_str());
363         this->fc = c;
364 }
365
366 FileReader::FileReader()
367 {
368 }
369
370 void FileReader::LoadFile(std::string filename)
371 {
372         file_cache c;
373         readfile(c,filename.c_str());
374         this->fc = c;
375 }
376
377
378 FileReader::~FileReader()
379 {
380 }
381
382 bool FileReader::Exists()
383 {
384         if (fc.size() == 0)
385         {
386                 return(false);
387         }
388         else
389         {
390                 return(true);
391         }
392 }
393
394 std::string FileReader::GetLine(int x)
395 {
396         if ((x<0) || (x>fc.size()))
397                 return "";
398         return fc[x];
399 }
400
401 int FileReader::FileSize()
402 {
403         return fc.size();
404 }
405
406
407 std::vector<Module*> modules(255);
408 std::vector<ircd_module*> factory(255);
409
410 int MODCOUNT  = -1;
411
412