]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_chanlog.cpp
Remove two useless methods, chanlog is b0rked at the moment.
[user/henk/code/inspircd.git] / src / modules / m_chanlog.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 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 class ChannelLogStream : public LogStream
17 {
18  private:
19         std::string channel;
20
21  public:
22         ChannelLogStream(InspIRCd *Instance, int loglevel, const std::string &chan) : LogStream(Instance, loglevel), channel(chan)
23         {
24         }
25
26         virtual void OnLog(int loglevel, const std::string &type, const std::string &msg)
27         {
28                 Channel *c = ServerInstance->FindChan(channel);
29
30 printf("I got called\n");
31                 if (loglevel < this->loglvl)
32                         return;
33
34                 if (c)
35                 {
36                         char buf[MAXBUF];
37                         snprintf(buf, MAXBUF, "\2%s\2: %s", type.c_str(), msg.c_str());
38
39                         c->WriteChannelWithServ(ServerInstance->Config->ServerName, "PRIVMSG %s :%s", c->name, buf);
40                         ServerInstance->PI->SendChannelPrivmsg(c, 0, buf);
41                 }
42         }
43 };
44
45 /* $ModDesc: Logs output to a channel instead of / as well as a file. */
46
47 class ModuleChanLog : public Module
48 {
49  private:
50         std::vector<ChannelLogStream*> cls;
51  public:
52         ModuleChanLog(InspIRCd* Me) : Module(Me)
53         {
54         }
55
56         virtual ~ModuleChanLog()
57         {
58                 std::vector<ChannelLogStream*>::iterator i;
59                 while ((i = cls.begin()) != cls.end())
60                 {
61                         ServerInstance->Logs->DelLogStream(*i);
62                         cls.erase(i);
63                 }
64         }
65
66         virtual void OnReadConfig(ServerConfig* sc, ConfigReader* Conf)
67         {
68                 /* Since the CloseLogs prior to this hook just wiped out our logstreams for us, we just need to wipe the vector. */
69                 std::vector<ChannelLogStream*>().swap(cls);
70                 int index, max = Conf->Enumerate("log");
71                 cls.reserve(max);
72
73                 for (index = 0; index < max; ++index)
74                 {
75                         std::string method = Conf->ReadValue("log", "method", index);
76
77
78                         //if (method != "file")
79                         //      continue;
80
81                         std::string type = Conf->ReadValue("log", "type", index);
82                         std::string level = Conf->ReadValue("log", "level", index);
83                         int loglevel = DEFAULT;
84
85                         if (level == "debug")
86                         {
87                                 loglevel = DEBUG;
88                                 ServerInstance->Config->debugging = true;
89                         }
90                         else if (level == "verbose")
91                         {
92                                 loglevel = VERBOSE;
93                         }
94                         else if (level == "default")
95                         {
96                                 loglevel = DEFAULT;
97                         }
98                         else if (level == "sparse")
99                         {
100                                 loglevel = SPARSE;
101                         }
102                         else if (level == "none")
103                         {
104                                 loglevel = NONE;
105                         }
106
107                         std::string target = Conf->ReadValue("log", "target", index);
108
109 printf("looking at tag with method: %s type: %s level: %s target: %s", method.c_str(), type.c_str(), level.c_str(), target.c_str());
110
111                         ChannelLogStream* c = new ChannelLogStream(ServerInstance, loglevel, target);
112                         ServerInstance->Logs->AddLogTypes(type, c, true);
113                         cls.push_back(c);
114                 }
115         }
116
117         virtual Version GetVersion()
118         {
119                 return Version(1,2,0,1,VF_VENDOR,API_VERSION);
120         }
121 };
122
123
124 MODULE_INIT(ModuleChanLog)
125