]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_channel/cmd_kick.cpp
715f35d54343e80fde6a024a66ee7337665cfcfc
[user/henk/code/inspircd.git] / src / coremods / core_channel / cmd_kick.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22 #include "core_channel.h"
23
24 CommandKick::CommandKick(Module* parent)
25         : Command(parent, "KICK", 2, 3)
26 {
27         syntax = "<channel> <nick>{,<nick>} [<reason>]";
28 }
29
30 /** Handle /KICK
31  */
32 CmdResult CommandKick::Handle (const std::vector<std::string>& parameters, User *user)
33 {
34         std::string reason;
35         Channel* c = ServerInstance->FindChan(parameters[0]);
36         User* u;
37
38         if (CommandParser::LoopCall(user, this, parameters, 1))
39                 return CMD_SUCCESS;
40
41         if (IS_LOCAL(user))
42                 u = ServerInstance->FindNickOnly(parameters[1]);
43         else
44                 u = ServerInstance->FindNick(parameters[1]);
45
46         if ((!u) || (!c) || (u->registered != REG_ALL))
47         {
48                 user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", c ? parameters[1].c_str() : parameters[0].c_str());
49                 return CMD_FAILURE;
50         }
51
52         Membership* srcmemb = NULL;
53         if (IS_LOCAL(user))
54         {
55                 srcmemb = c->GetUser(user);
56                 if (!srcmemb)
57                 {
58                         user->WriteNumeric(ERR_NOTONCHANNEL, "%s :You're not on that channel!", parameters[0].c_str());
59                         return CMD_FAILURE;
60                 }
61
62                 if (u->server->IsULine())
63                 {
64                         user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s :You may not kick a u-lined client", c->name.c_str());
65                         return CMD_FAILURE;
66                 }
67         }
68
69         if (parameters.size() > 2)
70         {
71                 reason.assign(parameters[2], 0, ServerInstance->Config->Limits.MaxKick);
72         }
73         else
74         {
75                 reason.assign(user->nick, 0, ServerInstance->Config->Limits.MaxKick);
76         }
77
78         c->KickUser(user, u, reason, srcmemb);
79
80         return CMD_SUCCESS;
81 }
82
83 RouteDescriptor CommandKick::GetRouting(User* user, const std::vector<std::string>& parameters)
84 {
85         return (IS_LOCAL(user) ? ROUTE_LOCALONLY : ROUTE_BROADCAST);
86 }