]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_operprefix.cpp
Add CXX11_OVERRIDE to overridden members that lack it.
[user/henk/code/inspircd.git] / src / modules / m_operprefix.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 /*
22  * Originally by Chernov-Phoenix Alexey (Phoenix@RusNet) mailto:phoenix /email address separator/ pravmail.ru
23  */
24
25 #include "inspircd.h"
26
27 #define OPERPREFIX_VALUE 1000000
28
29 class OperPrefixMode : public PrefixMode
30 {
31         public:
32                 OperPrefixMode(Module* Creator)
33                         : PrefixMode(Creator, "operprefix", 'y', OPERPREFIX_VALUE)
34                 {
35                         std::string pfx = ServerInstance->Config->ConfValue("operprefix")->getString("prefix", "!");
36                         prefix = pfx.empty() ? '!' : pfx[0];
37                         levelrequired = INT_MAX;
38                 }
39 };
40
41 class ModuleOperPrefixMode;
42 class HideOperWatcher : public ModeWatcher
43 {
44         ModuleOperPrefixMode* parentmod;
45
46  public:
47         HideOperWatcher(ModuleOperPrefixMode* parent);
48         void AfterMode(User* source, User* dest, Channel* channel, const std::string &parameter, bool adding);
49 };
50
51 class ModuleOperPrefixMode : public Module
52 {
53         OperPrefixMode opm;
54         HideOperWatcher hideoperwatcher;
55         UserModeReference hideopermode;
56
57  public:
58         ModuleOperPrefixMode()
59                 : opm(this), hideoperwatcher(this)
60                 , hideopermode(this, "hideoper")
61         {
62                 /* To give clients a chance to learn about the new prefix we don't give +y to opers
63                  * right now. That means if the module was loaded after opers have joined channels
64                  * they need to rejoin them in order to get the oper prefix.
65                  */
66         }
67
68         ModResult OnUserPreJoin(LocalUser* user, Channel* chan, const std::string& cname, std::string& privs, const std::string& keygiven) CXX11_OVERRIDE
69         {
70                 if ((user->IsOper()) && (!user->IsModeSet(hideopermode)))
71                         privs.push_back('y');
72                 return MOD_RES_PASSTHRU;
73         }
74
75         void OnPostJoin(Membership* memb) CXX11_OVERRIDE
76         {
77                 if ((!IS_LOCAL(memb->user)) || (!memb->user->IsOper()) || (memb->user->IsModeSet(hideopermode)))
78                         return;
79
80                 if (memb->HasMode(&opm))
81                         return;
82
83                 // The user was force joined and OnUserPreJoin() did not run. Set the operprefix now.
84                 Modes::ChangeList changelist;
85                 changelist.push_add(&opm, memb->user->nick);
86                 ServerInstance->Modes.Process(ServerInstance->FakeClient, memb->chan, NULL, changelist);
87         }
88
89         void SetOperPrefix(User* user, bool add)
90         {
91                 Modes::ChangeList changelist;
92                 changelist.push(&opm, add, user->nick);
93                 for (User::ChanList::iterator v = user->chans.begin(); v != user->chans.end(); v++)
94                         ServerInstance->Modes->Process(ServerInstance->FakeClient, (*v)->chan, NULL, changelist);
95         }
96
97         void OnPostOper(User* user, const std::string& opername, const std::string& opertype) CXX11_OVERRIDE
98         {
99                 if (IS_LOCAL(user) && (!user->IsModeSet(hideopermode)))
100                         SetOperPrefix(user, true);
101         }
102
103         Version GetVersion() CXX11_OVERRIDE
104         {
105                 return Version("Gives opers cmode +y which provides a staff prefix.", VF_VENDOR);
106         }
107
108         void Prioritize() CXX11_OVERRIDE
109         {
110                 // m_opermodes may set +H on the oper to hide him, we don't want to set the oper prefix in that case
111                 Module* opermodes = ServerInstance->Modules->Find("m_opermodes.so");
112                 ServerInstance->Modules->SetPriority(this, I_OnPostOper, PRIORITY_AFTER, opermodes);
113         }
114 };
115
116 HideOperWatcher::HideOperWatcher(ModuleOperPrefixMode* parent)
117         : ModeWatcher(parent, "hideoper", MODETYPE_USER)
118         , parentmod(parent)
119 {
120 }
121
122 void HideOperWatcher::AfterMode(User* source, User* dest, Channel* channel, const std::string& parameter, bool adding)
123 {
124         // If hideoper is being unset because the user is deopering, don't set +y
125         if (IS_LOCAL(dest) && dest->IsOper())
126                 parentmod->SetOperPrefix(dest, !adding);
127 }
128
129 MODULE_INIT(ModuleOperPrefixMode)