]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_restrictchans.cpp
4d3bdb997db0fad503032ab369db6cf3c0b8f244
[user/henk/code/inspircd.git] / src / modules / m_restrictchans.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2018-2019 linuxdaemon <linuxdaemon.irc@gmail.com>
5  *   Copyright (C) 2013, 2020 Sadie Powell <sadie@witchery.services>
6  *   Copyright (C) 2013 Attila Molnar <attilamolnar@hush.com>
7  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
8  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
9  *   Copyright (C) 2007, 2010 Craig Edwards <brain@inspircd.org>
10  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #include "inspircd.h"
27 #include "modules/account.h"
28
29 typedef insp::flat_set<std::string, irc::insensitive_swo> AllowChans;
30
31 class ModuleRestrictChans : public Module
32 {
33         AllowChans allowchans;
34         bool allowregistered;
35
36         bool CanCreateChannel(LocalUser* user, const std::string& name)
37         {
38                 const AccountExtItem* accountext = GetAccountExtItem();
39                 if (allowregistered && accountext && accountext->get(user))
40                         return true;
41
42                 if (user->HasPrivPermission("channels/restricted-create"))
43                         return true;
44
45                 for (AllowChans::const_iterator it = allowchans.begin(), it_end = allowchans.end(); it != it_end; ++it)
46                 {
47                         if (InspIRCd::Match(name, *it))
48                                 return true;
49                 }
50
51                 return false;
52         }
53
54  public:
55         ModuleRestrictChans()
56                 : allowregistered(false)
57         {
58         }
59
60         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
61         {
62                 AllowChans newallows;
63                 ConfigTagList tags = ServerInstance->Config->ConfTags("allowchannel");
64                 for (ConfigIter i = tags.first; i != tags.second; ++i)
65                 {
66                         const std::string name = i->second->getString("name");
67                         if (name.empty())
68                                 throw ModuleException("Empty <allowchannel:name> at " + i->second->getTagLocation());
69
70                         newallows.insert(name);
71                 }
72                 allowchans.swap(newallows);
73
74                 // Global config
75                 ConfigTag* tag = ServerInstance->Config->ConfValue("restrictchans");
76                 allowregistered = tag->getBool("allowregistered", false);
77         }
78
79         ModResult OnUserPreJoin(LocalUser* user, Channel* chan, const std::string& cname, std::string& privs, const std::string& keygiven) CXX11_OVERRIDE
80         {
81                 // channel does not yet exist (record is null, about to be created IF we were to allow it)
82                 if (!chan && !CanCreateChannel(user, cname))
83                 {
84                         user->WriteNumeric(ERR_BANNEDFROMCHAN, cname, "You are not allowed to create new channels.");
85                         return MOD_RES_DENY;
86                 }
87
88                 return MOD_RES_PASSTHRU;
89         }
90
91         Version GetVersion() CXX11_OVERRIDE
92         {
93                 return Version("Prevents unprivileged users from creating new channels.", VF_VENDOR);
94         }
95 };
96
97 MODULE_INIT(ModuleRestrictChans)