]> jfr.im git - irc/rqf/shadowircd.git/blob - modules/m_invite.c
[svn] Remove invite_ops_only, forcing it to YES.
[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 3257 2007-03-13 16:09:28Z jilles $
25 */
26
27 #include "stdinc.h"
28 #include "tools.h"
29 #include "common.h"
30 #include "channel.h"
31 #include "client.h"
32 #include "hash.h"
33 #include "irc_string.h"
34 #include "ircd.h"
35 #include "numeric.h"
36 #include "send.h"
37 #include "s_conf.h"
38 #include "s_serv.h"
39 #include "msg.h"
40 #include "parse.h"
41 #include "modules.h"
42 #include "packet.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: 3257 $");
52
53 static void add_invite(struct Channel *, struct Client *);
54
55 /* m_invite()
56 * parv[0] - sender prefix
57 * parv[1] - user to invite
58 * parv[2] - channel name
59 */
60 static int
61 m_invite(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
62 {
63 struct Client *target_p;
64 struct Channel *chptr;
65 struct membership *msptr;
66 int store_invite = 0;
67
68 if(MyClient(source_p) && !IsFloodDone(source_p))
69 flood_endgrace(source_p);
70
71 if((target_p = find_person(parv[1])) == NULL)
72 {
73 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
74 form_str(ERR_NOSUCHNICK),
75 IsDigit(parv[1][0]) ? "*" : parv[1]);
76 return 0;
77 }
78
79 if(check_channel_name(parv[2]) == 0)
80 {
81 sendto_one_numeric(source_p, ERR_BADCHANNAME,
82 form_str(ERR_BADCHANNAME),
83 parv[2]);
84 return 0;
85 }
86
87 if(!IsChannelName(parv[2]))
88 {
89 if(MyClient(source_p))
90 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
91 form_str(ERR_NOSUCHCHANNEL), parv[2]);
92 return 0;
93 }
94
95 /* Do not send local channel invites to users if they are not on the
96 * same server as the person sending the INVITE message.
97 */
98 if(parv[2][0] == '&' && !MyConnect(target_p))
99 {
100 sendto_one(source_p, form_str(ERR_USERNOTONSERV),
101 me.name, source_p->name, target_p->name);
102 return 0;
103 }
104
105 if((chptr = find_channel(parv[2])) == NULL)
106 {
107 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
108 form_str(ERR_NOSUCHCHANNEL), parv[2]);
109 return 0;
110 }
111
112 msptr = find_channel_membership(chptr, source_p);
113 if(MyClient(source_p) && (msptr == NULL))
114 {
115 sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
116 form_str(ERR_NOTONCHANNEL), parv[2]);
117 return 0;
118 }
119
120 if(IsMember(target_p, chptr))
121 {
122 sendto_one_numeric(source_p, ERR_USERONCHANNEL,
123 form_str(ERR_USERONCHANNEL),
124 target_p->name, parv[2]);
125 return 0;
126 }
127
128 /* only store invites for +i channels */
129 /* unconditionally require ops, unless the channel is +g */
130 /* treat remote clients as chanops */
131 if(MyClient(source_p) && !is_chanop(msptr) &&
132 !(chptr->mode.mode & MODE_FREEINVITE))
133 {
134 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
135 me.name, source_p->name, parv[2]);
136 return 0;
137 }
138
139 if(chptr->mode.mode & MODE_INVITEONLY)
140 store_invite = 1;
141
142 if(MyConnect(source_p))
143 {
144 sendto_one(source_p, form_str(RPL_INVITING),
145 me.name, source_p->name,
146 target_p->name, parv[2]);
147 if(target_p->user->away)
148 sendto_one_numeric(source_p, RPL_AWAY, form_str(RPL_AWAY),
149 target_p->name, target_p->user->away);
150 }
151 /* invite timestamp */
152 else if(parc > 3 && !EmptyString(parv[3]))
153 {
154 /* this should never be less than */
155 if(atol(parv[3]) > chptr->channelts)
156 return 0;
157 }
158
159 if(MyConnect(target_p))
160 {
161 sendto_one(target_p, ":%s!%s@%s INVITE %s :%s",
162 source_p->name, source_p->username, source_p->host,
163 target_p->name, chptr->chname);
164
165 if(store_invite)
166 add_invite(chptr, target_p);
167 }
168 else if(target_p->from != client_p)
169 {
170 sendto_one_prefix(target_p, source_p, "INVITE", "%s %lu",
171 chptr->chname, (unsigned long) chptr->channelts);
172 }
173
174 return 0;
175 }
176
177 /* add_invite()
178 *
179 * input - channel to add invite to, client to add
180 * output -
181 * side effects - client is added to invite list.
182 */
183 static void
184 add_invite(struct Channel *chptr, struct Client *who)
185 {
186 dlink_node *ptr;
187
188 /* already invited? */
189 DLINK_FOREACH(ptr, who->user->invited.head)
190 {
191 if(ptr->data == chptr)
192 return;
193 }
194
195 /* ok, if their invite list is too long, remove the tail */
196 if((int)dlink_list_length(&who->user->invited) >=
197 ConfigChannel.max_chans_per_user)
198 {
199 ptr = who->user->invited.tail;
200 del_invite(ptr->data, who);
201 }
202
203 /* add user to channel invite list */
204 dlinkAddAlloc(who, &chptr->invites);
205
206 /* add channel to user invite list */
207 dlinkAddAlloc(chptr, &who->user->invited);
208 }
209
210