]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/rsquit.cpp
Merge insp20
[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 "utils.h"
24 #include "treeserver.h"
25 #include "commands.h"
26
27 CommandRSQuit::CommandRSQuit (Module* Creator, SpanningTreeUtilities* Util)
28         : Command(Creator, "RSQUIT", 1), Utils(Util)
29 {
30         flags_needed = 'o';
31         syntax = "<target-server-mask> [reason]";
32 }
33
34 CmdResult CommandRSQuit::Handle (const std::vector<std::string>& parameters, User *user)
35 {
36         TreeServer *server_target; // Server to squit
37         TreeServer *server_linked; // Server target is linked to
38
39         server_target = Utils->FindServerMask(parameters[0]);
40         if (!server_target)
41         {
42                 ((ModuleSpanningTree*)(Module*)creator)->RemoteMessage(user, "*** 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 == Utils->TreeRoot)
47         {
48                 ((ModuleSpanningTree*)(Module*)creator)->RemoteMessage(user, "*** 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         server_linked = server_target->GetParent();
53
54         if (server_linked == Utils->TreeRoot)
55         {
56                 // We have been asked to remove server_target.
57                 TreeSocket* sock = server_target->GetSocket();
58                 if (sock)
59                 {
60                         const char *reason = parameters.size() == 2 ? parameters[1].c_str() : "No reason";
61                         ServerInstance->SNO->WriteToSnoMask('l',"RSQUIT: Server \002%s\002 removed from network by %s (%s)", parameters[0].c_str(), user->nick.c_str(), reason);
62                         sock->Squit(server_target, "Server quit by " + user->GetFullRealHost() + " (" + reason + ")");
63                         sock->Close();
64                 }
65         }
66
67         return CMD_SUCCESS;
68 }
69
70 RouteDescriptor CommandRSQuit::GetRouting(User* user, const std::vector<std::string>& parameters)
71 {
72         return ROUTE_UNICAST(parameters[0]);
73 }