]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_saquit.cpp
Update copyright headers.
[user/henk/code/inspircd.git] / src / modules / m_saquit.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012-2016 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2009 Thomas Stagner <aquanight@inspircd.org>
8  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
9  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
10  *   Copyright (C) 2007, 2010 Craig Edwards <brain@inspircd.org>
11  *   Copyright (C) 2007 John Brooks <special@inspircd.org>
12  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
13  *
14  * This file is part of InspIRCd.  InspIRCd is free software: you can
15  * redistribute it and/or modify it under the terms of the GNU General Public
16  * License as published by the Free Software Foundation, version 2.
17  *
18  * This program is distributed in the hope that it will be useful, but WITHOUT
19  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
20  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
25  */
26
27
28 #include "inspircd.h"
29
30 /** Handle /SAQUIT
31  */
32 class CommandSaquit : public Command
33 {
34  public:
35         CommandSaquit(Module* Creator) : Command(Creator, "SAQUIT", 2, 2)
36         {
37                 flags_needed = 'o'; syntax = "<nick> :<reason>";
38                 TRANSLATE2(TR_NICK, TR_TEXT);
39         }
40
41         CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
42         {
43                 User* dest = ServerInstance->FindNick(parameters[0]);
44                 if ((dest) && (dest->registered == REG_ALL))
45                 {
46                         if (dest->server->IsULine())
47                         {
48                                 user->WriteNumeric(ERR_NOPRIVILEGES, "Cannot use an SA command on a U-lined client");
49                                 return CMD_FAILURE;
50                         }
51
52                         // Pass the command on, so the client's server can quit it properly.
53                         if (!IS_LOCAL(dest))
54                                 return CMD_SUCCESS;
55
56                         ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used SAQUIT to make "+dest->nick+" quit with a reason of "+parameters[1]);
57
58                         ServerInstance->Users->QuitUser(dest, parameters[1]);
59                         return CMD_SUCCESS;
60                 }
61                 else
62                 {
63                         user->WriteNotice("*** Invalid nickname: '" + parameters[0] + "'");
64                         return CMD_FAILURE;
65                 }
66         }
67
68         RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
69         {
70                 return ROUTE_OPT_UCAST(parameters[0]);
71         }
72 };
73
74 class ModuleSaquit : public Module
75 {
76         CommandSaquit cmd;
77  public:
78         ModuleSaquit()
79                 : cmd(this)
80         {
81         }
82
83         Version GetVersion() CXX11_OVERRIDE
84         {
85                 return Version("Provides the SAQUIT command, allows opers to force-quit users", VF_OPTCOMMON | VF_VENDOR);
86         }
87 };
88
89 MODULE_INIT(ModuleSaquit)