]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_inviteexception.cpp
Show a better warning when certtool/openssl are missing.
[user/henk/code/inspircd.git] / src / modules / m_inviteexception.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2006-2008 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
7  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
8  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 #include "inspircd.h"
25 #include "u_listmode.h"
26
27 /* $ModDesc: Provides support for the +I channel mode */
28 /* $ModDep: ../../include/u_listmode.h */
29
30 /*
31  * Written by Om <om@inspircd.org>, April 2005.
32  * Based on m_exception, which was originally based on m_chanprotect and m_silence
33  *
34  * The +I channel mode takes a nick!ident@host, glob patterns allowed,
35  * and if a user matches an entry on the +I list then they can join the channel,
36  * ignoring if +i is set on the channel
37  * Now supports CIDR and IP addresses -- Brain
38  */
39
40 /** Handles channel mode +I
41  */
42 class InviteException : public ListModeBase
43 {
44  public:
45         InviteException(Module* Creator) : ListModeBase(Creator, "invex", 'I', "End of Channel Invite Exception List", 346, 347, true) { }
46 };
47
48 class ModuleInviteException : public Module
49 {
50         bool invite_bypass_key;
51         InviteException ie;
52 public:
53         ModuleInviteException() : ie(this)
54         {
55         }
56
57         void init()
58         {
59                 ServerInstance->Modules->AddService(ie);
60
61                 OnRehash(NULL);
62                 ie.DoImplements(this);
63                 Implementation eventlist[] = { I_On005Numeric, I_OnCheckInvite, I_OnCheckKey, I_OnRehash };
64                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
65         }
66
67         void On005Numeric(std::string &output)
68         {
69                 output.append(" INVEX=I");
70         }
71
72         ModResult OnCheckInvite(User* user, Channel* chan)
73         {
74                 modelist* list = ie.extItem.get(chan);
75                 if (list)
76                 {
77                         for (modelist::iterator it = list->begin(); it != list->end(); it++)
78                         {
79                                 if (chan->CheckBan(user, it->mask))
80                                 {
81                                         return MOD_RES_ALLOW;
82                                 }
83                         }
84                 }
85
86                 return MOD_RES_PASSTHRU;
87         }
88
89         ModResult OnCheckKey(User* user, Channel* chan, const std::string& key)
90         {
91                 if (invite_bypass_key)
92                         return OnCheckInvite(user, chan);
93                 return MOD_RES_PASSTHRU;
94         }
95
96         void OnSyncChannel(Channel* chan, Module* proto, void* opaque)
97         {
98                 ie.DoSyncChannel(chan, proto, opaque);
99         }
100
101         void OnRehash(User* user)
102         {
103                 invite_bypass_key = ServerInstance->Config->ConfValue("inviteexception")->getBool("bypasskey", true);
104                 ie.DoRehash();
105         }
106
107         Version GetVersion()
108         {
109                 return Version("Provides support for the +I channel mode", VF_VENDOR);
110         }
111 };
112
113 MODULE_INIT(ModuleInviteException)