]> jfr.im git - solanum.git/blob - modules/core/m_part.c
Remove shared blocks
[solanum.git] / modules / core / m_part.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_part.c: Parts a user from 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
25 #include "stdinc.h"
26 #include "channel.h"
27 #include "client.h"
28 #include "hash.h"
29 #include "match.h"
30 #include "ircd.h"
31 #include "numeric.h"
32 #include "send.h"
33 #include "s_serv.h"
34 #include "msg.h"
35 #include "parse.h"
36 #include "modules.h"
37 #include "s_conf.h"
38 #include "packet.h"
39 #include "inline/stringops.h"
40 #include "hook.h"
41 #include "s_newconf.h"
42
43 static const char part_desc[] = "Provides the PART command to leave a channel";
44
45 static void m_part(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
46
47 struct Message part_msgtab = {
48 "PART", 0, 0, 0, 0,
49 {mg_unreg, {m_part, 2}, {m_part, 2}, mg_ignore, mg_ignore, {m_part, 2}}
50 };
51
52 mapi_clist_av1 part_clist[] = { &part_msgtab, NULL };
53
54 DECLARE_MODULE_AV2(part, NULL, NULL, part_clist, NULL, NULL, NULL, NULL, part_desc);
55
56 static void part_one_client(struct Client *client_p,
57 struct Client *source_p, char *name,
58 const char *reason);
59 static bool can_send_part(struct Client *source_p, struct Channel *chptr, struct membership *msptr);
60 static bool do_message_hook(struct Client *source_p, struct Channel *chptr, const char **reason);
61
62
63 /*
64 ** m_part
65 ** parv[1] = channel
66 ** parv[2] = reason
67 */
68 static void
69 m_part(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
70 {
71 char *p, *name;
72 char reason[REASONLEN + 1];
73 char *s = LOCAL_COPY(parv[1]);
74
75 reason[0] = '\0';
76
77 if(parc > 2)
78 rb_strlcpy(reason, parv[2], sizeof(reason));
79
80 name = rb_strtok_r(s, ",", &p);
81
82 /* Finish the flood grace period... */
83 if(MyClient(source_p) && !IsFloodDone(source_p))
84 flood_endgrace(source_p);
85
86 while(name)
87 {
88 part_one_client(client_p, source_p, name, reason);
89 name = rb_strtok_r(NULL, ",", &p);
90 }
91 }
92
93 /*
94 * part_one_client
95 *
96 * inputs - pointer to server
97 * - pointer to source client to remove
98 * - char pointer of name of channel to remove from
99 * output - none
100 * side effects - remove ONE client given the channel name
101 */
102 static void
103 part_one_client(struct Client *client_p, struct Client *source_p, char *name, const char *reason)
104 {
105 struct Channel *chptr;
106 struct membership *msptr;
107
108 if((chptr = find_channel(name)) == NULL)
109 {
110 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL, form_str(ERR_NOSUCHCHANNEL), name);
111 return;
112 }
113
114 msptr = find_channel_membership(chptr, source_p);
115 if(msptr == NULL)
116 {
117 sendto_one_numeric(source_p, ERR_NOTONCHANNEL, form_str(ERR_NOTONCHANNEL), name);
118 return;
119 }
120
121 if(MyConnect(source_p) && !IsOperGeneral(source_p) && !IsExemptSpambot(source_p))
122 check_spambot_warning(source_p, NULL);
123
124 /*
125 * Remove user from the old channel (if any)
126 * only allow /part reasons in -m chans
127 */
128 if(!EmptyString(reason) &&
129 (!MyConnect(source_p) ||
130 (can_send_part(source_p, chptr, msptr) && do_message_hook(source_p, chptr, &reason))
131 )
132 )
133 {
134
135 sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
136 ":%s PART %s :%s", use_id(source_p), chptr->chname, reason);
137 sendto_channel_local(source_p, ALL_MEMBERS, chptr, ":%s!%s@%s PART %s :%s",
138 source_p->name, source_p->username,
139 source_p->host, chptr->chname, reason);
140 }
141 else
142 {
143 sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
144 ":%s PART %s", use_id(source_p), chptr->chname);
145 sendto_channel_local(source_p, ALL_MEMBERS, chptr, ":%s!%s@%s PART %s",
146 source_p->name, source_p->username,
147 source_p->host, chptr->chname);
148 }
149 remove_user_from_channel(msptr);
150 }
151
152 /*
153 * can_send_part - whether a part message can be sent.
154 *
155 * inputs:
156 * - client parting
157 * - channel being parted
158 * - membership pointer
159 * outputs:
160 * - true if message allowed
161 * - false if message denied
162 * side effects:
163 * - none.
164 */
165 static bool
166 can_send_part(struct Client *source_p, struct Channel *chptr, struct membership *msptr)
167 {
168 if (!can_send(chptr, source_p, msptr))
169 return false;
170 /* Allow chanops to bypass anti_spam_exit_message_time for part messages. */
171 if (is_chanop(msptr))
172 return true;
173 return (source_p->localClient->firsttime + ConfigFileEntry.anti_spam_exit_message_time) < rb_current_time();
174 }
175
176 /*
177 * do_message_hook - execute the message hook on a part message reason.
178 *
179 * inputs:
180 * - client parting
181 * - channel being parted
182 * - pointer to reason
183 * outputs:
184 * - true if message is allowed
185 * - false if message is denied or message is now empty
186 * side effects:
187 * - reason may be modified.
188 */
189 static bool
190 do_message_hook(struct Client *source_p, struct Channel *chptr, const char **reason)
191 {
192 hook_data_privmsg_channel hdata;
193
194 hdata.msgtype = MESSAGE_TYPE_PART;
195 hdata.source_p = source_p;
196 hdata.chptr = chptr;
197 hdata.text = *reason;
198 hdata.approved = 0;
199
200 call_hook(h_privmsg_channel, &hdata);
201
202 /* The reason may have been changed by a hook... */
203 *reason = hdata.text;
204
205 return (hdata.approved == 0 && !EmptyString(*reason));
206 }