]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/rconnect.cpp
Add support for blocking tag messages with the deaf mode.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / rconnect.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012-2013, 2016 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
8  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
9  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
10  *   Copyright (C) 2007-2008 Dennis Friis <peavey@inspircd.org>
11  *   Copyright (C) 2007 Craig Edwards <brain@inspircd.org>
12  *
13  * This file is part of InspIRCd.  InspIRCd is free software: you can
14  * redistribute it and/or modify it under the terms of the GNU General Public
15  * License as published by the Free Software Foundation, version 2.
16  *
17  * This program is distributed in the hope that it will be useful, but WITHOUT
18  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
19  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
20  * details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
24  */
25
26
27 #include "inspircd.h"
28
29 #include "main.h"
30 #include "utils.h"
31 #include "commands.h"
32
33 CommandRConnect::CommandRConnect (Module* Creator)
34         : Command(Creator, "RCONNECT", 2)
35 {
36         flags_needed = 'o';
37         syntax = "<remote-server-mask> <target-server-mask>";
38 }
39
40 CmdResult CommandRConnect::Handle(User* user, const Params& parameters)
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                 user->WriteRemoteNotice(InspIRCd::Format("*** 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                 CommandBase::Params 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->WriteNotice("*** RCONNECT: Sending remote connect to \002 " + parameters[0] + "\002 to connect server \002" + parameters[1] + "\002.");
71                 }
72         }
73         return CMD_SUCCESS;
74 }
75
76 RouteDescriptor CommandRConnect::GetRouting(User* user, const Params& parameters)
77 {
78         return ROUTE_UNICAST(parameters[0]);
79 }