]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_allowinvite.cpp
Merge pull request #92 from Robby-/insp20-headers
[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 /* $ModDesc: Provides support for channel mode +A, allowing /invite freely on a channel (and extban A to allow specific users it) */
23
24 class AllowInvite : public SimpleChannelModeHandler
25 {
26  public:
27         AllowInvite(Module* Creator) : SimpleChannelModeHandler(Creator, "allowinvite", 'A') { }
28 };
29
30 class ModuleAllowInvite : public Module
31 {
32         AllowInvite ni;
33  public:
34
35         ModuleAllowInvite() : ni(this)
36         {
37                 if (!ServerInstance->Modes->AddMode(&ni))
38                         throw ModuleException("Could not add new modes!");
39                 Implementation eventlist[] = { I_OnUserPreInvite, I_On005Numeric };
40                 ServerInstance->Modules->Attach(eventlist, this, 2);
41         }
42
43         virtual void On005Numeric(std::string &output)
44         {
45                 ServerInstance->AddExtBanChar('A');
46         }
47
48         virtual ModResult OnUserPreInvite(User* user,User* dest,Channel* channel, time_t timeout)
49         {
50                 if (IS_LOCAL(user))
51                 {
52                         ModResult res = channel->GetExtBanStatus(user, 'A');
53                         if (res == MOD_RES_DENY)
54                         {
55                                 // Matching extban, explicitly deny /invite
56                                 user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s %s :You are banned from using INVITE", user->nick.c_str(), channel->name.c_str());
57                                 return res;
58                         }
59                         if (channel->IsModeSet('A') || res == MOD_RES_ALLOW)
60                         {
61                                 // Explicitly allow /invite
62                                 return MOD_RES_ALLOW;
63                         }
64                 }
65
66                 return MOD_RES_PASSTHRU;
67         }
68
69         virtual ~ModuleAllowInvite()
70         {
71         }
72
73         virtual Version GetVersion()
74         {
75                 return Version("Provides support for channel mode +A, allowing /invite freely on a channel (and extban A to allow specific users it)",VF_VENDOR);
76         }
77 };
78
79 MODULE_INIT(ModuleAllowInvite)