]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/encap.cpp
Sync helpop chmodes s and p with docs
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / encap.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012-2014, 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) 2009 Uli Schlachter <psychon@inspircd.org>
9  *   Copyright (C) 2008 Craig Edwards <brain@inspircd.org>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24
25 #include "inspircd.h"
26
27 #include "commands.h"
28 #include "main.h"
29
30 /** ENCAP */
31 CmdResult CommandEncap::Handle(User* user, Params& params)
32 {
33         if (ServerInstance->Config->GetSID() == params[0] || InspIRCd::Match(ServerInstance->Config->ServerName, params[0]))
34         {
35                 CommandBase::Params plist(params.begin() + 2, params.end());
36
37                 // XXX: Workaround for SVS* commands provided by spanningtree not being registered in the core
38                 if ((params[1] == "SVSNICK") || (params[1] == "SVSJOIN") || (params[1] == "SVSPART"))
39                 {
40                         ServerCommand* const scmd = Utils->Creator->CmdManager.GetHandler(params[1]);
41                         if (scmd)
42                                 scmd->Handle(user, plist);
43                         return CMD_SUCCESS;
44                 }
45
46                 Command* cmd = NULL;
47                 ServerInstance->Parser.CallHandler(params[1], plist, user, &cmd);
48                 // Discard return value, ENCAP shall succeed even if the command does not exist
49
50                 if ((cmd) && (cmd->force_manual_route))
51                         return CMD_FAILURE;
52         }
53         return CMD_SUCCESS;
54 }
55
56 RouteDescriptor CommandEncap::GetRouting(User* user, const Params& params)
57 {
58         if (params[0].find_first_of("*?") != std::string::npos)
59                 return ROUTE_BROADCAST;
60         return ROUTE_UNICAST(params[0]);
61 }