Remove cruft left behind by removed stats_p_hook.
[seven-1.x.git] / modules / m_knock.c
bloba1148e2922e3f8a90e7d56c094e179cd54eb77a2
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_knock.c: Requests to be invited to a channel.
5 * Copyright (C) 1996-2002 Hybrid Development Team
6 * Copyright (C) 2002-2005 ircd-ratbox development team
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 * USA
24 #include "stdinc.h"
25 #include "sprintf_irc.h"
26 #include "tools.h"
27 #include "channel.h"
28 #include "client.h"
29 #include "hash.h"
30 #include "irc_string.h"
31 #include "ircd.h"
32 #include "numeric.h"
33 #include "send.h"
34 #include "s_conf.h"
35 #include "msg.h"
36 #include "parse.h"
37 #include "modules.h"
38 #include "s_serv.h"
40 static int m_knock(struct Client *, struct Client *, int, const char **);
42 struct Message knock_msgtab = {
43 "KNOCK", 0, 0, 0, MFLG_SLOW,
44 {mg_unreg, {m_knock, 2}, {m_knock, 2}, mg_ignore, mg_ignore, {m_knock, 2}}
47 mapi_clist_av1 knock_clist[] = { &knock_msgtab, NULL };
48 DECLARE_MODULE_AV1(knock, NULL, NULL, knock_clist, NULL, NULL, "$Revision: 26 $");
50 /* m_knock
51 * parv[0] = sender prefix
52 * parv[1] = channel
54 * The KNOCK command has the following syntax:
55 * :<sender> KNOCK <channel>
57 * If a user is not banned from the channel they can use the KNOCK
58 * command to have the server NOTICE the channel operators notifying
59 * they would like to join. Helpful if the channel is invite-only, the
60 * key is forgotten, or the channel is full (INVITE can bypass each one
61 * of these conditions. Concept by Dianora <db@db.net> and written by
62 * <anonymous>
64 static int
65 m_knock(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
67 struct Channel *chptr;
68 char *p, *name;
70 if(MyClient(source_p) && ConfigChannel.use_knock == 0)
72 sendto_one(source_p, form_str(ERR_KNOCKDISABLED),
73 me.name, source_p->name);
74 return 0;
77 name = LOCAL_COPY(parv[1]);
79 /* dont allow one knock to multiple chans */
80 if((p = strchr(name, ',')))
81 *p = '\0';
83 if(!IsChannelName(name))
85 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
86 form_str(ERR_NOSUCHCHANNEL), name);
87 return 0;
90 if((chptr = find_channel(name)) == NULL)
92 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
93 form_str(ERR_NOSUCHCHANNEL), name);
94 return 0;
97 if(IsMember(source_p, chptr))
99 if(MyClient(source_p))
100 sendto_one(source_p, form_str(ERR_KNOCKONCHAN),
101 me.name, source_p->name, name);
102 return 0;
105 if(!((chptr->mode.mode & MODE_INVITEONLY) || (*chptr->mode.key) ||
106 (chptr->mode.limit &&
107 dlink_list_length(&chptr->members) >= (unsigned long)chptr->mode.limit)))
109 sendto_one_numeric(source_p, ERR_CHANOPEN,
110 form_str(ERR_CHANOPEN), name);
111 return 0;
114 /* cant knock to a +p channel */
115 if(HiddenChannel(chptr))
117 sendto_one_numeric(source_p, ERR_CANNOTSENDTOCHAN,
118 form_str(ERR_CANNOTSENDTOCHAN), name);
119 return 0;
123 if(MyClient(source_p))
125 /* don't allow a knock if the user is banned */
126 if(is_banned(chptr, source_p, NULL, NULL, NULL) == CHFL_BAN ||
127 is_quieted(chptr, source_p, NULL, NULL, NULL) == CHFL_BAN)
129 sendto_one_numeric(source_p, ERR_CANNOTSENDTOCHAN,
130 form_str(ERR_CANNOTSENDTOCHAN), name);
131 return 0;
134 /* local flood protection:
135 * allow one knock per user per knock_delay
136 * allow one knock per channel per knock_delay_channel
138 if(!IsOper(source_p) &&
139 (source_p->localClient->last_knock + ConfigChannel.knock_delay) > CurrentTime)
141 sendto_one(source_p, form_str(ERR_TOOMANYKNOCK),
142 me.name, source_p->name, name, "user");
143 return 0;
145 else if((chptr->last_knock + ConfigChannel.knock_delay_channel) > CurrentTime)
147 sendto_one(source_p, form_str(ERR_TOOMANYKNOCK),
148 me.name, source_p->name, name, "channel");
149 return 0;
152 /* ok, we actually can send the knock, tell client */
153 source_p->localClient->last_knock = CurrentTime;
155 sendto_one(source_p, form_str(RPL_KNOCKDLVR),
156 me.name, source_p->name, name);
159 chptr->last_knock = CurrentTime;
161 if(ConfigChannel.use_knock)
162 sendto_channel_local(ONLY_CHANOPS, chptr, form_str(RPL_KNOCK),
163 me.name, name, name, source_p->name,
164 source_p->username, source_p->host);
166 sendto_server(client_p, chptr, CAP_KNOCK|CAP_TS6, NOCAPS,
167 ":%s KNOCK %s", use_id(source_p), name);
168 sendto_server(client_p, chptr, CAP_KNOCK, CAP_TS6,
169 ":%s KNOCK %s", source_p->name, name);
170 return 0;