]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/svsjoin.cpp
Update copyright headers.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / svsjoin.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 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) 2010 Daniel De Graaf <danieldg@inspircd.org>
8  *   Copyright (C) 2010 Craig Edwards <brain@inspircd.org>
9  *   Copyright (C) 2008-2009 Robin Burchell <robin+git@viroteck.net>
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
29 CmdResult CommandSVSJoin::Handle(User* user, Params& parameters)
30 {
31         // Check for valid channel name
32         if (!ServerInstance->IsChannel(parameters[1]))
33                 return CMD_FAILURE;
34
35         // Check target exists
36         User* u = ServerInstance->FindUUID(parameters[0]);
37         if (!u)
38                 return CMD_FAILURE;
39
40         /* only join if it's local, otherwise just pass it on! */
41         LocalUser* localuser = IS_LOCAL(u);
42         if (localuser)
43         {
44                 bool override = false;
45                 std::string key;
46                 if (parameters.size() >= 3)
47                 {
48                         key = parameters[2];
49                         if (key.empty())
50                                 override = true;
51                 }
52
53                 Channel::JoinUser(localuser, parameters[1], override, key);
54         }
55
56         return CMD_SUCCESS;
57 }
58
59 RouteDescriptor CommandSVSJoin::GetRouting(User* user, const Params& parameters)
60 {
61         return ROUTE_OPT_UCAST(parameters[0]);
62 }