]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/rconnect.cpp
m_spanningtree RCONNECT handler: Fix error reporting to remote users
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / rconnect.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
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 "resolvers.h"
26 #include "main.h"
27 #include "utils.h"
28 #include "treeserver.h"
29 #include "link.h"
30 #include "treesocket.h"
31 #include "commands.h"
32
33 CommandRConnect::CommandRConnect (Module* Creator, SpanningTreeUtilities* Util)
34         : Command(Creator, "RCONNECT", 2), Utils(Util)
35 {
36         flags_needed = 'o';
37         syntax = "<remote-server-mask> <target-server-mask>";
38 }
39
40 CmdResult CommandRConnect::Handle (const std::vector<std::string>& parameters, User *user)
41 {
42         /* First see if the server which is being asked to connect to another server in fact exists */
43         if (!Utils->FindServerMask(parameters[0]))
44         {
45                 ((ModuleSpanningTree*)(Module*)creator)->RemoteMessage(user, "*** RCONNECT: Server \002%s\002 isn't connected to the network!", parameters[0].c_str());
46                 return CMD_FAILURE;
47         }
48
49         /* Is this aimed at our server? */
50         if (InspIRCd::Match(ServerInstance->Config->ServerName,parameters[0]))
51         {
52                 /* Yes, initiate the given connect */
53                 ServerInstance->SNO->WriteToSnoMask('l',"Remote CONNECT from %s matching \002%s\002, connecting server \002%s\002",user->nick.c_str(),parameters[0].c_str(),parameters[1].c_str());
54                 std::vector<std::string> para;
55                 para.push_back(parameters[1]);
56                 ((ModuleSpanningTree*)(Module*)creator)->HandleConnect(para, user);
57         }
58         else
59         {
60                 /* It's not aimed at our server, but if the request originates from our user
61                  * acknowledge that we sent the request.
62                  *
63                  * It's possible that we're asking a server for something that makes no sense
64                  * (e.g. connect to itself or to an already connected server), but we don't check
65                  * for those conditions here, as ModuleSpanningTree::HandleConnect() (which will run
66                  * on the target) does all the checking and error reporting.
67                  */
68                 if (IS_LOCAL(user))
69                 {
70                         user->WriteServ("NOTICE %s :*** RCONNECT: Sending remote connect to \002%s\002 to connect server \002%s\002.",user->nick.c_str(),parameters[0].c_str(),parameters[1].c_str());
71                 }
72         }
73         return CMD_SUCCESS;
74 }
75
76 RouteDescriptor CommandRConnect::GetRouting(User* user, const std::vector<std::string>& parameters)
77 {
78         return ROUTE_UNICAST(parameters[0]);
79 }