]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_chancreate.cpp
c31cbe9cf2a5b110e0032e778719957285f7a1e6
[user/henk/code/inspircd.git] / src / modules / m_chancreate.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/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 /* $ModDesc: Creates a snomask with notices whenever a new channel is created */
17
18 class ModuleChanCreate : public Module
19 {
20  private:
21  public:
22         ModuleChanCreate(InspIRCd* Me)
23                 : Module(Me)
24         {
25                 ServerInstance->SNO->EnableSnomask('j', "CHANCREATE");
26                 ServerInstance->SNO->EnableSnomask('J', "REMOTECHANCREATE");
27                 Implementation eventlist[] = { I_OnUserJoin };
28                 ServerInstance->Modules->Attach(eventlist, this, 1);
29         }
30
31         ~ModuleChanCreate()
32         {
33                 ServerInstance->SNO->DisableSnomask('j');
34                 ServerInstance->SNO->DisableSnomask('J');
35         }
36
37         Version GetVersion()
38         {
39                 return Version("Creates a snomask with notices whenever a new channel is created",VF_VENDOR,API_VERSION);
40         }
41
42
43         void OnUserJoin(Membership* memb, bool sync, bool created, CUList& except)
44         {
45                 if (created)
46                 {
47                         ServerInstance->SNO->WriteToSnoMask(IS_LOCAL(memb->user) ? 'j' : 'J', "Channel %s created by %s!%s@%s",
48                                 memb->chan->name.c_str(), memb->user->nick.c_str(), memb->user->ident.c_str(), memb->user->host.c_str());
49                 }
50         }
51 };
52
53 MODULE_INIT(ModuleChanCreate)