]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_mlock.cpp
9b0fa8dab0b8438a49fe8e1b83f608bc936ea3ba
[user/henk/code/inspircd.git] / src / modules / m_mlock.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2012 William Pitcock <nenolod@dereferenced.org>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #include "inspircd.h"
21
22 class ModuleMLock : public Module
23 {
24         StringExtItem mlock;
25
26  public:
27         ModuleMLock()
28                 : mlock("mlock", ExtensionItem::EXT_CHANNEL, this)
29         {
30         }
31
32         Version GetVersion() CXX11_OVERRIDE
33         {
34                 return Version("Implements the ability to have server-side MLOCK enforcement.", VF_VENDOR);
35         }
36
37         ModResult OnRawMode(User* source, Channel* channel, ModeHandler* mh, const std::string& parameter, bool adding)
38         {
39                 if (!channel)
40                         return MOD_RES_PASSTHRU;
41
42                 if (!IS_LOCAL(source))
43                         return MOD_RES_PASSTHRU;
44
45                 std::string *mlock_str = mlock.get(channel);
46                 if (!mlock_str)
47                         return MOD_RES_PASSTHRU;
48
49                 const char mode = mh->GetModeChar();
50                 std::string::size_type p = mlock_str->find(mode);
51                 if (p != std::string::npos)
52                 {
53                         source->WriteNumeric(742, "%s %c %s :MODE cannot be set due to channel having an active MLOCK restriction policy",
54                                              channel->name.c_str(), mode, mlock_str->c_str());
55                         return MOD_RES_DENY;
56                 }
57
58                 return MOD_RES_PASSTHRU;
59         }
60 };
61
62 MODULE_INIT(ModuleMLock)