]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_restrictchans.cpp
code tidyups
[user/henk/code/inspircd.git] / src / modules / m_restrictchans.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 /* $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, const std::string &parameter)
49         {
50                 ReadConfig();
51         }
52
53         
54         virtual int OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs, const std::string &keygiven)
55         {
56                 irc::string x = cname;
57                 // user is not an oper and its not in the allow list
58                 if ((!IS_OPER(user)) && (allowchans.find(x) == allowchans.end()))
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->WriteNumeric(530, "%s %s :Only IRC operators may create new channels",user->nick,cname);
64                                 return 1;
65                         }
66                 }
67                 return 0;
68         }
69         
70         virtual ~ModuleRestrictChans()
71         {
72         }
73         
74         virtual Version GetVersion()
75         {
76                 return Version(1,2,0,1,VF_VENDOR,API_VERSION);
77         }
78 };
79
80 MODULE_INIT(ModuleRestrictChans)