-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathm_exception.cpp
101 lines (83 loc) · 2.4 KB
/
m_exception.cpp
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
95
96
97
98
99
100
#include <stdio.h>
#include <string>
#include <vector>
#include "users.h"
#include "channels.h"
#include "modules.h"
#include "mode.h"
#include "u_listmode.h"
/* $ModDesc: Provides support for the +x channel mode */
/* $ModAuthor: Om */
/* $ModAuthorMail: [email protected] */
/* $ModDepends: core 1.1 */
/* $ModVersion: $Rev: 78 $ */
/* Written by Om <[email protected]>, April 2005. */
/* Rewritten by Om, December 2005 */
/* Originally based on m_chanprotect and m_silence */
// The +x channel mode takes a nick!ident@host, glob patterns allowed,
// and if a user matches an entry on the +x list then they can join the channel, overriding _all_ other restrictions (+k, +i, +b, +whatever)
class GeneralException : public ListModeBase
{
public:
GeneralException(InspIRCd* serv) : ListModeBase(serv, 'x', "End of General Exception List", "446", "447", true) { }
};
class ModuleGeneralException : public Module
{
GeneralException* be;
InspIRCd* Srv;
public:
ModuleGeneralException(InspIRCd* serv)
: Module::Module(serv), Srv(serv)
{
be = new GeneralException(serv);
Srv->AddMode(be, 'x');
}
virtual void Implements(char* List)
{
be->DoImplements(List);
List[I_On005Numeric] = List[I_OnUserPreJoin] = 1;
}
virtual void On005Numeric(std::string &output)
{
output.append(" EX=x");
}
virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname, std::string &privs)
{
if(chan != NULL)
{
modelist* list;
if(chan->GetExt(be->GetInfoKey(), list))
for(modelist::iterator it = list->begin(); it != list->end(); it++)
if (match(user->GetFullRealHost(), it->mask.c_str()) || match(user->GetFullHost(), it->mask.c_str()))
// They match an entry on the list, so let them in.
return -1;
// or if there wasn't a list, there can't be anyone on it, so we don't need to do anything.
}
return 0;
}
virtual void OnCleanup(int target_type, void* item)
{
be->DoCleanup(target_type, item);
}
virtual void OnSyncChannel(chanrec* chan, Module* proto, void* opaque)
{
be->DoSyncChannel(chan, proto, opaque);
}
virtual void OnChannelDelete(chanrec* chan)
{
be->DoChannelDelete(chan);
}
virtual void OnRehash(userrec* user, const std::string ¶meter)
{
be->DoRehash();
}
virtual Version GetVersion()
{
return Version(1, 0, 0, 4, VF_STATIC|VF_COMMON, API_VERSION);
}
virtual ~ModuleGeneralException()
{
DELETE(be);
}
};
MODULE_INIT(ModuleGeneralException)