]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/svspart.cpp
Fix a bunch of weird indentation and spacing issues.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / svspart.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012, 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 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 CommandSVSPart::Handle(User* user, Params& parameters)
30 {
31         User* u = ServerInstance->FindUUID(parameters[0]);
32         if (!u)
33                 return CMD_FAILURE;
34
35         Channel* c = ServerInstance->FindChan(parameters[1]);
36         if (!c)
37                 return CMD_FAILURE;
38
39         if (IS_LOCAL(u))
40         {
41                 std::string reason = (parameters.size() == 3) ? parameters[2] : "Services forced part";
42                 c->PartUser(u, reason);
43         }
44         return CMD_SUCCESS;
45 }
46
47 RouteDescriptor CommandSVSPart::GetRouting(User* user, const Params& parameters)
48 {
49         return ROUTE_OPT_UCAST(parameters[0]);
50 }