]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_denychans.cpp
Minor spelling errors in m_spanningtree.so
[user/henk/code/inspircd.git] / src / modules / m_denychans.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
7  *   Copyright (C) 2005 Craig Edwards <craigedwards@brainbox.cc>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #include "inspircd.h"
24
25 /* $ModDesc: Implements config tags which allow blocking of joins to channels */
26
27 class ModuleDenyChannels : public Module
28 {
29  public:
30         void init()
31         {
32                 Implementation eventlist[] = { I_OnUserPreJoin, I_OnRehash };
33                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
34         }
35
36         virtual void OnRehash(User* user)
37         {
38                 /* check for redirect validity and loops/chains */
39                 ConfigTagList tags = ServerInstance->Config->ConfTags("badchan");
40                 for (ConfigIter i = tags.first; i != tags.second; ++i)
41                 {
42                         std::string name = i->second->getString("name");
43                         std::string redirect = i->second->getString("redirect");
44
45                         if (!redirect.empty())
46                         {
47
48                                 if (!ServerInstance->IsChannel(redirect.c_str(), ServerInstance->Config->Limits.ChanMax))
49                                 {
50                                         if (user)
51                                                 user->WriteServ("NOTICE %s :Invalid badchan redirect '%s'", user->nick.c_str(), redirect.c_str());
52                                         throw ModuleException("Invalid badchan redirect, not a channel");
53                                 }
54
55                                 for (ConfigIter j = tags.first; j != tags.second; ++j)
56                                 {
57                                         if (InspIRCd::Match(redirect, j->second->getString("name")))
58                                         {
59                                                 bool goodchan = false;
60                                                 ConfigTagList goodchans = ServerInstance->Config->ConfTags("goodchan");
61                                                 for (ConfigIter k = goodchans.first; k != goodchans.second; ++k)
62                                                 {
63                                                         if (InspIRCd::Match(redirect, k->second->getString("name")))
64                                                                 goodchan = true;
65                                                 }
66
67                                                 if (!goodchan)
68                                                 {
69                                                         /* <badchan:redirect> is a badchan */
70                                                         if (user)
71                                                                 user->WriteServ("NOTICE %s :Badchan %s redirects to badchan %s", user->nick.c_str(), name.c_str(), redirect.c_str());
72                                                         throw ModuleException("Badchan redirect loop");
73                                                 }
74                                         }
75                                 }
76                         }
77                 }
78         }
79
80         virtual ~ModuleDenyChannels()
81         {
82         }
83
84         virtual Version GetVersion()
85         {
86                 return Version("Implements config tags which allow blocking of joins to channels", VF_VENDOR);
87         }
88
89
90         virtual ModResult OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs, const std::string &keygiven)
91         {
92                 ConfigTagList tags = ServerInstance->Config->ConfTags("badchan");
93                 for (ConfigIter j = tags.first; j != tags.second; ++j)
94                 {
95                         if (InspIRCd::Match(cname, j->second->getString("name")))
96                         {
97                                 if (IS_OPER(user) && j->second->getBool("allowopers"))
98                                 {
99                                         return MOD_RES_PASSTHRU;
100                                 }
101                                 else
102                                 {
103                                         std::string reason = j->second->getString("reason");
104                                         std::string redirect = j->second->getString("redirect");
105
106                                         ConfigTagList goodchans = ServerInstance->Config->ConfTags("goodchan");
107                                         for (ConfigIter i = goodchans.first; i != goodchans.second; ++i)
108                                         {
109                                                 if (InspIRCd::Match(cname, i->second->getString("name")))
110                                                 {
111                                                         return MOD_RES_PASSTHRU;
112                                                 }
113                                         }
114
115                                         if (ServerInstance->IsChannel(redirect.c_str(), ServerInstance->Config->Limits.ChanMax))
116                                         {
117                                                 /* simple way to avoid potential loops: don't redirect to +L channels */
118                                                 Channel *newchan = ServerInstance->FindChan(redirect);
119                                                 if ((!newchan) || (!(newchan->IsModeSet('L'))))
120                                                 {
121                                                         user->WriteNumeric(926, "%s %s :Channel %s is forbidden, redirecting to %s: %s",user->nick.c_str(),cname,cname,redirect.c_str(), reason.c_str());
122                                                         Channel::JoinUser(user,redirect.c_str(),false,"",false,ServerInstance->Time());
123                                                         return MOD_RES_DENY;
124                                                 }
125                                         }
126
127                                         user->WriteNumeric(926, "%s %s :Channel %s is forbidden: %s",user->nick.c_str(),cname,cname,reason.c_str());
128                                         return MOD_RES_DENY;
129                                 }
130                         }
131                 }
132                 return MOD_RES_PASSTHRU;
133         }
134 };
135
136 MODULE_INIT(ModuleDenyChannels)