1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2007 InspIRCd Development Team
* See: http://www.inspircd.org/wiki/index.php/Credits
*
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
#include "inspircd.h"
#include "configreader.h"
#include "users.h"
#include "modules.h"
#include "wildcard.h"
#include "commands/cmd_kill.h"
extern "C" DllExport command_t* init_command(InspIRCd* Instance)
{
return new cmd_kill(Instance);
}
/** Handle /KILL
*/
CmdResult cmd_kill::Handle (const char** parameters, int pcnt, userrec *user)
{
/* Allow comma seperated lists of users for /KILL (thanks w00t) */
if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0))
return CMD_SUCCESS;
userrec *u = ServerInstance->FindNick(parameters[0]);
char killreason[MAXBUF];
char killoperreason[MAXBUF];
int MOD_RESULT = 0;
if (u)
{
FOREACH_RESULT(I_OnKill, OnKill(user, u, parameters[1]));
if (MOD_RESULT)
return CMD_FAILURE;
// generate two reasons here, one for users, one for opers. first, the user visible reason, which may change.
if (*ServerInstance->Config->HideKillsServer)
{
// hidekills is on, use it
snprintf(killreason, MAXQUIT, "Killed (%s (%s))", ServerInstance->Config->HideKillsServer, parameters[1]);
}
else
{
// hidekills is off, do nothing
snprintf(killreason, MAXQUIT, "Killed (%s (%s))", user->nick, parameters[1]);
}
// opers are lucky ducks, they always see the real reason
snprintf(killoperreason, MAXQUIT, "Killed (%s (%s))", user->nick, parameters[1]);
if (!IS_LOCAL(u))
{
// remote kill
ServerInstance->SNO->WriteToSnoMask('k',"Remote kill by %s: %s!%s@%s (%s)", user->nick, u->nick, u->ident, u->host, parameters[1]);
FOREACH_MOD(I_OnRemoteKill, OnRemoteKill(user, u, killreason));
/*
* IMPORTANT SHIT:
* There used to be a WriteCommonExcept() of the QUIT here. It seems to be unnecessary with QuitUser() right below, so it's gone.
* If it explodes painfully, put it back!
*/
}
else
{
// local kill
ServerInstance->SNO->WriteToSnoMask('k',"Local Kill by %s: %s!%s@%s (%s)", user->nick, u->nick, u->ident, u->host, parameters[1]);
ServerInstance->Log(DEFAULT,"LOCAL KILL: %s :%s!%s!%s (%s)", u->nick, ServerInstance->Config->ServerName, user->dhost, user->nick, parameters[1]);
user->WriteTo(u, "KILL %s :%s!%s!%s (%s)", *ServerInstance->Config->HideKillsServer ? ServerInstance->Config->HideKillsServer : u->nick,
ServerInstance->Config->ServerName, user->dhost, user->nick, parameters[1]);
}
// send the quit out
userrec::QuitUser(ServerInstance, u, killreason, killoperreason);
}
else
{
user->WriteServ( "401 %s %s :No such nick/channel", user->nick, parameters[0]);
return CMD_FAILURE;
}
return CMD_SUCCESS;
}
|