]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_samode.cpp
a549f89a7a6484b4840a01bb46f5d900e44a5f57
[user/henk/code/inspircd.git] / src / modules / m_samode.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
6  *   Copyright (C) 2006-2007 Robin Burchell <robin+git@viroteck.net>
7  *   Copyright (C) 2004-2005 Craig Edwards <craigedwards@brainbox.cc>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #include "inspircd.h"
24
25 /** Handle /SAMODE
26  */
27 class CommandSamode : public Command
28 {
29  public:
30         bool active;
31         CommandSamode(Module* Creator) : Command(Creator,"SAMODE", 2)
32         {
33                 allow_empty_last_param = false;
34                 flags_needed = 'o'; Penalty = 0; syntax = "<target> <modes> {<mode-parameters>}";
35                 active = false;
36         }
37
38         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
39         {
40                 User* target = ServerInstance->FindNick(parameters[0]);
41                 if ((target) && (target != user))
42                 {
43                         if (!user->HasPrivPermission("users/samode-usermodes", true))
44                                 return CMD_FAILURE;
45                 }
46                 this->active = true;
47                 ServerInstance->Modes->Process(parameters, user);
48                 if (ServerInstance->Modes->GetLastParse().length())
49                         ServerInstance->SNO->WriteGlobalSno('a', user->nick + " used SAMODE: " +ServerInstance->Modes->GetLastParse());
50                 this->active = false;
51                 return CMD_SUCCESS;
52         }
53 };
54
55 class ModuleSaMode : public Module
56 {
57         CommandSamode cmd;
58  public:
59         ModuleSaMode()
60                 : cmd(this)
61         {
62         }
63
64         void init() CXX11_OVERRIDE
65         {
66                 ServerInstance->Modules->AddService(cmd);
67         }
68
69         Version GetVersion() CXX11_OVERRIDE
70         {
71                 return Version("Provides command SAMODE to allow opers to change modes on channels and users", VF_VENDOR);
72         }
73
74         ModResult OnPreMode(User* source,User* dest,Channel* channel, const std::vector<std::string>& parameters) CXX11_OVERRIDE
75         {
76                 if (cmd.active)
77                         return MOD_RES_ALLOW;
78                 return MOD_RES_PASSTHRU;
79         }
80
81         void Prioritize()
82         {
83                 Module *override = ServerInstance->Modules->Find("m_override.so");
84                 ServerInstance->Modules->SetPriority(this, I_OnPreMode, PRIORITY_BEFORE, &override);
85         }
86 };
87
88 MODULE_INIT(ModuleSaMode)