]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/rsquit.cpp
Only assign NewServices once the duplicate check is done.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / rsquit.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2013-2014, 2016 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2010 Craig Edwards <brain@inspircd.org>
8  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
9  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
10  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
11  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
12  *
13  * This file is part of InspIRCd.  InspIRCd is free software: you can
14  * redistribute it and/or modify it under the terms of the GNU General Public
15  * License as published by the Free Software Foundation, version 2.
16  *
17  * This program is distributed in the hope that it will be useful, but WITHOUT
18  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
19  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
20  * details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
24  */
25
26
27 #include "inspircd.h"
28
29 #include "main.h"
30 #include "utils.h"
31 #include "treeserver.h"
32 #include "commands.h"
33
34 CommandRSQuit::CommandRSQuit(Module* Creator)
35         : Command(Creator, "RSQUIT", 1)
36 {
37         flags_needed = 'o';
38         syntax = "<target-server-mask> [:<reason>]";
39 }
40
41 CmdResult CommandRSQuit::Handle(User* user, const Params& parameters)
42 {
43         TreeServer *server_target; // Server to squit
44
45         server_target = Utils->FindServerMask(parameters[0]);
46         if (!server_target)
47         {
48                 user->WriteRemoteNotice(InspIRCd::Format("*** RSQUIT: Server \002%s\002 isn't connected to the network!", parameters[0].c_str()));
49                 return CMD_FAILURE;
50         }
51
52         if (server_target->IsRoot())
53         {
54                 user->WriteRemoteNotice(InspIRCd::Format("*** RSQUIT: Foolish mortal, you cannot make a server SQUIT itself! (%s matches local server name)", parameters[0].c_str()));
55                 return CMD_FAILURE;
56         }
57
58         if (server_target->IsLocal())
59         {
60                 // We have been asked to remove server_target.
61                 const char* reason = parameters.size() == 2 ? parameters[1].c_str() : "No reason";
62                 ServerInstance->SNO->WriteToSnoMask('l',"RSQUIT: Server \002%s\002 removed from network by %s (%s)", parameters[0].c_str(), user->nick.c_str(), reason);
63                 server_target->SQuit("Server quit by " + user->GetFullRealHost() + " (" + reason + ")");
64         }
65
66         return CMD_SUCCESS;
67 }
68
69 RouteDescriptor CommandRSQuit::GetRouting(User* user, const Params& parameters)
70 {
71         return ROUTE_UNICAST(parameters[0]);
72 }