]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_hidechans.cpp
Update copyright headers.
[user/henk/code/inspircd.git] / src / modules / m_hidechans.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012-2013, 2015-2016 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
8  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
9  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
10  *   Copyright (C) 2006, 2008 Robin Burchell <robin+git@viroteck.net>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #include "inspircd.h"
27 #include "modules/whois.h"
28
29 /** Handles user mode +I
30  */
31 class HideChans : public SimpleUserModeHandler
32 {
33  public:
34         HideChans(Module* Creator) : SimpleUserModeHandler(Creator, "hidechans", 'I') { }
35 };
36
37 class ModuleHideChans : public Module, public Whois::LineEventListener
38 {
39         bool AffectsOpers;
40         HideChans hm;
41  public:
42         ModuleHideChans()
43                 : Whois::LineEventListener(this)
44                 , hm(this)
45         {
46         }
47
48         Version GetVersion() CXX11_OVERRIDE
49         {
50                 return Version("Provides support for hiding channels with user mode +I", VF_VENDOR);
51         }
52
53         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
54         {
55                 AffectsOpers = ServerInstance->Config->ConfValue("hidechans")->getBool("affectsopers");
56         }
57
58         ModResult OnWhoisLine(Whois::Context& whois, Numeric::Numeric& numeric) CXX11_OVERRIDE
59         {
60                 /* always show to self */
61                 if (whois.IsSelfWhois())
62                         return MOD_RES_PASSTHRU;
63
64                 /* don't touch anything except 319 */
65                 if (numeric.GetNumeric() != 319)
66                         return MOD_RES_PASSTHRU;
67
68                 /* don't touch if -I */
69                 if (!whois.GetTarget()->IsModeSet(hm))
70                         return MOD_RES_PASSTHRU;
71
72                 /* if it affects opers, we don't care if they are opered */
73                 if (AffectsOpers)
74                         return MOD_RES_DENY;
75
76                 /* doesn't affect opers, sender is opered */
77                 if (whois.GetSource()->HasPrivPermission("users/auspex"))
78                         return MOD_RES_PASSTHRU;
79
80                 /* user must be opered, boned. */
81                 return MOD_RES_DENY;
82         }
83 };
84
85 MODULE_INIT(ModuleHideChans)