]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_hidechans.cpp
Merge tag 'v2.0.27' into master.
[user/henk/code/inspircd.git] / src / modules / m_hidechans.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
5  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
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 #include "inspircd.h"
22 #include "modules/whois.h"
23
24 /** Handles user mode +I
25  */
26 class HideChans : public SimpleUserModeHandler
27 {
28  public:
29         HideChans(Module* Creator) : SimpleUserModeHandler(Creator, "hidechans", 'I') { }
30 };
31
32 class ModuleHideChans : public Module, public Whois::LineEventListener
33 {
34         bool AffectsOpers;
35         HideChans hm;
36  public:
37         ModuleHideChans()
38                 : Whois::LineEventListener(this)
39                 , hm(this)
40         {
41         }
42
43         Version GetVersion() CXX11_OVERRIDE
44         {
45                 return Version("Provides support for hiding channels with user mode +I", VF_VENDOR);
46         }
47
48         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
49         {
50                 AffectsOpers = ServerInstance->Config->ConfValue("hidechans")->getBool("affectsopers");
51         }
52
53         ModResult OnWhoisLine(Whois::Context& whois, Numeric::Numeric& numeric) CXX11_OVERRIDE
54         {
55                 /* always show to self */
56                 if (whois.IsSelfWhois())
57                         return MOD_RES_PASSTHRU;
58
59                 /* don't touch anything except 319 */
60                 if (numeric.GetNumeric() != 319)
61                         return MOD_RES_PASSTHRU;
62
63                 /* don't touch if -I */
64                 if (!whois.GetTarget()->IsModeSet(hm))
65                         return MOD_RES_PASSTHRU;
66
67                 /* if it affects opers, we don't care if they are opered */
68                 if (AffectsOpers)
69                         return MOD_RES_DENY;
70
71                 /* doesn't affect opers, sender is opered */
72                 if (whois.GetSource()->HasPrivPermission("users/auspex"))
73                         return MOD_RES_PASSTHRU;
74
75                 /* user must be opered, boned. */
76                 return MOD_RES_DENY;
77         }
78 };
79
80 MODULE_INIT(ModuleHideChans)