]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_devoice.cpp
Remove ProtocolInterface::SendMode()
[user/henk/code/inspircd.git] / src / modules / m_devoice.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2005, 2007 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2006 Craig Edwards <craigedwards@brainbox.cc>
7  *
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.
11  *
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
15  * details.
16  *
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/>.
19  */
20
21
22 /*
23  * DEVOICE module for InspIRCd
24  *  Syntax: /DEVOICE <#chan>
25  */
26
27 #include "inspircd.h"
28
29 /** Handle /DEVOICE
30  */
31 class CommandDevoice : public Command
32 {
33  public:
34         CommandDevoice(Module* Creator) : Command(Creator,"DEVOICE", 1)
35         {
36                 syntax = "<channel>";
37         }
38
39         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
40         {
41                 std::vector<std::string> modes;
42                 modes.push_back(parameters[0]);
43                 modes.push_back("-v");
44                 modes.push_back(user->nick);
45
46                 ServerInstance->Modes->Process(modes, ServerInstance->FakeClient);
47                 return CMD_SUCCESS;
48         }
49 };
50
51 class ModuleDeVoice : public Module
52 {
53         CommandDevoice cmd;
54  public:
55         ModuleDeVoice() : cmd(this)
56         {
57         }
58
59         Version GetVersion() CXX11_OVERRIDE
60         {
61                 return Version("Provides voiced users with the ability to devoice themselves.", VF_VENDOR);
62         }
63 };
64
65 MODULE_INIT(ModuleDeVoice)