]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_saquit.cpp
Fix the cloaking module on C++98 compilers.
[user/henk/code/inspircd.git] / src / modules / m_saquit.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 2018, 2020 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 John Brooks <special@inspircd.org>
11  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
12  *   Copyright (C) 2004, 2007, 2010 Craig Edwards <brain@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';
38                 syntax = "<nick> :<reason>";
39                 TRANSLATE2(TR_NICK, TR_TEXT);
40         }
41
42         CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
43         {
44                 User* dest = ServerInstance->FindNick(parameters[0]);
45                 if ((dest) && (dest->registered == REG_ALL))
46                 {
47                         if (dest->server->IsULine())
48                         {
49                                 user->WriteNumeric(ERR_NOPRIVILEGES, "Cannot use an SA command on a U-lined client");
50                                 return CMD_FAILURE;
51                         }
52
53                         // Pass the command on, so the client's server can quit it properly.
54                         if (!IS_LOCAL(dest))
55                                 return CMD_SUCCESS;
56
57                         ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used SAQUIT to make "+dest->nick+" quit with a reason of "+parameters[1]);
58
59                         ServerInstance->Users->QuitUser(dest, parameters[1]);
60                         return CMD_SUCCESS;
61                 }
62                 else
63                 {
64                         user->WriteNotice("*** Invalid nickname: '" + parameters[0] + "'");
65                         return CMD_FAILURE;
66                 }
67         }
68
69         RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
70         {
71                 return ROUTE_OPT_UCAST(parameters[0]);
72         }
73 };
74
75 class ModuleSaquit : public Module
76 {
77         CommandSaquit cmd;
78  public:
79         ModuleSaquit()
80                 : cmd(this)
81         {
82         }
83
84         Version GetVersion() CXX11_OVERRIDE
85         {
86                 return Version("Adds the /SAQUIT command which allows server operators to disconnect users from the server.", VF_OPTCOMMON | VF_VENDOR);
87         }
88 };
89
90 MODULE_INIT(ModuleSaquit)