]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_exemptchanops.cpp
Merge insp20
[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                 if (!ServerInstance->Modes->FindMode(word, MODETYPE_CHANNEL))
33                 {
34                         user->WriteNumeric(955, "%s %s :Mode doesn't exist", chan->name.c_str(), word.c_str());
35                         return false;
36                 }
37
38                 return true;
39         }
40
41         void TellListTooLong(User* user, Channel* chan, std::string &word)
42         {
43                 user->WriteNumeric(959, "%s %s :Channel exemptchanops list is full", chan->name.c_str(), word.c_str());
44         }
45
46         void TellAlreadyOnList(User* user, Channel* chan, std::string &word)
47         {
48                 user->WriteNumeric(957, "%s :The word %s is already on the exemptchanops list", chan->name.c_str(), word.c_str());
49         }
50
51         void TellNotSet(User* user, Channel* chan, std::string &word)
52         {
53                 user->WriteNumeric(958, "%s :No such exemptchanops word is set", chan->name.c_str());
54         }
55 };
56
57 class ExemptHandler : public HandlerBase3<ModResult, User*, Channel*, const std::string&>
58 {
59  public:
60         ExemptChanOps ec;
61         ExemptHandler(Module* me) : ec(me) {}
62
63         PrefixMode* FindMode(const std::string& mid)
64         {
65                 if (mid.length() == 1)
66                         return ServerInstance->Modes->FindPrefixMode(mid[0]);
67
68                 ModeHandler* mh = ServerInstance->Modes->FindMode(mid, MODETYPE_CHANNEL);
69                 return mh ? mh->IsPrefixMode() : NULL;
70         }
71
72         ModResult Call(User* user, Channel* chan, const std::string& restriction)
73         {
74                 unsigned int mypfx = chan->GetPrefixValue(user);
75                 std::string minmode;
76
77                 ListModeBase::ModeList* list = ec.GetList(chan);
78
79                 if (list)
80                 {
81                         for (ListModeBase::ModeList::iterator i = list->begin(); i != list->end(); ++i)
82                         {
83                                 std::string::size_type pos = (*i).mask.find(':');
84                                 if (pos == std::string::npos)
85                                         continue;
86                                 if ((*i).mask.substr(0,pos) == restriction)
87                                         minmode = (*i).mask.substr(pos + 1);
88                         }
89                 }
90
91                 PrefixMode* mh = FindMode(minmode);
92                 if (mh && mypfx >= mh->GetPrefixRank())
93                         return MOD_RES_ALLOW;
94                 if (mh || minmode == "*")
95                         return MOD_RES_DENY;
96
97                 return ServerInstance->HandleOnCheckExemption.Call(user, chan, restriction);
98         }
99 };
100
101 class ModuleExemptChanOps : public Module
102 {
103         ExemptHandler eh;
104
105  public:
106         ModuleExemptChanOps() : eh(this)
107         {
108         }
109
110         void init() CXX11_OVERRIDE
111         {
112                 ServerInstance->OnCheckExemption = &eh;
113         }
114
115         ~ModuleExemptChanOps()
116         {
117                 ServerInstance->OnCheckExemption = &ServerInstance->HandleOnCheckExemption;
118         }
119
120         Version GetVersion() CXX11_OVERRIDE
121         {
122                 return Version("Provides the ability to allow channel operators to be exempt from certain modes.",VF_VENDOR);
123         }
124
125         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
126         {
127                 eh.ec.DoRehash();
128         }
129 };
130
131 MODULE_INIT(ModuleExemptChanOps)