]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/rconnect.cpp
Merge insp20
[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
23 #include "main.h"
24 #include "utils.h"
25 #include "commands.h"
26
27 CommandRConnect::CommandRConnect (Module* Creator)
28         : Command(Creator, "RCONNECT", 2)
29 {
30         flags_needed = 'o';
31         syntax = "<remote-server-mask> <target-server-mask>";
32 }
33
34 CmdResult CommandRConnect::Handle (const std::vector<std::string>& parameters, User *user)
35 {
36         /* First see if the server which is being asked to connect to another server in fact exists */
37         if (!Utils->FindServerMask(parameters[0]))
38         {
39                 user->WriteRemoteNotice(InspIRCd::Format("*** RCONNECT: Server \002%s\002 isn't connected to the network!", parameters[0].c_str()));
40                 return CMD_FAILURE;
41         }
42
43         /* Is this aimed at our server? */
44         if (InspIRCd::Match(ServerInstance->Config->ServerName,parameters[0]))
45         {
46                 /* Yes, initiate the given connect */
47                 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());
48                 std::vector<std::string> para;
49                 para.push_back(parameters[1]);
50                 ((ModuleSpanningTree*)(Module*)creator)->HandleConnect(para, user);
51         }
52         else
53         {
54                 /* It's not aimed at our server, but if the request originates from our user
55                  * acknowledge that we sent the request.
56                  *
57                  * It's possible that we're asking a server for something that makes no sense
58                  * (e.g. connect to itself or to an already connected server), but we don't check
59                  * for those conditions here, as ModuleSpanningTree::HandleConnect() (which will run
60                  * on the target) does all the checking and error reporting.
61                  */
62                 if (IS_LOCAL(user))
63                 {
64                         user->WriteNotice("*** RCONNECT: Sending remote connect to \002 " + parameters[0] + "\002 to connect server \002" + parameters[1] + "\002.");
65                 }
66         }
67         return CMD_SUCCESS;
68 }
69
70 RouteDescriptor CommandRConnect::GetRouting(User* user, const std::vector<std::string>& parameters)
71 {
72         return ROUTE_UNICAST(parameters[0]);
73 }