]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_hidechans.cpp
Replace copyright headers with headers granting specific authors copyright
[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 ModeHandler
28 {
29  public:
30         HideChans(Module* Creator) : ModeHandler(Creator, "hidechans", 'I', PARAM_NONE, MODETYPE_USER) { }
31
32         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
33         {
34                 if (adding)
35                 {
36                         if (!dest->IsModeSet('I'))
37                         {
38                                 dest->SetMode('I',true);
39                                 return MODEACTION_ALLOW;
40                         }
41                 }
42                 else
43                 {
44                         if (dest->IsModeSet('I'))
45                         {
46                                 dest->SetMode('I',false);
47                                 return MODEACTION_ALLOW;
48                         }
49                 }
50
51                 return MODEACTION_DENY;
52         }
53 };
54
55 class ModuleHideChans : public Module
56 {
57         bool AffectsOpers;
58         HideChans hm;
59  public:
60         ModuleHideChans() : hm(this)
61         {
62                 if (!ServerInstance->Modes->AddMode(&hm))
63                         throw ModuleException("Could not add new modes!");
64                 Implementation eventlist[] = { I_OnWhoisLine, I_OnRehash };
65                 ServerInstance->Modules->Attach(eventlist, this, 2);
66                 OnRehash(NULL);
67         }
68
69         virtual ~ModuleHideChans()
70         {
71         }
72
73         virtual Version GetVersion()
74         {
75                 return Version("Provides support for hiding channels with user mode +I", VF_VENDOR);
76         }
77
78         virtual void OnRehash(User* user)
79         {
80                 ConfigReader conf;
81                 AffectsOpers = conf.ReadFlag("hidechans", "affectsopers", 0);
82         }
83
84         ModResult OnWhoisLine(User* user, User* dest, int &numeric, std::string &text)
85         {
86                 /* always show to self */
87                 if (user == dest)
88                         return MOD_RES_PASSTHRU;
89
90                 /* don't touch anything except 319 */
91                 if (numeric != 319)
92                         return MOD_RES_PASSTHRU;
93
94                 /* don't touch if -I */
95                 if (!dest->IsModeSet('I'))
96                         return MOD_RES_PASSTHRU;
97
98                 /* if it affects opers, we don't care if they are opered */
99                 if (AffectsOpers)
100                         return MOD_RES_DENY;
101
102                 /* doesn't affect opers, sender is opered */
103                 if (user->HasPrivPermission("users/auspex"))
104                         return MOD_RES_PASSTHRU;
105
106                 /* user must be opered, boned. */
107                 return MOD_RES_DENY;
108         }
109 };
110
111
112 MODULE_INIT(ModuleHideChans)