]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_rmode.cpp
Replace hardcoded mode letters, part 3
[user/henk/code/inspircd.git] / src / modules / m_rmode.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013 Daniel Vassdal <shutter@canternet.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 /** Handle /RMODE
24  */
25 class CommandRMode : public Command
26 {
27  public:
28         CommandRMode(Module* Creator) : Command(Creator,"RMODE", 2, 3)
29         {
30                 allow_empty_last_param = false;
31                 syntax = "<channel> <mode> [pattern]";
32         }
33
34         CmdResult Handle(const std::vector<std::string> &parameters, User *user)
35         {
36                 ModeHandler* mh;
37                 Channel* chan = ServerInstance->FindChan(parameters[0]);
38                 char modeletter = parameters[1][0];
39
40                 if (chan == NULL)
41                 {
42                         user->WriteNotice("The channel " + parameters[0] + " does not exist.");
43                         return CMD_FAILURE;
44                 }
45
46                 mh = ServerInstance->Modes->FindMode(modeletter, MODETYPE_CHANNEL);
47                 if (mh == NULL || parameters[1].size() > 1)
48                 {
49                         user->WriteNotice(parameters[1] + " is not a valid channel mode.");
50                         return CMD_FAILURE;
51                 }
52
53                 if (chan->GetPrefixValue(user) < mh->GetLevelRequired())
54                 {
55                         user->WriteNotice("You do not have access to unset " + ConvToStr(modeletter) + " on " +  chan->name + ".");
56                         return CMD_FAILURE;
57                 }
58
59                 unsigned int prefixrank;
60                 char prefixchar;
61                 std::string pattern = parameters.size() > 2 ? parameters[2] : "*";
62                 ListModeBase* lm;
63                 ListModeBase::ModeList* ml;
64                 irc::modestacker modestack(false);
65
66                 if (!mh->IsListMode())
67                 {
68                         if (chan->IsModeSet(mh))
69                                 modestack.Push(modeletter);
70                 }
71                 else if (((prefixrank = mh->GetPrefixRank()) && (prefixchar = mh->GetPrefix())))
72                 {
73                         // As user prefix modes don't have a GetList() method, let's iterate through the channel's users.
74                         for (UserMembIter it = chan->userlist.begin(); it != chan->userlist.end(); ++it)
75                         {
76                                 if (!InspIRCd::Match(it->first->nick, pattern))
77                                         continue;
78                                 if (((strchr(chan->GetAllPrefixChars(user), prefixchar)) != NULL) && !(it->first == user && prefixrank > VOICE_VALUE))
79                                         modestack.Push(modeletter, it->first->nick);
80                         }
81                 }
82                 else if (((lm = dynamic_cast<ListModeBase*>(mh)) != NULL) && ((ml = lm->GetList(chan)) != NULL))
83                 {
84                         for (ListModeBase::ModeList::iterator it = ml->begin(); it != ml->end(); ++it)
85                         {
86                                 if (!InspIRCd::Match(it->mask, pattern))
87                                         continue;
88                                 modestack.Push(modeletter, it->mask);
89                         }
90                 }
91                 else
92                 {
93                         user->WriteNotice("Could not remove channel mode " + ConvToStr(modeletter));
94                         return CMD_FAILURE;
95                 }
96
97                 parameterlist stackresult;
98                 stackresult.push_back(chan->name);
99                 while (modestack.GetStackedLine(stackresult))
100                 {
101                         ServerInstance->Modes->Process(stackresult, user);
102                         stackresult.erase(stackresult.begin() + 1, stackresult.end());
103                 }
104
105                 return CMD_SUCCESS;
106         }
107 };
108
109 class ModuleRMode : public Module
110 {
111         CommandRMode cmd;
112
113  public:
114         ModuleRMode() : cmd(this) { }
115
116         void init() CXX11_OVERRIDE
117         {
118                 ServerInstance->Modules->AddService(cmd);
119         }
120
121         Version GetVersion() CXX11_OVERRIDE
122         {
123                 return Version("Allows glob-based removal of list modes", VF_VENDOR);
124         }
125 };
126
127 MODULE_INIT(ModuleRMode)