]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_hidechans.cpp
9c582551b7dfcab396a3611110d70aed3e4c5484
[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                 if (!ServerInstance->Modes->AddMode(&hm))
41                         throw ModuleException("Could not add new modes!");
42                 Implementation eventlist[] = { I_OnWhoisLine, I_OnRehash };
43                 ServerInstance->Modules->Attach(eventlist, this, 2);
44                 OnRehash(NULL);
45         }
46
47         virtual ~ModuleHideChans()
48         {
49         }
50
51         virtual Version GetVersion()
52         {
53                 return Version("Provides support for hiding channels with user mode +I", VF_VENDOR);
54         }
55
56         virtual void OnRehash(User* user)
57         {
58                 ConfigReader conf;
59                 AffectsOpers = conf.ReadFlag("hidechans", "affectsopers", 0);
60         }
61
62         ModResult OnWhoisLine(User* user, User* dest, int &numeric, std::string &text)
63         {
64                 /* always show to self */
65                 if (user == dest)
66                         return MOD_RES_PASSTHRU;
67
68                 /* don't touch anything except 319 */
69                 if (numeric != 319)
70                         return MOD_RES_PASSTHRU;
71
72                 /* don't touch if -I */
73                 if (!dest->IsModeSet('I'))
74                         return MOD_RES_PASSTHRU;
75
76                 /* if it affects opers, we don't care if they are opered */
77                 if (AffectsOpers)
78                         return MOD_RES_DENY;
79
80                 /* doesn't affect opers, sender is opered */
81                 if (user->HasPrivPermission("users/auspex"))
82                         return MOD_RES_PASSTHRU;
83
84                 /* user must be opered, boned. */
85                 return MOD_RES_DENY;
86         }
87 };
88
89
90 MODULE_INIT(ModuleHideChans)