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
|
/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2010 InspIRCd Development Team
* See: http://wiki.inspircd.org/Credits
*
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
#include "inspircd.h"
/* $ModDesc: Provides support for unreal-style oper-override */
class ModuleOverride : public Module
{
bool RequireKey;
bool NoisyOverride;
public:
void init()
{
// read our config options (main config file)
OnRehash(NULL);
ServerInstance->SNO->EnableSnomask('v', "OVERRIDE");
Implementation eventlist[] = { I_OnRehash, I_On005Numeric, I_OnPermissionCheck };
ServerInstance->Modules->Attach(eventlist, this, 3);
}
void OnRehash(User* user)
{
ConfigReader Conf;
// re-read our config options on a rehash
NoisyOverride = Conf.ReadFlag("override", "noisy", 0);
RequireKey = Conf.ReadFlag("override", "requirekey", 0);
}
void On005Numeric(std::string &output)
{
output.append(" OVERRIDE");
}
void OnPermissionCheck(PermissionData& perm)
{
if (perm.name == "join" && RequireKey &&
static_cast<ChannelPermissionData&>(perm).key != "override")
return;
if (IS_LOCAL(perm.source) && perm.result == MOD_RES_DENY && perm.source->HasPrivPermission("override/" + perm.name))
{
perm.result = MOD_RES_ALLOW;
std::string msg = perm.source->nick+" used oper override for "+perm.name+" on "+
(perm.chan ? perm.chan->name : "<none>");
ServerInstance->SNO->WriteGlobalSno('v', msg);
if (perm.chan && NoisyOverride)
{
CUList empty;
perm.chan->WriteAllExcept(ServerInstance->FakeClient, true, '@', empty, "NOTICE %s :%s", perm.chan->name.c_str(), msg.c_str());
ServerInstance->PI->SendChannelNotice(perm.chan, '@', msg);
}
}
}
void Prioritize()
{
ServerInstance->Modules->SetPriority(this, I_OnPermissionCheck, PRIORITY_LAST);
Module* redir = ServerInstance->Modules->Find("m_redirect.so");
ServerInstance->Modules->SetPriority(this, I_OnUserConnect, PRIORITY_AFTER, redir);
}
Version GetVersion()
{
return Version("Provides support for unreal-style oper-override",VF_VENDOR);
}
};
MODULE_INIT(ModuleOverride)
|