]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_operprefix.cpp
3d2a34bdb22425da2cd238987d398c80f559240e
[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) : PrefixMode(Creator, "operprefix", 'y')
33                 {
34                         std::string pfx = ServerInstance->Config->ConfValue("operprefix")->getString("prefix", "!");
35                         prefix = pfx.empty() ? '!' : pfx[0];
36                         levelrequired = INT_MAX;
37                         prefixrank = OPERPREFIX_VALUE;
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         }
63
64         void init() CXX11_OVERRIDE
65         {
66                 /* To give clients a chance to learn about the new prefix we don't give +y to opers
67                  * right now. That means if the module was loaded after opers have joined channels
68                  * they need to rejoin them in order to get the oper prefix.
69                  */
70
71                 ServerInstance->Modes->AddModeWatcher(&hideoperwatcher);
72         }
73
74         ModResult OnUserPreJoin(LocalUser* user, Channel* chan, const std::string& cname, std::string& privs, const std::string& keygiven) CXX11_OVERRIDE
75         {
76                 if ((user->IsOper()) && (!user->IsModeSet(hideopermode)))
77                         privs.push_back('y');
78                 return MOD_RES_PASSTHRU;
79         }
80
81         void SetOperPrefix(User* user, bool add)
82         {
83                 std::vector<std::string> modechange;
84                 modechange.push_back("");
85                 modechange.push_back(add ? "+" : "-");
86                 modechange[1].push_back(opm.GetModeChar());
87                 modechange.push_back(user->nick);
88                 for (UCListIter v = user->chans.begin(); v != user->chans.end(); v++)
89                 {
90                         modechange[0] = (*v)->name;
91                         ServerInstance->Modes->Process(modechange, ServerInstance->FakeClient);
92                 }
93         }
94
95         void OnPostOper(User* user, const std::string& opername, const std::string& opertype) CXX11_OVERRIDE
96         {
97                 if (IS_LOCAL(user) && (!user->IsModeSet(hideopermode)))
98                         SetOperPrefix(user, true);
99         }
100
101
102         ~ModuleOperPrefixMode()
103         {
104                 ServerInstance->Modes->DelModeWatcher(&hideoperwatcher);
105         }
106
107         Version GetVersion() CXX11_OVERRIDE
108         {
109                 return Version("Gives opers cmode +y which provides a staff prefix.", VF_VENDOR);
110         }
111
112         void Prioritize()
113         {
114                 // m_opermodes may set +H on the oper to hide him, we don't want to set the oper prefix in that case
115                 Module* opermodes = ServerInstance->Modules->Find("m_opermodes.so");
116                 ServerInstance->Modules->SetPriority(this, I_OnPostOper, PRIORITY_AFTER, opermodes);
117         }
118 };
119
120 HideOperWatcher::HideOperWatcher(ModuleOperPrefixMode* parent)
121         : ModeWatcher(parent, "hideoper", MODETYPE_USER)
122         , parentmod(parent)
123 {
124 }
125
126 void HideOperWatcher::AfterMode(User* source, User* dest, Channel* channel, const std::string& parameter, bool adding)
127 {
128         if (IS_LOCAL(dest))
129                 parentmod->SetOperPrefix(dest, !adding);
130 }
131
132 MODULE_INIT(ModuleOperPrefixMode)