]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_mlock.cpp
Merge insp20
[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 /* $ModDesc: Implements the ability to have server-side MLOCK enforcement. */
21
22 #include "inspircd.h"
23
24 class ModuleMLock : public Module
25 {
26         StringExtItem mlock;
27
28 public:
29         ModuleMLock() : mlock("mlock", this) {};
30
31         void init()
32         {
33                 ServerInstance->Modules->Attach(I_OnPreMode, this);
34                 ServerInstance->Modules->AddService(this->mlock);
35         }
36
37         Version GetVersion()
38         {
39                 return Version("Implements the ability to have server-side MLOCK enforcement.", VF_VENDOR);
40         }
41
42         void Prioritize()
43         {
44                 ServerInstance->Modules->SetPriority(this, I_OnPreMode, PRIORITY_FIRST);
45         }
46
47         ModResult OnPreMode(User* source, User* dest, Channel* channel, const std::vector<std::string>& parameters)
48         {
49                 if (!channel)
50                         return MOD_RES_PASSTHRU;
51
52                 if (!IS_LOCAL(source))
53                         return MOD_RES_PASSTHRU;
54
55                 std::string *mlock_str = mlock.get(channel);
56                 if (!mlock_str)
57                         return MOD_RES_PASSTHRU;
58
59                 std::string::size_type p = parameters[1].find_first_of(*mlock_str);
60                 if (p != std::string::npos)
61                 {
62                         source->WriteNumeric(742, "%s %c %s :MODE cannot be set due to channel having an active MLOCK restriction policy",
63                                              channel->name.c_str(), parameters[1][p], mlock_str->c_str());
64                         return MOD_RES_DENY;
65                 }
66
67                 return MOD_RES_PASSTHRU;
68         }
69 };
70
71 MODULE_INIT(ModuleMLock)