]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_samode.cpp
cmd_mode Exempt remote users and servers from max modes limitation when changing...
[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                 if (parameters[0].c_str()[0] != '#')
41                 {
42                         User* target = ServerInstance->FindNickOnly(parameters[0]);
43                         if ((!target) || (target->registered != REG_ALL))
44                         {
45                                 user->WriteNumeric(ERR_NOSUCHNICK, "%s %s :No such nick/channel", user->nick.c_str(), parameters[0].c_str());
46                                 return CMD_FAILURE;
47                         }
48                 }
49                 User* target = ServerInstance->FindNick(parameters[0]);
50                 if ((target) && (target != user))
51                 {
52                         if (!user->HasPrivPermission("users/samode-usermodes", true))
53                                 return CMD_FAILURE;
54                 }
55
56                 // XXX: Make ModeParser clear LastParse
57                 Modes::ChangeList emptychangelist;
58                 ServerInstance->Modes->ProcessSingle(ServerInstance->FakeClient, NULL, ServerInstance->FakeClient, emptychangelist);
59
60                 this->active = true;
61                 CmdResult result = ServerInstance->Parser.CallHandler("MODE", parameters, user);
62                 this->active = false;
63
64                 if (result == CMD_SUCCESS)
65                 {
66                         // If lastparse is empty and the MODE command handler returned CMD_SUCCESS then
67                         // the client queried the list of a listmode (e.g. /SAMODE #chan b), which was
68                         // handled internally by the MODE command handler.
69                         //
70                         // Viewing the modes of a user or a channel can also result in CMD_SUCCESS, but
71                         // that is not possible with /SAMODE because we require at least 2 parameters.
72                         const std::string& lastparse = ServerInstance->Modes.GetLastParse();
73                         ServerInstance->SNO->WriteGlobalSno('a', user->nick + " used SAMODE: " + (lastparse.empty() ? irc::stringjoiner(parameters) : lastparse));
74                 }
75
76                 return CMD_SUCCESS;
77         }
78 };
79
80 class ModuleSaMode : public Module
81 {
82         CommandSamode cmd;
83  public:
84         ModuleSaMode()
85                 : cmd(this)
86         {
87         }
88
89         Version GetVersion() CXX11_OVERRIDE
90         {
91                 return Version("Provides command SAMODE to allow opers to change modes on channels and users", VF_VENDOR);
92         }
93
94         ModResult OnPreMode(User* source, User* dest, Channel* channel, Modes::ChangeList& modes) CXX11_OVERRIDE
95         {
96                 if (cmd.active)
97                         return MOD_RES_ALLOW;
98                 return MOD_RES_PASSTHRU;
99         }
100
101         void Prioritize()
102         {
103                 Module *override = ServerInstance->Modules->Find("m_override.so");
104                 ServerInstance->Modules->SetPriority(this, I_OnPreMode, PRIORITY_BEFORE, &override);
105         }
106 };
107
108 MODULE_INIT(ModuleSaMode)