]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_oper/cmd_kill.cpp
454bab03f30dee3b7824133432f8025407ba1f11
[user/henk/code/inspircd.git] / src / coremods / core_oper / cmd_kill.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23
24 /** Handle /KILL.
25  */
26 class CommandKill : public Command
27 {
28         std::string lastuuid;
29         std::string killreason;
30
31  public:
32         /** Constructor for kill.
33          */
34         CommandKill ( Module* parent) : Command(parent,"KILL",2,2) {
35                 flags_needed = 'o';
36                 syntax = "<nickname> <reason>";
37                 TRANSLATE2(TR_CUSTOM, TR_CUSTOM);
38         }
39         /** Handle command.
40          * @param parameters The parameters to the command
41          * @param user The user issuing the command
42          * @return A value from CmdResult to indicate command success or failure.
43          */
44         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
45         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
46         {
47                 // FindNick() doesn't work here because we quit the target user in Handle() which
48                 // removes it from the nicklist, so we check lastuuid: if it's empty then this KILL
49                 // was for a local user, otherwise it contains the uuid of the user who was killed.
50                 if (lastuuid.empty())
51                         return ROUTE_LOCALONLY;
52                 return ROUTE_BROADCAST;
53         }
54
55         void EncodeParameter(std::string& param, int index)
56         {
57                 // Manually translate the nick -> uuid (see above), and also the reason (params[1])
58                 // because we decorate it if the oper is local and want remote servers to see the
59                 // decorated reason not the original.
60                 param = ((index == 0) ? lastuuid : killreason);
61         }
62 };
63
64 /** Handle /KILL
65  */
66 CmdResult CommandKill::Handle (const std::vector<std::string>& parameters, User *user)
67 {
68         /* Allow comma seperated lists of users for /KILL (thanks w00t) */
69         if (CommandParser::LoopCall(user, this, parameters, 0))
70         {
71                 // If we got a colon delimited list of nicks then the handler ran for each nick,
72                 // and KILL commands were broadcast for remote targets.
73                 return CMD_FAILURE;
74         }
75
76         User *u = ServerInstance->FindNick(parameters[0]);
77         if ((u) && (!IS_SERVER(u)))
78         {
79                 /*
80                  * Here, we need to decide how to munge kill messages. Whether to hide killer, what to show opers, etc.
81                  * We only do this when the command is being issued LOCALLY, for remote KILL, we just copy the message we got.
82                  *
83                  * This conditional is so that we only append the "Killed (" prefix ONCE. If killer is remote, then the kill
84                  * just gets processed and passed on, otherwise, if they are local, it gets prefixed. Makes sense :-) -- w00t
85                  */
86
87                 if (IS_LOCAL(user))
88                 {
89                         /*
90                          * Moved this event inside the IS_LOCAL check also, we don't want half the network killing a user
91                          * and the other half not. This would be a bad thing. ;p -- w00t
92                          */
93                         ModResult MOD_RESULT;
94                         FIRST_MOD_RESULT(OnKill, MOD_RESULT, (user, u, parameters[1]));
95
96                         if (MOD_RESULT == MOD_RES_DENY)
97                                 return CMD_FAILURE;
98
99                         killreason = "Killed (";
100                         if (!ServerInstance->Config->HideKillsServer.empty())
101                         {
102                                 // hidekills is on, use it
103                                 killreason += ServerInstance->Config->HideKillsServer;
104                         }
105                         else
106                         {
107                                 // hidekills is off, do nothing
108                                 killreason += user->nick;
109                         }
110
111                         killreason += " (" + parameters[1] + "))";
112                 }
113                 else
114                 {
115                         /* Leave it alone, remote server has already formatted it */
116                         killreason.assign(parameters[1], 0, ServerInstance->Config->Limits.MaxQuit);
117                 }
118
119                 /*
120                  * Now we need to decide whether or not to send a local or remote snotice. Currently this checking is a little flawed.
121                  * No time to fix it right now, so left a note. -- w00t
122                  */
123                 if (!IS_LOCAL(u))
124                 {
125                         // remote kill
126                         if (!user->server->IsULine())
127                                 ServerInstance->SNO->WriteToSnoMask('K', "Remote kill by %s: %s (%s)", user->nick.c_str(), u->GetFullRealHost().c_str(), parameters[1].c_str());
128                         this->lastuuid = u->uuid;
129                 }
130                 else
131                 {
132                         // local kill
133                         /*
134                          * XXX - this isn't entirely correct, servers A - B - C, oper on A, client on C. Oper kills client, A and B will get remote kill
135                          * snotices, C will get a local kill snotice. this isn't accurate, and needs fixing at some stage. -- w00t
136                          */
137                         if (!user->server->IsULine())
138                         {
139                                 if (IS_LOCAL(user))
140                                         ServerInstance->SNO->WriteGlobalSno('k',"Local Kill by %s: %s (%s)", user->nick.c_str(), u->GetFullRealHost().c_str(), parameters[1].c_str());
141                                 else
142                                         ServerInstance->SNO->WriteToSnoMask('k',"Local Kill by %s: %s (%s)", user->nick.c_str(), u->GetFullRealHost().c_str(), parameters[1].c_str());
143                         }
144
145                         ServerInstance->Logs->Log("KILL", LOG_DEFAULT, "LOCAL KILL: %s :%s!%s!%s (%s)", u->nick.c_str(), ServerInstance->Config->ServerName.c_str(), user->dhost.c_str(), user->nick.c_str(), parameters[1].c_str());
146
147                         u->Write(":%s KILL %s :%s!%s!%s (%s)", ServerInstance->Config->HideKillsServer.empty() ? user->GetFullHost().c_str() : ServerInstance->Config->HideKillsServer.c_str(),
148                                         u->nick.c_str(),
149                                         ServerInstance->Config->ServerName.c_str(),
150                                         user->dhost.c_str(),
151                                         ServerInstance->Config->HideKillsServer.empty() ? user->nick.c_str() : ServerInstance->Config->HideKillsServer.c_str(),
152                                         parameters[1].c_str());
153
154                         this->lastuuid.clear();
155                 }
156
157                 // send the quit out
158                 ServerInstance->Users->QuitUser(u, killreason);
159         }
160         else
161         {
162                 user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", parameters[0].c_str());
163                 return CMD_FAILURE;
164         }
165
166         return CMD_SUCCESS;
167 }
168
169
170 COMMAND_INIT(CommandKill)