1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/*
* InspIRCd -- Internet Relay Chat Daemon
*
* Copyright (C) 2014 Attila Molnar <attilamolnar@hush.com>
*
* This file is part of InspIRCd. InspIRCd is free software: you can
* redistribute it and/or modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation, version 2.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "inspircd.h"
class ListWatcher : public ModeWatcher
{
// Minimum rank required to view the list
const unsigned int minrank;
public:
ListWatcher(Module* mod, const std::string& modename, unsigned int rank)
: ModeWatcher(mod, modename, MODETYPE_CHANNEL)
, minrank(rank)
{
}
bool BeforeMode(User* user, User* destuser, Channel* chan, std::string& param, bool adding) CXX11_OVERRIDE
{
// Only handle listmode list requests
if (!param.empty())
return true;
// If the user requesting the list is a member of the channel see if they have the
// rank required to view the list
Membership* memb = chan->GetUser(user);
if ((memb) && (memb->getRank() >= minrank))
return true;
if (user->HasPrivPermission("channels/auspex"))
return true;
user->WriteNumeric(ERR_CHANOPRIVSNEEDED, chan->name, InspIRCd::Format("You do not have access to view the %s list", GetModeName().c_str()));
return false;
}
};
class ModuleHideList : public Module
{
std::vector<ListWatcher*> watchers;
public:
void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
{
ConfigTagList tags = ServerInstance->Config->ConfTags("hidelist");
typedef std::vector<std::pair<std::string, unsigned int> > NewConfigs;
NewConfigs newconfigs;
for (ConfigIter i = tags.first; i != tags.second; ++i)
{
ConfigTag* tag = i->second;
std::string modename = tag->getString("mode");
if (modename.empty())
throw ModuleException("Empty <hidelist:mode> at " + tag->getTagLocation());
// If rank is set to 0 everyone inside the channel can view the list,
// but non-members may not
unsigned int rank = tag->getUInt("rank", HALFOP_VALUE);
newconfigs.push_back(std::make_pair(modename, rank));
}
stdalgo::delete_all(watchers);
watchers.clear();
for (NewConfigs::const_iterator i = newconfigs.begin(); i != newconfigs.end(); ++i)
watchers.push_back(new ListWatcher(this, i->first, i->second));
}
~ModuleHideList()
{
stdalgo::delete_all(watchers);
}
Version GetVersion() CXX11_OVERRIDE
{
return Version("Provides support for hiding the list of listmodes", VF_VENDOR);
}
};
MODULE_INIT(ModuleHideList)
|