]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
f4cc5d3b99c85ecf8f252a2e7bc8e8eef1177ade
[user/henk/code/inspircd.git] / src / modules.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 "configreader.h"
15 #include "users.h"
16 #include "modules.h"
17 #include "wildcard.h"
18 #include "mode.h"
19 #include "xline.h"
20 #include "socket.h"
21 #include "socketengine.h"
22 #include "command_parse.h"
23 #include "dns.h"
24 #include "inspircd.h"
25
26 // version is a simple class for holding a modules version number
27 Version::Version(int major, int minor, int revision, int build, int flags, int api_ver)
28 : Major(major), Minor(minor), Revision(revision), Build(build), Flags(flags), API(api_ver)
29 {
30 }
31
32 Request::Request(char* anydata, Module* src, Module* dst)
33 : data(anydata), source(src), dest(dst)
34 {
35         /* Ensure that because this module doesnt support ID strings, it doesnt break modules that do
36          * by passing them uninitialized pointers (could happen)
37          */
38         id = '\0';
39 }
40
41 Request::Request(Module* src, Module* dst, const char* idstr)
42 : id(idstr), source(src), dest(dst)
43 {
44 };
45
46 char* Request::GetData()
47 {
48         return this->data;
49 }
50
51 const char* Request::GetId()
52 {
53         return this->id;
54 }
55
56 Module* Request::GetSource()
57 {
58         return this->source;
59 }
60
61 Module* Request::GetDest()
62 {
63         return this->dest;
64 }
65
66 char* Request::Send()
67 {
68         if (this->dest)
69         {
70                 return dest->OnRequest(this);
71         }
72         else
73         {
74                 return NULL;
75         }
76 }
77
78 Event::Event(char* anydata, Module* src, const std::string &eventid) : data(anydata), source(src), id(eventid) { };
79
80 char* Event::GetData()
81 {
82         return (char*)this->data;
83 }
84
85 Module* Event::GetSource()
86 {
87         return this->source;
88 }
89
90 char* Event::Send(InspIRCd* ServerInstance)
91 {
92         FOREACH_MOD(I_OnEvent,OnEvent(this));
93         return NULL;
94 }
95
96 std::string Event::GetEventID()
97 {
98         return this->id;
99 }
100
101
102 // These declarations define the behavours of the base class Module (which does nothing at all)
103
104                 Module::Module(InspIRCd* Me) : ServerInstance(Me) { }
105                 Module::~Module() { }
106 void            Module::OnUserConnect(userrec* user) { }
107 void            Module::OnUserQuit(userrec* user, const std::string& message, const std::string &oper_message) { }
108 void            Module::OnUserDisconnect(userrec* user) { }
109 void            Module::OnUserJoin(userrec* user, chanrec* channel, bool &silent) { }
110 void            Module::OnPostJoin(userrec* user, chanrec* channel) { }
111 void            Module::OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage, bool &silent) { }
112 void            Module::OnRehash(userrec* user, const std::string &parameter) { }
113 void            Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { }
114 int             Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname, std::string &privs) { return 0; }
115 void            Module::OnMode(userrec* user, void* dest, int target_type, const std::string &text) { };
116 Version         Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR,-1); }
117 void            Module::OnOper(userrec* user, const std::string &opertype) { };
118 void            Module::OnPostOper(userrec* user, const std::string &opertype) { };
119 void            Module::OnInfo(userrec* user) { };
120 void            Module::OnWhois(userrec* source, userrec* dest) { };
121 int             Module::OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel) { return 0; };
122 int             Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text,char status, CUList &exempt_list) { return 0; };
123 int             Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text,char status, CUList &exempt_list) { return 0; };
124 int             Module::OnUserPreNick(userrec* user, const std::string &newnick) { return 0; };
125 void            Module::OnUserPostNick(userrec* user, const std::string &oldnick) { };
126 int             Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; };
127 void            Module::On005Numeric(std::string &output) { };
128 int             Module::OnKill(userrec* source, userrec* dest, const std::string &reason) { return 0; };
129 void            Module::OnLoadModule(Module* mod,const std::string &name) { };
130 void            Module::OnUnloadModule(Module* mod,const std::string &name) { };
131 void            Module::OnBackgroundTimer(time_t curtime) { };
132 int             Module::OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line) { return 0; };
133 void            Module::OnPostCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, CmdResult result, const std::string &original_line) { };
134 bool            Module::OnCheckReady(userrec* user) { return true; };
135 int             Module::OnUserRegister(userrec* user) { return 0; };
136 int             Module::OnUserPreKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason) { return 0; };
137 void            Module::OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason, bool &silent) { };
138 int             Module::OnCheckInvite(userrec* user, chanrec* chan) { return 0; };
139 int             Module::OnCheckKey(userrec* user, chanrec* chan, const std::string &keygiven) { return 0; };
140 int             Module::OnCheckLimit(userrec* user, chanrec* chan) { return 0; };
141 int             Module::OnCheckBan(userrec* user, chanrec* chan) { return 0; };
142 int             Module::OnStats(char symbol, userrec* user, string_list &results) { return 0; };
143 int             Module::OnChangeLocalUserHost(userrec* user, const std::string &newhost) { return 0; };
144 int             Module::OnChangeLocalUserGECOS(userrec* user, const std::string &newhost) { return 0; };
145 int             Module::OnLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic) { return 0; };
146 void            Module::OnEvent(Event* event) { return; };
147 char*           Module::OnRequest(Request* request) { return NULL; };
148 int             Module::OnOperCompare(const std::string &password, const std::string &input, int tagnumber) { return 0; };
149 void            Module::OnGlobalOper(userrec* user) { };
150 void            Module::OnPostConnect(userrec* user) { };
151 int             Module::OnAddBan(userrec* source, chanrec* channel,const std::string &banmask) { return 0; };
152 int             Module::OnDelBan(userrec* source, chanrec* channel,const std::string &banmask) { return 0; };
153 void            Module::OnRawSocketAccept(int fd, const std::string &ip, int localport) { };
154 int             Module::OnRawSocketWrite(int fd, const char* buffer, int count) { return 0; };
155 void            Module::OnRawSocketClose(int fd) { };
156 void            Module::OnRawSocketConnect(int fd) { };
157 int             Module::OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult) { return 0; };
158 void            Module::OnUserMessage(userrec* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list) { };
159 void            Module::OnUserNotice(userrec* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list) { };
160 void            Module::OnRemoteKill(userrec* source, userrec* dest, const std::string &reason) { };
161 void            Module::OnUserInvite(userrec* source,userrec* dest,chanrec* channel) { };
162 void            Module::OnPostLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic) { };
163 void            Module::OnGetServerDescription(const std::string &servername,std::string &description) { };
164 void            Module::OnSyncUser(userrec* user, Module* proto, void* opaque) { };
165 void            Module::OnSyncChannel(chanrec* chan, Module* proto, void* opaque) { };
166 void            Module::ProtoSendMode(void* opaque, int target_type, void* target, const std::string &modeline) { };
167 void            Module::OnSyncChannelMetaData(chanrec* chan, Module* proto,void* opaque, const std::string &extname) { };
168 void            Module::OnSyncUserMetaData(userrec* user, Module* proto,void* opaque, const std::string &extname) { };
169 void            Module::OnSyncOtherMetaData(Module* proto, void* opaque) { };
170 void            Module::OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata) { };
171 void            Module::ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata) { };
172 void            Module::OnWallops(userrec* user, const std::string &text) { };
173 void            Module::OnChangeHost(userrec* user, const std::string &newhost) { };
174 void            Module::OnChangeName(userrec* user, const std::string &gecos) { };
175 void            Module::OnAddGLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask) { };
176 void            Module::OnAddZLine(long duration, userrec* source, const std::string &reason, const std::string &ipmask) { };
177 void            Module::OnAddKLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask) { };
178 void            Module::OnAddQLine(long duration, userrec* source, const std::string &reason, const std::string &nickmask) { };
179 void            Module::OnAddELine(long duration, userrec* source, const std::string &reason, const std::string &hostmask) { };
180 void            Module::OnDelGLine(userrec* source, const std::string &hostmask) { };
181 void            Module::OnDelZLine(userrec* source, const std::string &ipmask) { };
182 void            Module::OnDelKLine(userrec* source, const std::string &hostmask) { };
183 void            Module::OnDelQLine(userrec* source, const std::string &nickmask) { };
184 void            Module::OnDelELine(userrec* source, const std::string &hostmask) { };
185 void            Module::OnCleanup(int target_type, void* item) { };
186 void            Module::Implements(char* Implements) { for (int j = 0; j < 255; j++) Implements[j] = 0; };
187 void            Module::OnChannelDelete(chanrec* chan) { };
188 Priority        Module::Prioritize() { return PRIORITY_DONTCARE; }
189 void            Module::OnSetAway(userrec* user) { };
190 void            Module::OnCancelAway(userrec* user) { };
191 int             Module::OnUserList(userrec* user, chanrec* Ptr) { return 0; };
192 int             Module::OnWhoisLine(userrec* user, userrec* dest, int &numeric, std::string &text) { return 0; };
193 void            Module::OnBuildExemptList(MessageType message_type, chanrec* chan, userrec* sender, char status, CUList &exempt_list) { };
194 void            Module::OnGarbageCollect() { };
195 void            Module::OnBufferFlushed(userrec* user) { };
196
197 long InspIRCd::PriorityAfter(const std::string &modulename)
198 {
199         for (unsigned int j = 0; j < this->Config->module_names.size(); j++)
200         {
201                 if (this->Config->module_names[j] == modulename)
202                 {
203                         return ((j << 8) | PRIORITY_AFTER);
204                 }
205         }
206         return PRIORITY_DONTCARE;
207 }
208
209 long InspIRCd::PriorityBefore(const std::string &modulename)
210 {
211         for (unsigned int j = 0; j < this->Config->module_names.size(); j++)
212         {
213                 if (this->Config->module_names[j] == modulename)
214                 {
215                         return ((j << 8) | PRIORITY_BEFORE);
216                 }
217         }
218         return PRIORITY_DONTCARE;
219 }
220
221 bool InspIRCd::PublishFeature(const std::string &FeatureName, Module* Mod)
222 {
223         if (Features.find(FeatureName) == Features.end())
224         {
225                 Features[FeatureName] = Mod;
226                 return true;
227         }
228         return false;
229 }
230
231 bool InspIRCd::UnpublishFeature(const std::string &FeatureName)
232 {
233         featurelist::iterator iter = Features.find(FeatureName);
234         
235         if (iter == Features.end())
236                 return false;
237
238         Features.erase(iter);
239         return true;
240 }
241
242 Module* InspIRCd::FindFeature(const std::string &FeatureName)
243 {
244         featurelist::iterator iter = Features.find(FeatureName);
245
246         if (iter == Features.end())
247                 return NULL;
248
249         return iter->second;
250 }
251
252 bool InspIRCd::PublishInterface(const std::string &InterfaceName, Module* Mod)
253 {
254         interfacelist::iterator iter = Interfaces.find(InterfaceName);
255
256         if (iter == Interfaces.end())
257         {
258                 modulelist ml;
259                 ml.push_back(Mod);
260                 Interfaces[InterfaceName] = std::make_pair(0, ml);
261                 return true;
262         }
263         else
264         {
265                 iter->second.second.push_back(Mod);
266                 return true;
267         }
268         return false;
269 }
270
271 bool InspIRCd::UnpublishInterface(const std::string &InterfaceName, Module* Mod)
272 {
273         interfacelist::iterator iter = Interfaces.find(InterfaceName);
274
275         if (iter == Interfaces.end())
276                 return false;
277
278         for (modulelist::iterator x = iter->second.second.begin(); x != iter->second.second.end(); x++)
279         {
280                 if (*x == Mod)
281                 {
282                         iter->second.second.erase(x);
283                         if (iter->second.second.empty())
284                                 Interfaces.erase(InterfaceName);
285                         return true;
286                 }
287         }
288         return false;
289 }
290
291 modulelist* InspIRCd::FindInterface(const std::string &InterfaceName)
292 {
293         interfacelist::iterator iter = Interfaces.find(InterfaceName);
294         if (iter == Interfaces.end())
295                 return NULL;
296         else
297                 return &(iter->second.second);
298 }
299
300 void InspIRCd::UseInterface(const std::string &InterfaceName)
301 {
302         interfacelist::iterator iter = Interfaces.find(InterfaceName);
303         if (iter != Interfaces.end())
304                 iter->second.first++;
305
306 }
307
308 void InspIRCd::DoneWithInterface(const std::string &InterfaceName)
309 {
310         interfacelist::iterator iter = Interfaces.find(InterfaceName);
311         if (iter != Interfaces.end())
312                 iter->second.first--;
313 }
314
315 std::pair<int,std::string> InspIRCd::GetInterfaceInstanceCount(Module* m)
316 {
317         for (interfacelist::iterator iter = Interfaces.begin(); iter != Interfaces.end(); iter++)
318         {
319                 for (modulelist::iterator x = iter->second.second.begin(); x != iter->second.second.end(); x++)
320                 {
321                         if (*x == m)
322                         {
323                                 return std::make_pair(iter->second.first, iter->first);
324                         }
325                 }
326         }
327         return std::make_pair(0, "");
328 }
329
330 const std::string& InspIRCd::GetModuleName(Module* m)
331 {
332         static std::string nothing = ""; /* Prevent compiler warning */
333
334         if (!this->GetModuleCount())
335                 return nothing;
336
337         for (int i = 0; i <= this->GetModuleCount(); i++)
338         {
339                 if (this->modules[i] == m)
340                 {
341                         return this->Config->module_names[i];
342                 }
343         }
344         return nothing; /* As above */
345 }
346
347 void InspIRCd::RehashServer()
348 {
349         this->WriteOpers("*** Rehashing config file");
350         this->RehashUsersAndChans();
351         this->Config->Read(false,NULL);
352         this->ResetMaxBans();
353         this->Res->Rehash();
354 }
355
356 /* This is ugly, yes, but hash_map's arent designed to be
357  * addressed in this manner, and this is a bit of a kludge.
358  * Luckily its a specialist function and rarely used by
359  * many modules (in fact, it was specially created to make
360  * m_safelist possible, initially).
361  */
362
363 chanrec* InspIRCd::GetChannelIndex(long index)
364 {
365         int target = 0;
366         for (chan_hash::iterator n = this->chanlist->begin(); n != this->chanlist->end(); n++, target++)
367         {
368                 if (index == target)
369                         return n->second;
370         }
371         return NULL;
372 }
373
374 bool InspIRCd::MatchText(const std::string &sliteral, const std::string &spattern)
375 {
376         return match(sliteral.c_str(),spattern.c_str());
377 }
378
379 bool InspIRCd::CallCommandHandler(const std::string &commandname, const char** parameters, int pcnt, userrec* user)
380 {
381         return this->Parser->CallHandler(commandname,parameters,pcnt,user);
382 }
383
384 bool InspIRCd::IsValidModuleCommand(const std::string &commandname, int pcnt, userrec* user)
385 {
386         return this->Parser->IsValidCommand(commandname, pcnt, user);
387 }
388
389 void InspIRCd::AddCommand(command_t *f)
390 {
391         if (!this->Parser->CreateCommand(f))
392         {
393                 ModuleException err("Command "+std::string(f->command)+" already exists.");
394                 throw (err);
395         }
396 }
397
398 void InspIRCd::SendMode(const char** parameters, int pcnt, userrec *user)
399 {
400         this->Modes->Process(parameters,pcnt,user,true);
401 }
402
403 void InspIRCd::DumpText(userrec* User, const std::string &LinePrefix, stringstream &TextStream)
404 {
405         std::string CompleteLine = LinePrefix;
406         std::string Word = "";
407         while (TextStream >> Word)
408         {
409                 if (CompleteLine.length() + Word.length() + 3 > 500)
410                 {
411                         User->WriteServ(CompleteLine);
412                         CompleteLine = LinePrefix;
413                 }
414                 CompleteLine = CompleteLine + Word + " ";
415         }
416         User->WriteServ(CompleteLine);
417 }
418
419 userrec* InspIRCd::FindDescriptor(int socket)
420 {
421         return reinterpret_cast<userrec*>(this->SE->GetRef(socket));
422 }
423
424 bool InspIRCd::AddMode(ModeHandler* mh, const unsigned char mode)
425 {
426         return this->Modes->AddMode(mh,mode);
427 }
428
429 bool InspIRCd::AddModeWatcher(ModeWatcher* mw)
430 {
431         return this->Modes->AddModeWatcher(mw);
432 }
433
434 bool InspIRCd::DelModeWatcher(ModeWatcher* mw)
435 {
436         return this->Modes->DelModeWatcher(mw);
437 }
438
439 bool InspIRCd::AddResolver(Resolver* r, bool cached)
440 {
441         if (!cached)
442                 return this->Res->AddResolverClass(r);
443         else
444         {
445                 r->TriggerCachedResult();
446                 delete r;
447                 return true;
448         }
449 }
450
451 bool InspIRCd::UserToPseudo(userrec* user, const std::string &message)
452 {
453         throw CoreException("The InspIRCd::UsertoPseudo function should not be used in InspIRCd later than 1.0.x");
454         return false;
455 }
456
457 bool InspIRCd::PseudoToUser(userrec* alive, userrec* zombie, const std::string &message)
458 {
459         throw CoreException("The InspIRCd::PseudotoUser function should not be used in InspIRCd later than 1.0.x");
460         return false;
461 }
462
463 void InspIRCd::AddGLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
464 {
465         XLines->add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
466         XLines->apply_lines(APPLY_GLINES);
467 }
468
469 void InspIRCd::AddQLine(long duration, const std::string &source, const std::string &reason, const std::string &nickname)
470 {
471         XLines->add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
472         XLines->apply_lines(APPLY_QLINES);
473 }
474
475 void InspIRCd::AddZLine(long duration, const std::string &source, const std::string &reason, const std::string &ipaddr)
476 {
477         XLines->add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
478         XLines->apply_lines(APPLY_ZLINES);
479 }
480
481 void InspIRCd::AddKLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
482 {
483         XLines->add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
484         XLines->apply_lines(APPLY_KLINES);
485 }
486
487 void InspIRCd::AddELine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
488 {
489         XLines->add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
490 }
491
492 bool InspIRCd::DelGLine(const std::string &hostmask)
493 {
494         return XLines->del_gline(hostmask.c_str());
495 }
496
497 bool InspIRCd::DelQLine(const std::string &nickname)
498 {
499         return XLines->del_qline(nickname.c_str());
500 }
501
502 bool InspIRCd::DelZLine(const std::string &ipaddr)
503 {
504         return XLines->del_zline(ipaddr.c_str());
505 }
506
507 bool InspIRCd::DelKLine(const std::string &hostmask)
508 {
509         return XLines->del_kline(hostmask.c_str());
510 }
511
512 bool InspIRCd::DelELine(const std::string &hostmask)
513 {
514         return XLines->del_eline(hostmask.c_str());
515 }
516
517 /*
518  * XXX why on *earth* is this in modules.cpp...? I think
519  * perhaps we need a server.cpp for InspIRCd:: stuff where possible. -- w00t
520  */
521 bool InspIRCd::IsValidMask(const std::string &mask)
522 {
523         char* dest = (char*)mask.c_str();
524         if (strchr(dest,'!')==0)
525                 return false;
526         if (strchr(dest,'@')==0)
527                 return false;
528         for (char* i = dest; *i; i++)
529                 if (*i < 32)
530                         return false;
531         for (char* i = dest; *i; i++)
532                 if (*i > 126)
533                         return false;
534         unsigned int c = 0;
535         for (char* i = dest; *i; i++)
536                 if (*i == '!')
537                         c++;
538         if (c>1)
539                 return false;
540         c = 0;
541         for (char* i = dest; *i; i++)
542                 if (*i == '@')
543                         c++;
544         if (c>1)
545                 return false;
546
547         return true;
548 }
549
550 Module* InspIRCd::FindModule(const std::string &name)
551 {
552         for (int i = 0; i <= this->GetModuleCount(); i++)
553         {
554                 if (this->Config->module_names[i] == name)
555                 {
556                         return this->modules[i];
557                 }
558         }
559         return NULL;
560 }
561
562 ConfigReader::ConfigReader(InspIRCd* Instance) : ServerInstance(Instance)
563 {
564         /* Is there any reason to load the entire config file again here?
565          * it's needed if they specify another config file, but using the
566          * default one we can just use the global config data - pre-parsed!
567          */
568         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
569         
570         this->data = &ServerInstance->Config->config_data;
571         this->privatehash = false;
572 }
573
574
575 ConfigReader::~ConfigReader()
576 {
577         if (this->errorlog)
578                 DELETE(this->errorlog);
579         if(this->privatehash)
580                 DELETE(this->data);
581 }
582
583
584 ConfigReader::ConfigReader(InspIRCd* Instance, const std::string &filename) : ServerInstance(Instance)
585 {
586         ServerInstance->Config->ClearStack();
587
588         this->data = new ConfigDataHash;
589         this->privatehash = true;
590         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
591         this->readerror = ServerInstance->Config->LoadConf(*this->data, filename, *this->errorlog);
592         if (!this->readerror)
593                 this->error = CONF_FILE_NOT_FOUND;
594 };
595
596
597 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool allow_linefeeds)
598 {
599         /* Don't need to strlcpy() tag and name anymore, ReadConf() takes const char* */ 
600         std::string result;
601         
602         if (!ServerInstance->Config->ConfValue(*this->data, tag, name, default_value, index, result, allow_linefeeds))
603         {
604                 this->error = CONF_VALUE_NOT_FOUND;
605         }
606         return result;
607 }
608
609 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, int index, bool allow_linefeeds)
610 {
611         return ReadValue(tag, name, "", index, allow_linefeeds);
612 }
613
614 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, const std::string &default_value, int index)
615 {
616         return ServerInstance->Config->ConfValueBool(*this->data, tag, name, default_value, index);
617 }
618
619 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, int index)
620 {
621         return ReadFlag(tag, name, "", index);
622 }
623
624
625 long ConfigReader::ReadInteger(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool needs_unsigned)
626 {
627         int result;
628         
629         if(!ServerInstance->Config->ConfValueInteger(*this->data, tag, name, default_value, index, result))
630         {
631                 this->error = CONF_VALUE_NOT_FOUND;
632                 return 0;
633         }
634         
635         if ((needs_unsigned) && (result < 0))
636         {
637                 this->error = CONF_NOT_UNSIGNED;
638                 return 0;
639         }
640         
641         return result;
642 }
643
644 long ConfigReader::ReadInteger(const std::string &tag, const std::string &name, int index, bool needs_unsigned)
645 {
646         return ReadInteger(tag, name, "", index, needs_unsigned);
647 }
648
649 long ConfigReader::GetError()
650 {
651         long olderr = this->error;
652         this->error = 0;
653         return olderr;
654 }
655
656 void ConfigReader::DumpErrors(bool bail, userrec* user)
657 {
658         ServerInstance->Config->ReportConfigError(this->errorlog->str(), bail, user);
659 }
660
661
662 int ConfigReader::Enumerate(const std::string &tag)
663 {
664         return ServerInstance->Config->ConfValueEnum(*this->data, tag);
665 }
666
667 int ConfigReader::EnumerateValues(const std::string &tag, int index)
668 {
669         return ServerInstance->Config->ConfVarEnum(*this->data, tag, index);
670 }
671
672 bool ConfigReader::Verify()
673 {
674         return this->readerror;
675 }
676
677
678 FileReader::FileReader(InspIRCd* Instance, const std::string &filename) : ServerInstance(Instance)
679 {
680         LoadFile(filename);
681 }
682
683 FileReader::FileReader(InspIRCd* Instance) : ServerInstance(Instance)
684 {
685 }
686
687 std::string FileReader::Contents()
688 {
689         std::string x = "";
690         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
691         {
692                 x.append(*a);
693                 x.append("\r\n");
694         }
695         return x;
696 }
697
698 unsigned long FileReader::ContentSize()
699 {
700         return this->contentsize;
701 }
702
703 void FileReader::CalcSize()
704 {
705         unsigned long n = 0;
706         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
707                 n += (a->length() + 2);
708         this->contentsize = n;
709 }
710
711 void FileReader::LoadFile(const std::string &filename)
712 {
713         file_cache c;
714         c.clear();
715         if (ServerInstance->Config->ReadFile(c,filename.c_str()))
716         {
717                 this->fc = c;
718                 this->CalcSize();
719         }
720 }
721
722
723 FileReader::~FileReader()
724 {
725 }
726
727 bool FileReader::Exists()
728 {
729         return (!(fc.size() == 0));
730 }
731
732 std::string FileReader::GetLine(int x)
733 {
734         if ((x<0) || ((unsigned)x>fc.size()))
735                 return "";
736         return fc[x];
737 }
738
739 int FileReader::FileSize()
740 {
741         return fc.size();
742 }
743
744