]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_hidechans.cpp
Remove $Core and $Mod* comments apart from $ModDep.
[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
23 /** Handles user mode +I
24  */
25 class HideChans : public SimpleUserModeHandler
26 {
27  public:
28         HideChans(Module* Creator) : SimpleUserModeHandler(Creator, "hidechans", 'I') { }
29 };
30
31 class ModuleHideChans : public Module
32 {
33         bool AffectsOpers;
34         HideChans hm;
35  public:
36         ModuleHideChans() : hm(this)
37         {
38         }
39
40         void init() CXX11_OVERRIDE
41         {
42                 ServerInstance->Modules->AddService(hm);
43                 Implementation eventlist[] = { I_OnWhoisLine, I_OnRehash };
44                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
45                 OnRehash(NULL);
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 OnRehash(User* user) CXX11_OVERRIDE
54         {
55                 AffectsOpers = ServerInstance->Config->ConfValue("hidechans")->getBool("affectsopers");
56         }
57
58         ModResult OnWhoisLine(User* user, User* dest, int &numeric, std::string &text) CXX11_OVERRIDE
59         {
60                 /* always show to self */
61                 if (user == dest)
62                         return MOD_RES_PASSTHRU;
63
64                 /* don't touch anything except 319 */
65                 if (numeric != 319)
66                         return MOD_RES_PASSTHRU;
67
68                 /* don't touch if -I */
69                 if (!dest->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 (user->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)