]> jfr.im git - irc/rqf/shadowircd.git/blob - modules/m_invite.c
Automated merge with ssh://shadowircd/uranium/shadowircd/
[irc/rqf/shadowircd.git] / modules / m_invite.c
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 *
24 * $Id: m_invite.c 3438 2007-05-06 14:46:45Z jilles $
25 */
26
27 #include "stdinc.h"
28 #include "common.h"
29 #include "channel.h"
30 #include "client.h"
31 #include "hash.h"
32 #include "match.h"
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 #include "tgchange.h"
43
44 static int m_invite(struct Client *, struct Client *, int, const char **);
45
46 struct Message invite_msgtab = {
47 "INVITE", 0, 0, 0, MFLG_SLOW,
48 {mg_unreg, {m_invite, 3}, {m_invite, 3}, mg_ignore, mg_ignore, {m_invite, 3}}
49 };
50 mapi_clist_av1 invite_clist[] = { &invite_msgtab, NULL };
51 DECLARE_MODULE_AV1(invite, NULL, NULL, invite_clist, NULL, NULL, "$Revision: 3438 $");
52
53 static void add_invite(struct Channel *, struct Client *);
54
55 /* m_invite()
56 * parv[1] - user to invite
57 * parv[2] - channel name
58 */
59 static int
60 m_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
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)
75 {
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]);
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(((MyConnect(source_p) && !IsExemptResv(source_p)) ||
114 (MyConnect(target_p) && !IsExemptResv(target_p))) &&
115 hash_find_resv(parv[2]))
116 {
117 sendto_one_numeric(source_p, ERR_BADCHANNAME,
118 form_str(ERR_BADCHANNAME),
119 parv[2]);
120 return 0;
121 }
122
123 if((chptr = find_channel(parv[2])) == NULL)
124 {
125 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
126 form_str(ERR_NOSUCHCHANNEL), parv[2]);
127 return 0;
128 }
129
130 msptr = find_channel_membership(chptr, source_p);
131 if(MyClient(source_p) && (msptr == NULL))
132 {
133 sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
134 form_str(ERR_NOTONCHANNEL), parv[2]);
135 return 0;
136 }
137
138 if(IsMember(target_p, chptr))
139 {
140 sendto_one_numeric(source_p, ERR_USERONCHANNEL,
141 form_str(ERR_USERONCHANNEL),
142 target_p->name, parv[2]);
143 return 0;
144 }
145
146 /* unconditionally require ops, unless the channel is +g */
147 /* treat remote clients as chanops */
148 if(MyClient(source_p) && !is_any_op(msptr) && !IsOverride(source_p) &&
149 !(chptr->mode.mode & MODE_FREEINVITE))
150 {
151 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
152 me.name, source_p->name, parv[2]);
153 return 0;
154 }
155
156 if (IsSetNoInvite(target_p))
157 {
158 sendto_one_numeric(source_p, ERR_NOINVITE,
159 form_str(ERR_NOINVITE),
160 target_p->name);
161 return 0;
162 }
163
164 /* store invites when they could affect the ability to join
165 * for +l/+j just check if the mode is set, this varies over time
166 */
167 if(chptr->mode.mode & MODE_INVITEONLY ||
168 (chptr->mode.mode & MODE_REGONLY && EmptyString(target_p->user->suser)) ||
169 chptr->mode.limit || chptr->mode.join_num)
170 store_invite = 1;
171
172 if(MyConnect(source_p))
173 {
174 if (ConfigFileEntry.target_change && !IsOper(source_p) &&
175 !find_allowing_channel(source_p, target_p) &&
176 !add_target(source_p, target_p))
177 {
178 sendto_one(source_p, form_str(ERR_TARGCHANGE),
179 me.name, source_p->name, target_p->name);
180 return 0;
181 }
182 sendto_one(source_p, form_str(RPL_INVITING),
183 me.name, source_p->name,
184 target_p->name, parv[2]);
185 if(target_p->user->away)
186 sendto_one_numeric(source_p, RPL_AWAY, form_str(RPL_AWAY),
187 target_p->name, target_p->user->away);
188 }
189 /* invite timestamp */
190 else if(parc > 3 && !EmptyString(parv[3]))
191 {
192 /* this should never be less than */
193 if(atol(parv[3]) > chptr->channelts)
194 return 0;
195 }
196
197 if(MyConnect(target_p))
198 {
199 if(!IsOper(source_p) && (IsSetCallerId(target_p) ||
200 (IsSetRegOnlyMsg(target_p) && !source_p->user->suser[0])) &&
201 !accept_message(source_p, target_p))
202 {
203 if (IsSetRegOnlyMsg(target_p) && !source_p->user->suser[0])
204 {
205 sendto_one_numeric(source_p, ERR_NONONREG,
206 form_str(ERR_NONONREG),
207 target_p->name);
208 return 0;
209 }
210 else
211 {
212 /* instead of sending RPL_UMODEGMSG,
213 * just let the invite through
214 */
215 if((target_p->localClient->last_caller_id_time +
216 ConfigFileEntry.caller_id_wait) >= rb_current_time())
217 {
218 sendto_one_numeric(source_p, ERR_TARGUMODEG,
219 form_str(ERR_TARGUMODEG),
220 target_p->name);
221 return 0;
222 }
223 target_p->localClient->last_caller_id_time = rb_current_time();
224 }
225 }
226 add_reply_target(target_p, source_p);
227 sendto_one(target_p, ":%s!%s@%s INVITE %s :%s",
228 source_p->name, source_p->username, source_p->host,
229 target_p->name, chptr->chname);
230
231 if(store_invite)
232 add_invite(chptr, target_p);
233 }
234 else if(target_p->from != client_p)
235 {
236 sendto_one_prefix(target_p, source_p, "INVITE", "%s %lu",
237 chptr->chname, (unsigned long) chptr->channelts);
238 }
239
240 return 0;
241 }
242
243 /* add_invite()
244 *
245 * input - channel to add invite to, client to add
246 * output -
247 * side effects - client is added to invite list.
248 */
249 static void
250 add_invite(struct Channel *chptr, struct Client *who)
251 {
252 rb_dlink_node *ptr;
253
254 /* already invited? */
255 RB_DLINK_FOREACH(ptr, who->user->invited.head)
256 {
257 if(ptr->data == chptr)
258 return;
259 }
260
261 /* ok, if their invite list is too long, remove the tail */
262 if((int)rb_dlink_list_length(&who->user->invited) >=
263 ConfigChannel.max_chans_per_user)
264 {
265 ptr = who->user->invited.tail;
266 del_invite(ptr->data, who);
267 }
268
269 /* add user to channel invite list */
270 rb_dlinkAddAlloc(who, &chptr->invites);
271
272 /* add channel to user invite list */
273 rb_dlinkAddAlloc(chptr, &who->user->invited);
274 }
275
276