]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_invite.c
Forgot version.c.SH for libratbox/.
[irc/rqf/shadowircd.git] / modules / m_invite.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_invite.c: Invites the user to join a channel.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
0482ebf7 24 * $Id: m_invite.c 3438 2007-05-06 14:46:45Z jilles $
212380e3 25 */
26
27#include "stdinc.h"
212380e3 28#include "common.h"
29#include "channel.h"
30#include "client.h"
31#include "hash.h"
13ae2f4b 32#include "match.h"
212380e3 33#include "ircd.h"
34#include "numeric.h"
35#include "send.h"
36#include "s_conf.h"
37#include "s_serv.h"
38#include "msg.h"
39#include "parse.h"
40#include "modules.h"
41#include "packet.h"
42
43static int m_invite(struct Client *, struct Client *, int, const char **);
44
45struct Message invite_msgtab = {
46 "INVITE", 0, 0, 0, MFLG_SLOW,
47 {mg_unreg, {m_invite, 3}, {m_invite, 3}, mg_ignore, mg_ignore, {m_invite, 3}}
48};
49mapi_clist_av1 invite_clist[] = { &invite_msgtab, NULL };
0482ebf7 50DECLARE_MODULE_AV1(invite, NULL, NULL, invite_clist, NULL, NULL, "$Revision: 3438 $");
212380e3 51
52static void add_invite(struct Channel *, struct Client *);
53
54/* m_invite()
55 * parv[0] - sender prefix
56 * parv[1] - user to invite
57 * parv[2] - channel name
58 */
59static int
60m_invite(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
61{
62 struct Client *target_p;
63 struct Channel *chptr;
64 struct membership *msptr;
65 int store_invite = 0;
66
67 if(MyClient(source_p) && !IsFloodDone(source_p))
68 flood_endgrace(source_p);
69
3499aa48
JT
70 if(MyClient(source_p))
71 target_p = find_named_person(parv[1]);
72 else
73 target_p = find_person(parv[1]);
74 if(target_p == NULL)
212380e3 75 {
0482ebf7 76 if(!MyClient(source_p) && IsDigit(parv[1][0]))
77 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
78 "* :Target left IRC. Failed to invite to %s",
79 parv[2]);
80 else
81 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
82 form_str(ERR_NOSUCHNICK),
83 parv[1]);
212380e3 84 return 0;
85 }
86
87 if(check_channel_name(parv[2]) == 0)
88 {
89 sendto_one_numeric(source_p, ERR_BADCHANNAME,
90 form_str(ERR_BADCHANNAME),
91 parv[2]);
92 return 0;
93 }
94
95 if(!IsChannelName(parv[2]))
96 {
97 if(MyClient(source_p))
98 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
99 form_str(ERR_NOSUCHCHANNEL), parv[2]);
100 return 0;
101 }
102
103 /* Do not send local channel invites to users if they are not on the
104 * same server as the person sending the INVITE message.
105 */
106 if(parv[2][0] == '&' && !MyConnect(target_p))
107 {
108 sendto_one(source_p, form_str(ERR_USERNOTONSERV),
109 me.name, source_p->name, target_p->name);
110 return 0;
111 }
112
113 if((chptr = find_channel(parv[2])) == NULL)
114 {
115 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
116 form_str(ERR_NOSUCHCHANNEL), parv[2]);
117 return 0;
118 }
119
120 msptr = find_channel_membership(chptr, source_p);
121 if(MyClient(source_p) && (msptr == NULL))
122 {
123 sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
124 form_str(ERR_NOTONCHANNEL), parv[2]);
125 return 0;
126 }
127
128 if(IsMember(target_p, chptr))
129 {
130 sendto_one_numeric(source_p, ERR_USERONCHANNEL,
131 form_str(ERR_USERONCHANNEL),
132 target_p->name, parv[2]);
133 return 0;
134 }
135
307328bb 136 /* unconditionally require ops, unless the channel is +g */
137 /* treat remote clients as chanops */
138 if(MyClient(source_p) && !is_chanop(msptr) &&
139 !(chptr->mode.mode & MODE_FREEINVITE))
212380e3 140 {
307328bb 141 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
142 me.name, source_p->name, parv[2]);
143 return 0;
212380e3 144 }
145
1ebf4db4 146 /* store invites when they could affect the ability to join
147 * for +l/+j just check if the mode is set, this varies over time
148 */
149 if(chptr->mode.mode & MODE_INVITEONLY ||
150 (chptr->mode.mode & MODE_REGONLY && EmptyString(target_p->user->suser)) ||
151 chptr->mode.limit || chptr->mode.join_num)
307328bb 152 store_invite = 1;
153
212380e3 154 if(MyConnect(source_p))
155 {
156 sendto_one(source_p, form_str(RPL_INVITING),
157 me.name, source_p->name,
158 target_p->name, parv[2]);
159 if(target_p->user->away)
160 sendto_one_numeric(source_p, RPL_AWAY, form_str(RPL_AWAY),
161 target_p->name, target_p->user->away);
162 }
163 /* invite timestamp */
164 else if(parc > 3 && !EmptyString(parv[3]))
165 {
166 /* this should never be less than */
167 if(atol(parv[3]) > chptr->channelts)
168 return 0;
169 }
170
171 if(MyConnect(target_p))
172 {
173 sendto_one(target_p, ":%s!%s@%s INVITE %s :%s",
174 source_p->name, source_p->username, source_p->host,
175 target_p->name, chptr->chname);
176
177 if(store_invite)
178 add_invite(chptr, target_p);
179 }
180 else if(target_p->from != client_p)
181 {
182 sendto_one_prefix(target_p, source_p, "INVITE", "%s %lu",
183 chptr->chname, (unsigned long) chptr->channelts);
184 }
185
186 return 0;
187}
188
189/* add_invite()
190 *
191 * input - channel to add invite to, client to add
192 * output -
193 * side effects - client is added to invite list.
194 */
195static void
196add_invite(struct Channel *chptr, struct Client *who)
197{
08d11e34 198 rb_dlink_node *ptr;
212380e3 199
200 /* already invited? */
08d11e34 201 RB_DLINK_FOREACH(ptr, who->user->invited.head)
212380e3 202 {
203 if(ptr->data == chptr)
204 return;
205 }
206
207 /* ok, if their invite list is too long, remove the tail */
08d11e34 208 if((int)rb_dlink_list_length(&who->user->invited) >=
212380e3 209 ConfigChannel.max_chans_per_user)
210 {
211 ptr = who->user->invited.tail;
212 del_invite(ptr->data, who);
213 }
214
215 /* add user to channel invite list */
7f4fa195 216 rb_dlinkAddAlloc(who, &chptr->invites);
212380e3 217
218 /* add channel to user invite list */
7f4fa195 219 rb_dlinkAddAlloc(chptr, &who->user->invited);
212380e3 220}
221
222