2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2010 Daniel De Graaf <danieldg@inspircd.org>
5 * Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
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.
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
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/>.
24 #include "socketengine.h"
28 #include "treeserver.h"
31 CmdResult CommandSVSJoin::Handle(const std::vector<std::string>& parameters, User *user)
33 // Check for valid channel name
34 if (!ServerInstance->IsChannel(parameters[1].c_str(), ServerInstance->Config->Limits.ChanMax))
37 // Check target exists
38 User* u = ServerInstance->FindUUID(parameters[0]);
42 /* only join if it's local, otherwise just pass it on! */
44 Channel::JoinUser(u, parameters[1].c_str(), false, "", false, ServerInstance->Time());
48 RouteDescriptor CommandSVSJoin::GetRouting(User* user, const std::vector<std::string>& parameters)
50 User* u = ServerInstance->FindUUID(parameters[0]);
52 return ROUTE_OPT_UCAST(u->server);
53 return ROUTE_LOCALONLY;