]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_remove.cpp
4a8574a6a60e8557bc4013ce5363fb4cfb7de6a1
[user/henk/code/inspircd.git] / src / modules / m_remove.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
6  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
7  *   Copyright (C) 2005, 2007 Robin Burchell <robin+git@viroteck.net>
8  *   Copyright (C) 2005-2006 Craig Edwards <craigedwards@brainbox.cc>
9  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24
25 #include "inspircd.h"
26
27 /*
28  * This module supports the use of the +q and +a usermodes, but should work without them too.
29  * Usage of the command is restricted to +hoaq, and you cannot remove a user with a "higher" level than yourself.
30  * eg: +h can remove +hv and users with no modes. +a can remove +aohv and users with no modes.
31 */
32
33 /** Base class for /FPART and /REMOVE
34  */
35 class RemoveBase : public Command
36 {
37         bool& supportnokicks;
38         ChanModeReference& nokicksmode;
39
40  public:
41         RemoveBase(Module* Creator, bool& snk, ChanModeReference& nkm, const char* cmdn)
42                 : Command(Creator, cmdn, 2, 3)
43                 , supportnokicks(snk)
44                 , nokicksmode(nkm)
45         {
46         }
47
48         CmdResult HandleRMB(const std::vector<std::string>& parameters, User *user, bool neworder)
49         {
50                 User* target;
51                 Channel* channel;
52                 std::string reason;
53
54                 /* Set these to the parameters needed, the new version of this module switches it's parameters around
55                  * supplying a new command with the new order while keeping the old /remove with the older order.
56                  * /remove <nick> <channel> [reason ...]
57                  * /fpart <channel> <nick> [reason ...]
58                  */
59                 const std::string& channame = parameters[neworder ? 0 : 1];
60                 const std::string& username = parameters[neworder ? 1 : 0];
61
62                 /* Look up the user we're meant to be removing from the channel */
63                 target = ServerInstance->FindNick(username);
64
65                 /* And the channel we're meant to be removing them from */
66                 channel = ServerInstance->FindChan(channame);
67
68                 /* Fix by brain - someone needs to learn to validate their input! */
69                 if ((!target) || (target->registered != REG_ALL) || (!channel))
70                 {
71                         user->WriteNumeric(ERR_NOSUCHNICK, "%s %s :No such nick/channel", user->nick.c_str(), !channel ? channame.c_str() : username.c_str());
72                         return CMD_FAILURE;
73                 }
74
75                 if (!channel->HasUser(target))
76                 {
77                         user->WriteServ( "NOTICE %s :*** The user %s is not on channel %s", user->nick.c_str(), target->nick.c_str(), channel->name.c_str());
78                         return CMD_FAILURE;
79                 }
80
81                 int ulevel = channel->GetPrefixValue(user);
82                 int tlevel = channel->GetPrefixValue(target);
83
84                 if (ServerInstance->ULine(target->server))
85                 {
86                         user->WriteNumeric(482, "%s %s :Only a u-line may remove a u-line from a channel.", user->nick.c_str(), channame.c_str());
87                         return CMD_FAILURE;
88                 }
89
90                 /* We support the +Q channel mode via. the m_nokicks module, if the module is loaded and the mode is set then disallow the /remove */
91                 if ((!IS_LOCAL(user)) || (!supportnokicks) || (!channel->IsModeSet(nokicksmode)))
92                 {
93                         /* We'll let everyone remove their level and below, eg:
94                          * ops can remove ops, halfops, voices, and those with no mode (no moders actually are set to 1)
95                          * a ulined target will get a higher level than it's possible for a /remover to get..so they're safe.
96                          * Nobody may remove a founder.
97                          */
98                         if ((!IS_LOCAL(user)) || ((ulevel > VOICE_VALUE) && (ulevel >= tlevel) && (tlevel != 50000)))
99                         {
100                                 // REMOVE/FPART will be sent to the target's server and it will reply with a PART (or do nothing if it doesn't understand the command)
101                                 if (!IS_LOCAL(target))
102                                         return CMD_SUCCESS;
103
104                                 std::string reasonparam;
105
106                                 /* If a reason is given, use it */
107                                 if(parameters.size() > 2)
108                                         reasonparam = parameters[2];
109                                 else
110                                         reasonparam = "No reason given";
111
112                                 /* Build up the part reason string. */
113                                 reason = "Removed by " + user->nick + ": " + reasonparam;
114
115                                 channel->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :%s removed %s from the channel", channel->name.c_str(), user->nick.c_str(), target->nick.c_str());
116                                 target->WriteNotice("*** " + user->nick + " removed you from " + channel->name + " with the message: " + reasonparam);
117
118                                 channel->PartUser(target, reason);
119                         }
120                         else
121                         {
122                                 user->WriteServ( "NOTICE %s :*** You do not have access to /remove %s from %s", user->nick.c_str(), target->nick.c_str(), channel->name.c_str());
123                                 return CMD_FAILURE;
124                         }
125                 }
126                 else
127                 {
128                         /* m_nokicks.so was loaded and +Q was set, block! */
129                         user->WriteServ( "484 %s %s :Can't remove user %s from channel (nokicks mode is set)", user->nick.c_str(), channel->name.c_str(), target->nick.c_str());
130                         return CMD_FAILURE;
131                 }
132
133                 return CMD_SUCCESS;
134         }
135         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters) = 0;
136 };
137
138 /** Handle /REMOVE
139  */
140 class CommandRemove : public RemoveBase
141 {
142  public:
143         CommandRemove(Module* Creator, bool& snk, ChanModeReference& nkm)
144                 : RemoveBase(Creator, snk, nkm, "REMOVE")
145         {
146                 syntax = "<nick> <channel> [<reason>]";
147                 TRANSLATE3(TR_NICK, TR_TEXT, TR_TEXT);
148         }
149
150         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
151         {
152                 return HandleRMB(parameters, user, false);
153         }
154
155         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
156         {
157                 User* dest = ServerInstance->FindNick(parameters[0]);
158                 if (dest)
159                         return ROUTE_OPT_UCAST(dest->server);
160                 return ROUTE_LOCALONLY;
161         }
162 };
163
164 /** Handle /FPART
165  */
166 class CommandFpart : public RemoveBase
167 {
168  public:
169         CommandFpart(Module* Creator, bool& snk, ChanModeReference& nkm)
170                 : RemoveBase(Creator, snk, nkm, "FPART")
171         {
172                 syntax = "<channel> <nick> [<reason>]";
173                 TRANSLATE3(TR_TEXT, TR_NICK, TR_TEXT);
174         }
175
176         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
177         {
178                 return HandleRMB(parameters, user, true);
179         }
180
181         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
182         {
183                 User* dest = ServerInstance->FindNick(parameters[1]);
184                 if (dest)
185                         return ROUTE_OPT_UCAST(dest->server);
186                 return ROUTE_LOCALONLY;
187         }
188 };
189
190 class ModuleRemove : public Module
191 {
192         ChanModeReference nokicksmode;
193         CommandRemove cmd1;
194         CommandFpart cmd2;
195         bool supportnokicks;
196
197  public:
198         ModuleRemove()
199                 : nokicksmode(this, "nokick")
200                 , cmd1(this, supportnokicks, nokicksmode)
201                 , cmd2(this, supportnokicks, nokicksmode)
202         {
203         }
204
205         void init() CXX11_OVERRIDE
206         {
207                 ServerInstance->Modules->AddService(cmd1);
208                 ServerInstance->Modules->AddService(cmd2);
209         }
210
211         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
212         {
213                 tokens["REMOVE"];
214         }
215
216         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
217         {
218                 supportnokicks = ServerInstance->Config->ConfValue("remove")->getBool("supportnokicks");
219         }
220
221         Version GetVersion() CXX11_OVERRIDE
222         {
223                 return Version("Provides a /remove command, this is mostly an alternative to /kick, except makes users appear to have parted the channel", VF_OPTCOMMON | VF_VENDOR);
224         }
225 };
226
227 MODULE_INIT(ModuleRemove)