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