]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_inviteexception.cpp
26042933d3cd024cded6732e31172c50f97e5977
[user/henk/code/inspircd.git] / src / modules / m_inviteexception.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include <string>
15 #include <vector>
16 #include "users.h"
17 #include "channels.h"
18 #include "modules.h"
19 #include "mode.h"
20 #include "u_listmode.h"
21
22 /* $ModDesc: Provides support for the +I channel mode */
23 /* $ModDep: ../../include/u_listmode.h */
24
25 /*
26  * Written by Om <om@inspircd.org>, April 2005.
27  * Based on m_exception, which was originally based on m_chanprotect and m_silence
28  *
29  * The +I channel mode takes a nick!ident@host, glob patterns allowed,
30  * and if a user matches an entry on the +I list then they can join the channel,
31  * ignoring if +i is set on the channel
32  * Now supports CIDR and IP addresses -- Brain
33  */
34
35 class InspIRCd* ServerInstance;
36
37 /** Handles channel mode +I
38  */
39 class InviteException : public ListModeBase
40 {
41  public:
42         InviteException(InspIRCd* Instance) : ListModeBase(Instance, 'I', "End of Channel Invite Exception List", "346", "347", true) { }
43 };
44
45 class ModuleInviteException : public Module
46 {
47         InviteException* ie;
48 public:
49         ModuleInviteException(InspIRCd* Me) : Module(Me)
50         {
51                 ie = new InviteException(ServerInstance);
52                 ServerInstance->AddMode(ie, 'I');
53         }
54         
55         virtual void Implements(char* List)
56         {
57                 ie->DoImplements(List);
58                 List[I_On005Numeric] = List[I_OnCheckInvite] = 1;
59         }
60         
61         virtual void On005Numeric(std::string &output)
62         {
63                 output.append(" INVEX=I");
64         }
65          
66         virtual int OnCheckInvite(userrec* user, chanrec* chan)
67         {
68                 if(chan != NULL)
69                 {
70                         modelist* list;
71                         chan->GetExt(ie->GetInfoKey(), list);
72                         if (list)
73                         {
74                                 char mask[MAXBUF];
75                                 snprintf(mask, MAXBUF, "%s!%s@%s", user->nick, user->ident, user->GetIPString());
76                                 for (modelist::iterator it = list->begin(); it != list->end(); it++)
77                                 {
78                                         if(match(user->GetFullRealHost(), it->mask.c_str()) || match(user->GetFullHost(), it->mask.c_str()) || (match(mask, it->mask.c_str(), true)))
79                                         {
80                                                 // They match an entry on the list, so let them in.
81                                                 return 1;
82                                         }
83                                 }
84                         }
85                         // or if there wasn't a list, there can't be anyone on it, so we don't need to do anything.
86                 }
87
88                 return 0;               
89         }
90
91         virtual void OnCleanup(int target_type, void* item)
92         {
93                 ie->DoCleanup(target_type, item);
94         }
95
96         virtual void OnSyncChannel(chanrec* chan, Module* proto, void* opaque)
97         {
98                 ie->DoSyncChannel(chan, proto, opaque);
99         }
100
101         virtual void OnChannelDelete(chanrec* chan)
102         {
103                 ie->DoChannelDelete(chan);
104         }
105
106         virtual void OnRehash(const std::string &param)
107         {
108                 ie->DoRehash();
109         }
110                 
111         virtual Version GetVersion()
112         {
113                 return Version(1, 1, 0, 3, VF_VENDOR | VF_COMMON, API_VERSION);
114         }
115
116         ~ModuleInviteException()
117         {
118                 ServerInstance->Modes->DelMode(ie);
119                 DELETE(ie);
120         }
121 };
122
123
124 class ModuleInviteExceptionFactory : public ModuleFactory
125 {
126  public:
127         ModuleInviteExceptionFactory()
128         {
129         }
130         
131         ~ModuleInviteExceptionFactory()
132         {
133         }
134         
135         virtual Module * CreateModule(InspIRCd* Me)
136         {
137                 return new ModuleInviteException(Me);
138         }
139         
140 };
141
142
143 extern "C" void * init_module( void )
144 {
145         return new ModuleInviteExceptionFactory;
146 }