]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_mlock.cpp
Merge branch 'insp20' into master.
[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 enum
23 {
24         // From Charybdis.
25         ERR_MLOCKRESTRICTED = 742
26 };
27
28 class ModuleMLock : public Module
29 {
30         StringExtItem mlock;
31
32  public:
33         ModuleMLock()
34                 : mlock("mlock", ExtensionItem::EXT_CHANNEL, this)
35         {
36         }
37
38         Version GetVersion() CXX11_OVERRIDE
39         {
40                 return Version("Implements the ability to have server-side MLOCK enforcement.", VF_VENDOR);
41         }
42
43         ModResult OnRawMode(User* source, Channel* channel, ModeHandler* mh, const std::string& parameter, bool adding) CXX11_OVERRIDE
44         {
45                 if (!channel)
46                         return MOD_RES_PASSTHRU;
47
48                 if (!IS_LOCAL(source))
49                         return MOD_RES_PASSTHRU;
50
51                 std::string *mlock_str = mlock.get(channel);
52                 if (!mlock_str)
53                         return MOD_RES_PASSTHRU;
54
55                 const char mode = mh->GetModeChar();
56                 std::string::size_type p = mlock_str->find(mode);
57                 if (p != std::string::npos)
58                 {
59                         source->WriteNumeric(ERR_MLOCKRESTRICTED, channel->name, mode, *mlock_str, "MODE cannot be set due to channel having an active MLOCK restriction policy");
60                         return MOD_RES_DENY;
61                 }
62
63                 return MOD_RES_PASSTHRU;
64         }
65 };
66
67 MODULE_INIT(ModuleMLock)