]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_devoice.cpp
Merge insp20
[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                 Channel* c = ServerInstance->FindChan(parameters[0]);
45                 if (c && c->HasUser(user))
46                 {
47                         std::vector<std::string> modes;
48                         modes.push_back(parameters[0]);
49                         modes.push_back("-v");
50                         modes.push_back(user->nick);
51
52                         ServerInstance->SendGlobalMode(modes, ServerInstance->FakeClient);
53                         return CMD_SUCCESS;
54                 }
55
56                 return CMD_FAILURE;
57         }
58 };
59
60 class ModuleDeVoice : public Module
61 {
62         CommandDevoice cmd;
63  public:
64         ModuleDeVoice() : cmd(this)
65         {
66         }
67
68         void init()
69         {
70                 ServerInstance->Modules->AddService(cmd);
71         }
72
73         virtual Version GetVersion()
74         {
75                 return Version("Provides voiced users with the ability to devoice themselves.", VF_VENDOR);
76         }
77 };
78
79 MODULE_INIT(ModuleDeVoice)