]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_knock.cpp
m_spanningtree Fix desync issue #37 reported by @Joah - part 2
[user/henk/code/inspircd.git] / src / modules / m_knock.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2004-2006, 2008 Craig Edwards <craigedwards@brainbox.cc>
5  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
6  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23
24 /* $ModDesc: Provides support for /KNOCK and mode +K */
25
26 /** Handles the /KNOCK command
27  */
28 class CommandKnock : public Command
29 {
30  public:
31         CommandKnock(Module* Creator) : Command(Creator,"KNOCK", 2)
32         {
33                 syntax = "<channel> <reason>";
34                 Penalty = 5;
35                 TRANSLATE3(TR_TEXT, TR_TEXT, TR_END);
36         }
37
38         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
39         {
40                 Channel* c = ServerInstance->FindChan(parameters[0]);
41                 std::string line;
42
43                 if (!c)
44                 {
45                         user->WriteNumeric(401, "%s %s :No such channel",user->nick.c_str(), parameters[0].c_str());
46                         return CMD_FAILURE;
47                 }
48
49                 if (c->HasUser(user))
50                 {
51                         user->WriteNumeric(480, "%s :Can't KNOCK on %s, you are already on that channel.", user->nick.c_str(), c->name.c_str());
52                         return CMD_FAILURE;
53                 }
54
55                 if (c->IsModeSet('K'))
56                 {
57                         user->WriteNumeric(480, "%s :Can't KNOCK on %s, +K is set.",user->nick.c_str(), c->name.c_str());
58                         return CMD_FAILURE;
59                 }
60
61                 if (!c->IsModeSet('i'))
62                 {
63                         user->WriteNumeric(480, "%s :Can't KNOCK on %s, channel is not invite only so knocking is pointless!",user->nick.c_str(), c->name.c_str());
64                         return CMD_FAILURE;
65                 }
66
67                 for (int i = 1; i < (int)parameters.size() - 1; i++)
68                 {
69                         line = line + parameters[i] + " ";
70                 }
71                 line = line + parameters[parameters.size()-1];
72
73                 c->WriteChannelWithServ((char*)ServerInstance->Config->ServerName.c_str(),  "NOTICE %s :User %s is KNOCKing on %s (%s)", c->name.c_str(), user->nick.c_str(), c->name.c_str(), line.c_str());
74                 user->WriteServ("NOTICE %s :KNOCKing on %s", user->nick.c_str(), c->name.c_str());
75                 return CMD_SUCCESS;
76         }
77
78         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
79         {
80                 return ROUTE_OPT_BCAST;
81         }
82 };
83
84 /** Handles channel mode +K
85  */
86 class Knock : public SimpleChannelModeHandler
87 {
88  public:
89         Knock(Module* Creator) : SimpleChannelModeHandler(Creator, "noknock", 'K') { }
90 };
91
92 class ModuleKnock : public Module
93 {
94         CommandKnock cmd;
95         Knock kn;
96  public:
97         ModuleKnock() : cmd(this), kn(this)
98         {
99                 if (!ServerInstance->Modes->AddMode(&kn))
100                         throw ModuleException("Could not add new modes!");
101                 ServerInstance->AddCommand(&cmd);
102
103         }
104
105
106         virtual ~ModuleKnock()
107         {
108         }
109
110         virtual Version GetVersion()
111         {
112                 return Version("Provides support for /KNOCK and mode +K", VF_OPTCOMMON | VF_VENDOR);
113         }
114 };
115
116 MODULE_INIT(ModuleKnock)