]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_inviteexception.cpp
Remove InspIRCd* parameters and fields
[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 /** Handles channel mode +I
31  */
32 class InviteException : public ListModeBase
33 {
34  public:
35         InviteException(Module* Creator) : ListModeBase(Creator, 'I', "End of Channel Invite Exception List", 346, 347, true) { }
36 };
37
38 class ModuleInviteException : public Module
39 {
40         InviteException ie;
41 public:
42         ModuleInviteException() : ie(this)
43         {
44                 if (!ServerInstance->Modes->AddMode(&ie))
45                         throw ModuleException("Could not add new modes!");
46                 ServerInstance->Modules->PublishInterface("ChannelBanList", this);
47
48                 ie.DoImplements(this);
49                 Implementation eventlist[] = { I_OnRequest, I_On005Numeric, I_OnCheckInvite };
50                 ServerInstance->Modules->Attach(eventlist, this, 3);
51         }
52
53         void On005Numeric(std::string &output)
54         {
55                 output.append(" INVEX=I");
56         }
57
58         ModResult OnCheckInvite(User* user, Channel* chan)
59         {
60                 if(chan != NULL)
61                 {
62                         modelist* list = ie.extItem.get(chan);
63                         if (list)
64                         {
65                                 std::string mask = std::string(user->nick) + "!" + user->ident + "@" + user->GetIPString();
66                                 for (modelist::iterator it = list->begin(); it != list->end(); it++)
67                                 {
68                                         if (chan->CheckBan(user, it->mask))
69                                         {
70                                                 return MOD_RES_ALLOW;
71                                         }
72                                 }
73                         }
74                         // or if there wasn't a list, there can't be anyone on it, so we don't need to do anything.
75                 }
76
77                 return MOD_RES_PASSTHRU;
78         }
79
80         const char* OnRequest(Request* request)
81         {
82                 return ie.DoOnRequest(request);
83         }
84
85         void OnCleanup(int target_type, void* item)
86         {
87                 ie.DoCleanup(target_type, item);
88         }
89
90         void OnSyncChannel(Channel* chan, Module* proto, void* opaque)
91         {
92                 ie.DoSyncChannel(chan, proto, opaque);
93         }
94
95         void OnRehash(User* user)
96         {
97                 ie.DoRehash();
98         }
99
100         Version GetVersion()
101         {
102                 return Version("Provides support for the +I channel mode", VF_VENDOR | VF_COMMON, API_VERSION);
103         }
104
105         ~ModuleInviteException()
106         {
107                 ServerInstance->Modes->DelMode(&ie);
108                 ServerInstance->Modules->UnpublishInterface("ChannelBanList", this);
109         }
110 };
111
112 MODULE_INIT(ModuleInviteException)