2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
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.
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
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/>.
22 #include "modules/exemption.h"
24 /** Handles channel mode +X
26 class ExemptChanOps : public ListModeBase
29 ExemptChanOps(Module* Creator)
30 : ListModeBase(Creator, "exemptchanops", 'X', "End of channel exemptchanops list", 954, 953, false)
34 bool ValidateParam(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE
36 std::string::size_type p = word.find(':');
37 if (p == std::string::npos)
39 user->WriteNumeric(Numerics::InvalidModeParameter(chan, this, word, "Invalid exemptchanops entry, format is <restriction>:<prefix>"));
43 std::string restriction(word, 0, p);
44 // If there is a '-' in the restriction string ignore it and everything after it
45 // to support "auditorium-vis" and "auditorium-see" in m_auditorium
46 p = restriction.find('-');
47 if (p != std::string::npos)
50 if (!ServerInstance->Modes->FindMode(restriction, MODETYPE_CHANNEL))
52 user->WriteNumeric(Numerics::InvalidModeParameter(chan, this, word, "Unknown restriction"));
60 class ExemptHandler : public CheckExemption::EventListener
64 ExemptHandler(Module* me)
65 : CheckExemption::EventListener(me)
70 PrefixMode* FindMode(const std::string& mid)
72 if (mid.length() == 1)
73 return ServerInstance->Modes->FindPrefixMode(mid[0]);
75 ModeHandler* mh = ServerInstance->Modes->FindMode(mid, MODETYPE_CHANNEL);
76 return mh ? mh->IsPrefixMode() : NULL;
79 ModResult OnCheckExemption(User* user, Channel* chan, const std::string& restriction) CXX11_OVERRIDE
81 unsigned int mypfx = chan->GetPrefixValue(user);
84 ListModeBase::ModeList* list = ec.GetList(chan);
88 for (ListModeBase::ModeList::iterator i = list->begin(); i != list->end(); ++i)
90 std::string::size_type pos = (*i).mask.find(':');
91 if (pos == std::string::npos)
93 if (!i->mask.compare(0, pos, restriction))
94 minmode.assign(i->mask, pos + 1, std::string::npos);
98 PrefixMode* mh = FindMode(minmode);
99 if (mh && mypfx >= mh->GetPrefixRank())
100 return MOD_RES_ALLOW;
101 if (mh || minmode == "*")
104 return MOD_RES_PASSTHRU;
108 class ModuleExemptChanOps : public Module
113 ModuleExemptChanOps() : eh(this)
117 Version GetVersion() CXX11_OVERRIDE
119 return Version("Provides the ability to allow channel operators to be exempt from certain modes.",VF_VENDOR);
122 void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
128 MODULE_INIT(ModuleExemptChanOps)