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