]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_hidechans.cpp
Remove the size argument from IsChannel and IsNick.
[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 /* $ModDesc: Provides support for hiding channels with user mode +I */
24
25 /** Handles user mode +I
26  */
27 class HideChans : public SimpleUserModeHandler
28 {
29  public:
30         HideChans(Module* Creator) : SimpleUserModeHandler(Creator, "hidechans", 'I') { }
31 };
32
33 class ModuleHideChans : public Module
34 {
35         bool AffectsOpers;
36         HideChans hm;
37  public:
38         ModuleHideChans() : hm(this)
39         {
40         }
41
42         void init() CXX11_OVERRIDE
43         {
44                 ServerInstance->Modules->AddService(hm);
45                 Implementation eventlist[] = { I_OnWhoisLine, I_OnRehash };
46                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
47                 OnRehash(NULL);
48         }
49
50         Version GetVersion() CXX11_OVERRIDE
51         {
52                 return Version("Provides support for hiding channels with user mode +I", VF_VENDOR);
53         }
54
55         void OnRehash(User* user) CXX11_OVERRIDE
56         {
57                 AffectsOpers = ServerInstance->Config->ConfValue("hidechans")->getBool("affectsopers");
58         }
59
60         ModResult OnWhoisLine(User* user, User* dest, int &numeric, std::string &text) CXX11_OVERRIDE
61         {
62                 /* always show to self */
63                 if (user == dest)
64                         return MOD_RES_PASSTHRU;
65
66                 /* don't touch anything except 319 */
67                 if (numeric != 319)
68                         return MOD_RES_PASSTHRU;
69
70                 /* don't touch if -I */
71                 if (!dest->IsModeSet('I'))
72                         return MOD_RES_PASSTHRU;
73
74                 /* if it affects opers, we don't care if they are opered */
75                 if (AffectsOpers)
76                         return MOD_RES_DENY;
77
78                 /* doesn't affect opers, sender is opered */
79                 if (user->HasPrivPermission("users/auspex"))
80                         return MOD_RES_PASSTHRU;
81
82                 /* user must be opered, boned. */
83                 return MOD_RES_DENY;
84         }
85 };
86
87 MODULE_INIT(ModuleHideChans)