2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5 * Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6 * Copyright (C) 2004-2007 Craig Edwards <craigedwards@brainbox.cc>
8 * This file is part of InspIRCd. InspIRCd is free software: you can
9 * redistribute it and/or modify it under the terms of the GNU General Public
10 * License as published by the Free Software Foundation, version 2.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
26 class CommandSapart : public Command
29 CommandSapart(Module* Creator) : Command(Creator,"SAPART", 2, 3)
31 flags_needed = 'o'; syntax = "<nick> <channel>[,<channel>]+ [:<reason>]";
32 TRANSLATE3(TR_NICK, TR_TEXT, TR_TEXT);
35 CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
37 if (CommandParser::LoopCall(user, this, parameters, 1))
40 User* dest = ServerInstance->FindNick(parameters[0]);
41 Channel* channel = ServerInstance->FindChan(parameters[1]);
44 if ((dest) && (dest->registered == REG_ALL) && (channel))
46 if (parameters.size() > 2)
47 reason = parameters[2];
49 if (dest->server->IsULine())
51 user->WriteNumeric(ERR_NOPRIVILEGES, "Cannot use an SA command on a U-lined client");
55 if (!channel->HasUser(dest))
57 user->WriteNotice("*** " + dest->nick + " is not on " + channel->name);
61 /* For local clients, directly part them generating a PART message. For remote clients,
62 * just return CMD_SUCCESS knowing the protocol module will route the SAPART to the users
63 * local server and that will generate the PART instead
67 channel->PartUser(dest, reason);
68 ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used SAPART to make "+dest->nick+" part "+channel->name);
75 user->WriteNotice("*** Invalid nickname or channel");
81 RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
83 return ROUTE_OPT_UCAST(parameters[0]);
88 class ModuleSapart : public Module
97 Version GetVersion() CXX11_OVERRIDE
99 return Version("Provides the SAPART command, allows opers to force-part users from channels", VF_OPTCOMMON | VF_VENDOR);
103 MODULE_INIT(ModuleSapart)