]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/rsquit.cpp
Merge branch 'insp20' into master.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / rsquit.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
5  *   Copyright (C) 2007 Dennis Friis <peavey@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 #include "main.h"
24 #include "utils.h"
25 #include "treeserver.h"
26 #include "commands.h"
27
28 CommandRSQuit::CommandRSQuit(Module* Creator)
29         : Command(Creator, "RSQUIT", 1)
30 {
31         flags_needed = 'o';
32         syntax = "<target-server-mask> [reason]";
33 }
34
35 CmdResult CommandRSQuit::Handle(User* user, const Params& parameters)
36 {
37         TreeServer *server_target; // Server to squit
38
39         server_target = Utils->FindServerMask(parameters[0]);
40         if (!server_target)
41         {
42                 user->WriteRemoteNotice(InspIRCd::Format("*** RSQUIT: Server \002%s\002 isn't connected to the network!", parameters[0].c_str()));
43                 return CMD_FAILURE;
44         }
45
46         if (server_target->IsRoot())
47         {
48                 user->WriteRemoteNotice(InspIRCd::Format("*** RSQUIT: Foolish mortal, you cannot make a server SQUIT itself! (%s matches local server name)", parameters[0].c_str()));
49                 return CMD_FAILURE;
50         }
51
52         if (server_target->IsLocal())
53         {
54                 // We have been asked to remove server_target.
55                 const char* reason = parameters.size() == 2 ? parameters[1].c_str() : "No reason";
56                 ServerInstance->SNO->WriteToSnoMask('l',"RSQUIT: Server \002%s\002 removed from network by %s (%s)", parameters[0].c_str(), user->nick.c_str(), reason);
57                 server_target->SQuit("Server quit by " + user->GetFullRealHost() + " (" + reason + ")");
58         }
59
60         return CMD_SUCCESS;
61 }
62
63 RouteDescriptor CommandRSQuit::GetRouting(User* user, const Params& parameters)
64 {
65         return ROUTE_UNICAST(parameters[0]);
66 }