]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_allowinvite.cpp
05e76113affb7fda59fe3f0311c57d5d85961299
[user/henk/code/inspircd.git] / src / modules / m_allowinvite.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #include "inspircd.h"
21
22 class AllowInvite : public SimpleChannelModeHandler
23 {
24  public:
25         AllowInvite(Module* Creator) : SimpleChannelModeHandler(Creator, "allowinvite", 'A') { }
26 };
27
28 class ModuleAllowInvite : public Module
29 {
30         AllowInvite ni;
31  public:
32
33         ModuleAllowInvite() : ni(this)
34         {
35         }
36
37         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
38         {
39                 tokens["EXTBAN"].push_back('A');
40         }
41
42         ModResult OnUserPreInvite(User* user,User* dest,Channel* channel, time_t timeout) CXX11_OVERRIDE
43         {
44                 if (IS_LOCAL(user))
45                 {
46                         ModResult res = channel->GetExtBanStatus(user, 'A');
47                         if (res == MOD_RES_DENY)
48                         {
49                                 // Matching extban, explicitly deny /invite
50                                 user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s :You are banned from using INVITE", channel->name.c_str());
51                                 return res;
52                         }
53                         if (channel->IsModeSet(ni) || res == MOD_RES_ALLOW)
54                         {
55                                 // Explicitly allow /invite
56                                 return MOD_RES_ALLOW;
57                         }
58                 }
59
60                 return MOD_RES_PASSTHRU;
61         }
62
63         Version GetVersion() CXX11_OVERRIDE
64         {
65                 return Version("Provides support for channel mode +A, allowing /invite freely on a channel and extban A to deny specific users it",VF_VENDOR);
66         }
67 };
68
69 MODULE_INIT(ModuleAllowInvite)