]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_devoice.cpp
Introduce ModeProcessFlags, can be passed to ModeParser::Process() to indicate local...
[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                 TRANSLATE2(TR_TEXT, TR_END);
40         }
41
42         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
43         {
44                 std::vector<std::string> modes;
45                 modes.push_back(parameters[0]);
46                 modes.push_back("-v");
47                 modes.push_back(user->nick);
48
49                 ServerInstance->Modes->Process(modes, ServerInstance->FakeClient);
50                 return CMD_SUCCESS;
51         }
52 };
53
54 class ModuleDeVoice : public Module
55 {
56         CommandDevoice cmd;
57  public:
58         ModuleDeVoice() : cmd(this)
59         {
60         }
61
62         void init() CXX11_OVERRIDE
63         {
64                 ServerInstance->Modules->AddService(cmd);
65         }
66
67         Version GetVersion() CXX11_OVERRIDE
68         {
69                 return Version("Provides voiced users with the ability to devoice themselves.", VF_VENDOR);
70         }
71 };
72
73 MODULE_INIT(ModuleDeVoice)