/* * InspIRCd -- Internet Relay Chat Daemon * * Copyright (C) 2007 Dennis Friis * Copyright (C) 2005, 2007 Robin Burchell * Copyright (C) 2006 Craig Edwards * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, version 2. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /* * DEVOICE module for InspIRCd * Syntax: /DEVOICE <#chan> */ /* $ModDesc: Provides voiced users with the ability to devoice themselves. */ #include "inspircd.h" /** Handle /DEVOICE */ class CommandDevoice : public Command { public: CommandDevoice (InspIRCd* Instance) : Command(Instance,"DEVOICE", 0, 1) { this->source = "m_devoice.so"; syntax = ""; TRANSLATE2(TR_TEXT, TR_END); } CmdResult Handle (const std::vector ¶meters, User *user) { Channel* c = ServerInstance->FindChan(parameters[0]); if (c && c->HasUser(user)) { std::vector modes; modes.push_back(parameters[0]); modes.push_back("-v"); modes.push_back(user->nick); ServerInstance->SendGlobalMode(modes, ServerInstance->FakeClient); return CMD_LOCALONLY; } return CMD_FAILURE; } }; class ModuleDeVoice : public Module { CommandDevoice *mycommand; public: ModuleDeVoice(InspIRCd* Me) : Module(Me) { mycommand = new CommandDevoice(ServerInstance); ServerInstance->AddCommand(mycommand); } virtual ~ModuleDeVoice() { } virtual Version GetVersion() { return Version("$Id$", VF_VENDOR, API_VERSION); } }; MODULE_INIT(ModuleDeVoice)