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