]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_sakick.cpp
Merge pull request #1328 from Adam-/insp20+sakick
[user/henk/code/inspircd.git] / src / modules / m_sakick.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 John Brooks <john.brooks@dereferenced.net>
5  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
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
23 /* $ModDesc: Provides a SAKICK command */
24
25 /** Handle /SAKICK
26  */
27 class CommandSakick : public Command
28 {
29  public:
30         CommandSakick(Module* Creator) : Command(Creator,"SAKICK", 2, 3)
31         {
32                 flags_needed = 'o'; Penalty = 0; syntax = "<channel> <nick> [reason]";
33                 TRANSLATE4(TR_TEXT, TR_NICK, TR_TEXT, TR_END);
34         }
35
36         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
37         {
38                 User* dest = ServerInstance->FindNick(parameters[1]);
39                 Channel* channel = ServerInstance->FindChan(parameters[0]);
40                 const char* reason = "";
41
42                 if ((dest) && (dest->registered == REG_ALL) && (channel))
43                 {
44                         if (parameters.size() > 2)
45                         {
46                                 reason = parameters[2].c_str();
47                         }
48                         else
49                         {
50                                 reason = dest->nick.c_str();
51                         }
52
53                         if (ServerInstance->ULine(dest->server))
54                         {
55                                 user->WriteNumeric(ERR_NOPRIVILEGES, "%s :Cannot use an SA command on a u-lined client", user->nick.c_str());
56                                 return CMD_FAILURE;
57                         }
58
59                         /* For local clients, directly kick them. For remote clients,
60                          * just return CMD_SUCCESS knowing the protocol module will route the SAKICK to the user's
61                          * local server and that will kick them instead.
62                          */
63                         if (IS_LOCAL(dest))
64                         {
65                                 channel->KickUser(ServerInstance->FakeClient, dest, reason);
66                         }
67
68                         if (IS_LOCAL(user))
69                         {
70                                 /* Locally issued command; send the snomasks */
71                                 ServerInstance->SNO->WriteGlobalSno('a', user->nick + " SAKICKed " + dest->nick + " on " + parameters[0]);
72                         }
73
74                         return CMD_SUCCESS;
75                 }
76                 else
77                 {
78                         user->WriteServ("NOTICE %s :*** Invalid nickname or channel", user->nick.c_str());
79                 }
80
81                 return CMD_FAILURE;
82         }
83
84         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
85         {
86                 User* dest = ServerInstance->FindNick(parameters[1]);
87                 if (dest)
88                         return ROUTE_OPT_UCAST(dest->server);
89                 return ROUTE_LOCALONLY;
90         }
91 };
92
93 class ModuleSakick : public Module
94 {
95         CommandSakick cmd;
96  public:
97         ModuleSakick()
98                 : cmd(this)
99         {
100         }
101
102         void init()
103         {
104                 ServerInstance->Modules->AddService(cmd);
105         }
106
107         virtual ~ModuleSakick()
108         {
109         }
110
111         virtual Version GetVersion()
112         {
113                 return Version("Provides a SAKICK command", VF_OPTCOMMON|VF_VENDOR);
114         }
115
116 };
117
118 MODULE_INIT(ModuleSakick)
119