]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/rsquit.cpp
m_spanningtree Remove duplicate code for sending channel messages from RouteCommand()
[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)
28         : Command(Creator, "RSQUIT", 1)
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
38         server_target = Utils->FindServerMask(parameters[0]);
39         if (!server_target)
40         {
41                 ((ModuleSpanningTree*)(Module*)creator)->RemoteMessage(user, "*** RSQUIT: Server \002%s\002 isn't connected to the network!", parameters[0].c_str());
42                 return CMD_FAILURE;
43         }
44
45         if (server_target->IsRoot())
46         {
47                 ((ModuleSpanningTree*)(Module*)creator)->RemoteMessage(user, "*** RSQUIT: Foolish mortal, you cannot make a server SQUIT itself! (%s matches local server name)", parameters[0].c_str());
48                 return CMD_FAILURE;
49         }
50
51         if (server_target->IsLocal())
52         {
53                 // We have been asked to remove server_target.
54                 TreeSocket* sock = server_target->GetSocket();
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                 sock->Squit(server_target, "Server quit by " + user->GetFullRealHost() + " (" + reason + ")");
58                 sock->Close();
59         }
60
61         return CMD_SUCCESS;
62 }
63
64 RouteDescriptor CommandRSQuit::GetRouting(User* user, const std::vector<std::string>& parameters)
65 {
66         return ROUTE_UNICAST(parameters[0]);
67 }