]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_devoice.cpp
Replace hardcoded mode letters passed to IsModeSet() and GetModeParameter() with...
[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 /* $ModDesc: Provides voiced users with the ability to devoice themselves. */
28
29 #include "inspircd.h"
30
31 /** Handle /DEVOICE
32  */
33 class CommandDevoice : public Command
34 {
35  public:
36         CommandDevoice(Module* Creator) : Command(Creator,"DEVOICE", 1)
37         {
38                 syntax = "<channel>";
39         }
40
41         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
42         {
43                 std::vector<std::string> modes;
44                 modes.push_back(parameters[0]);
45                 modes.push_back("-v");
46                 modes.push_back(user->nick);
47
48                 ServerInstance->Modes->Process(modes, ServerInstance->FakeClient);
49                 return CMD_SUCCESS;
50         }
51 };
52
53 class ModuleDeVoice : public Module
54 {
55         CommandDevoice cmd;
56  public:
57         ModuleDeVoice() : cmd(this)
58         {
59         }
60
61         void init() CXX11_OVERRIDE
62         {
63                 ServerInstance->Modules->AddService(cmd);
64         }
65
66         Version GetVersion() CXX11_OVERRIDE
67         {
68                 return Version("Provides voiced users with the ability to devoice themselves.", VF_VENDOR);
69         }
70 };
71
72 MODULE_INIT(ModuleDeVoice)