]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_exemptchanops.cpp
Add ProtocolInterface::BroadcastEncap() and infrastructure for manually forwarding...
[user/henk/code/inspircd.git] / src / modules / m_exemptchanops.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.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 #include "listmode.h"
22
23 /** Handles channel mode +X
24  */
25 class ExemptChanOps : public ListModeBase
26 {
27  public:
28         ExemptChanOps(Module* Creator) : ListModeBase(Creator, "exemptchanops", 'X', "End of channel exemptchanops list", 954, 953, false, "exemptchanops") { }
29
30         bool ValidateParam(User* user, Channel* chan, std::string &word)
31         {
32                 // TODO actually make sure there's a prop for this
33                 if ((word.length() > 35) || (word.empty()))
34                 {
35                         user->WriteNumeric(955, "%s %s :word is too %s for exemptchanops list", chan->name.c_str(), word.c_str(), (word.empty() ? "short" : "long"));
36                         return false;
37                 }
38
39                 return true;
40         }
41
42         void TellListTooLong(User* user, Channel* chan, std::string &word)
43         {
44                 user->WriteNumeric(959, "%s %s :Channel exemptchanops list is full", chan->name.c_str(), word.c_str());
45         }
46
47         void TellAlreadyOnList(User* user, Channel* chan, std::string &word)
48         {
49                 user->WriteNumeric(957, "%s :The word %s is already on the exemptchanops list", chan->name.c_str(), word.c_str());
50         }
51
52         void TellNotSet(User* user, Channel* chan, std::string &word)
53         {
54                 user->WriteNumeric(958, "%s :No such exemptchanops word is set", chan->name.c_str());
55         }
56 };
57
58 class ExemptHandler : public HandlerBase3<ModResult, User*, Channel*, const std::string&>
59 {
60  public:
61         ExemptChanOps ec;
62         ExemptHandler(Module* me) : ec(me) {}
63
64         PrefixMode* FindMode(const std::string& mid)
65         {
66                 if (mid.length() == 1)
67                         return ServerInstance->Modes->FindPrefixMode(mid[0]);
68
69                 const ModeParser::PrefixModeList& pmlist = ServerInstance->Modes->GetPrefixModes();
70                 for (ModeParser::PrefixModeList::const_iterator i = pmlist.begin(); i != pmlist.end(); ++i)
71                 {
72                         PrefixMode* mh = *i;
73                         if (mh->name == mid)
74                                 return mh;
75                 }
76                 return NULL;
77         }
78
79         ModResult Call(User* user, Channel* chan, const std::string& restriction)
80         {
81                 unsigned int mypfx = chan->GetPrefixValue(user);
82                 std::string minmode;
83
84                 ListModeBase::ModeList* list = ec.GetList(chan);
85
86                 if (list)
87                 {
88                         for (ListModeBase::ModeList::iterator i = list->begin(); i != list->end(); ++i)
89                         {
90                                 std::string::size_type pos = (*i).mask.find(':');
91                                 if (pos == std::string::npos)
92                                         continue;
93                                 if ((*i).mask.substr(0,pos) == restriction)
94                                         minmode = (*i).mask.substr(pos + 1);
95                         }
96                 }
97
98                 PrefixMode* mh = FindMode(minmode);
99                 if (mh && mypfx >= mh->GetPrefixRank())
100                         return MOD_RES_ALLOW;
101                 if (mh || minmode == "*")
102                         return MOD_RES_DENY;
103
104                 return ServerInstance->HandleOnCheckExemption.Call(user, chan, restriction);
105         }
106 };
107
108 class ModuleExemptChanOps : public Module
109 {
110         std::string defaults;
111         ExemptHandler eh;
112
113  public:
114         ModuleExemptChanOps() : eh(this)
115         {
116         }
117
118         void init() CXX11_OVERRIDE
119         {
120                 ServerInstance->OnCheckExemption = &eh;
121         }
122
123         ~ModuleExemptChanOps()
124         {
125                 ServerInstance->OnCheckExemption = &ServerInstance->HandleOnCheckExemption;
126         }
127
128         Version GetVersion() CXX11_OVERRIDE
129         {
130                 return Version("Provides the ability to allow channel operators to be exempt from certain modes.",VF_VENDOR);
131         }
132
133         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
134         {
135                 eh.ec.DoRehash();
136         }
137 };
138
139 MODULE_INIT(ModuleExemptChanOps)