]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_chanlog.cpp
Fix m_chanlog crashing.
[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                 if (loglevel < this->loglvl) return;
31
32                 if (c)
33                 {
34                         // So this won't work remotely. Oh well.
35                         c->WriteChannelWithServ(ServerInstance->Config->ServerName, "PRIVMSG %s :\2%s\2: %s", c->name, type.c_str(), msg.c_str());
36                 }
37         }
38 };
39
40 /* $ModDesc: Logs output to a channel instead of / as well as a file. */
41
42 class ModuleChanLog : public Module
43 {
44  private:
45         ChannelLogStream *l;
46  public:
47         ModuleChanLog(InspIRCd* Me) : Module(Me)
48         {
49                 l = new ChannelLogStream(Me, ServerInstance->Config->LogLevel, "#services");
50                 Me->Logs->AddLogType("*", l);
51         }
52
53         virtual ~ModuleChanLog()
54         {
55                 delete l;
56         }
57
58         virtual Version GetVersion()
59         {
60                 return Version(1,1,0,1,VF_VENDOR,API_VERSION);
61         }
62 };
63
64
65 MODULE_INIT(ModuleChanLog)
66