]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_restrictchans.cpp
8e60359f6860a1a7e4341fc8b24fc55d8bb5c50d
[user/henk/code/inspircd.git] / src / modules / m_restrictchans.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: Only opers may create new channels if this module is loaded */
17
18 class ModuleRestrictChans : public Module
19 {
20
21
22         std::map<irc::string,int> allowchans;
23
24         void ReadConfig()
25         {
26                 ConfigReader* MyConf = new ConfigReader(ServerInstance);
27                 allowchans.clear();
28                 for (int i = 0; i < MyConf->Enumerate("allowchannel"); i++)
29                 {
30                         std::string txt;
31                         txt = MyConf->ReadValue("allowchannel", "name", i);
32                         irc::string channel = txt.c_str();
33                         allowchans[channel] = 1;
34                 }
35                 delete MyConf;
36         }
37
38  public:
39         ModuleRestrictChans(InspIRCd* Me)
40                 : Module(Me)
41         {
42
43                 ReadConfig();
44                 Implementation eventlist[] = { I_OnUserPreJoin, I_OnRehash };
45                 ServerInstance->Modules->Attach(eventlist, this, 2);
46         }
47
48         virtual void OnRehash(User* user)
49         {
50                 ReadConfig();
51         }
52
53
54         virtual ModResult OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs, const std::string &keygiven)
55         {
56                 irc::string x = cname;
57                 if (!IS_LOCAL(user))
58                         return MOD_RES_PASSTHRU;
59
60                 // channel does not yet exist (record is null, about to be created IF we were to allow it)
61                 if (!chan)
62                 {
63                         // user is not an oper and its not in the allow list
64                         if ((!IS_OPER(user)) && (allowchans.find(x) == allowchans.end()))
65                         {
66                                 user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s %s :Only IRC operators may create new channels",user->nick.c_str(),cname);
67                                 return MOD_RES_DENY;
68                         }
69                 }
70                 return MOD_RES_PASSTHRU;
71         }
72
73         virtual ~ModuleRestrictChans()
74         {
75         }
76
77         virtual Version GetVersion()
78         {
79                 return Version("Only opers may create new channels if this module is loaded",VF_VENDOR,API_VERSION);
80         }
81 };
82
83 MODULE_INIT(ModuleRestrictChans)