]> jfr.im git - solanum.git/blame - modules/core/m_kick.c
add help for `chm_regmsg`
[solanum.git] / modules / core / m_kick.c
CommitLineData
212380e3
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_kick.c: Kicks 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
212380e3
AC
23 */
24
25#include "stdinc.h"
212380e3
AC
26#include "channel.h"
27#include "client.h"
4562c604 28#include "match.h"
212380e3
AC
29#include "ircd.h"
30#include "numeric.h"
31#include "send.h"
32#include "msg.h"
33#include "modules.h"
34#include "parse.h"
35#include "hash.h"
36#include "packet.h"
37#include "s_serv.h"
5f8d323c 38#include "hook.h"
212380e3 39
eeabf33a
EM
40static const char kick_desc[] = "Provides the KICK command to remove a user from a channel";
41
3c7d6fcc 42static void m_kick(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
212380e3
AC
43#define mg_kick { m_kick, 3 }
44
45struct Message kick_msgtab = {
7baa37a9 46 "KICK", 0, 0, 0, 0,
212380e3
AC
47 {mg_unreg, mg_kick, mg_kick, mg_kick, mg_ignore, mg_kick}
48};
49
50mapi_clist_av1 kick_clist[] = { &kick_msgtab, NULL };
51
33b2b6c1 52DECLARE_MODULE_AV2(kick, NULL, NULL, kick_clist, NULL, NULL, NULL, NULL, kick_desc);
212380e3
AC
53
54/*
55** m_kick
212380e3
AC
56** parv[1] = channel
57** parv[2] = client to kick
58** parv[3] = kick comment
59*/
3c7d6fcc 60static void
428ca87b 61m_kick(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3 62{
883ac66b 63 struct membership *sourcems, *targetms;
212380e3
AC
64 struct Client *who;
65 struct Channel *chptr;
66 int chasing = 0;
67 char *comment;
68 const char *name;
69 char *p = NULL;
70 const char *user;
71 static char buf[BUFSIZE];
72
73 if(MyClient(source_p) && !IsFloodDone(source_p))
74 flood_endgrace(source_p);
75
212380e3
AC
76 *buf = '\0';
77 if((p = strchr(parv[1], ',')))
78 *p = '\0';
79
80 name = parv[1];
81
82 chptr = find_channel(name);
83 if(chptr == NULL)
84 {
85 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL, form_str(ERR_NOSUCHCHANNEL), name);
3c7d6fcc 86 return;
212380e3
AC
87 }
88
89 if(!IsServer(source_p))
90 {
883ac66b 91 sourcems = find_channel_membership(chptr, source_p);
212380e3 92
883ac66b 93 if((sourcems == NULL) && MyConnect(source_p))
212380e3
AC
94 {
95 sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
96 form_str(ERR_NOTONCHANNEL), name);
3c7d6fcc 97 return;
212380e3
AC
98 }
99
883ac66b 100 if(get_channel_access(source_p, chptr, sourcems, MODE_ADD, NULL) < CHFL_CHANOP)
212380e3
AC
101 {
102 if(MyConnect(source_p))
103 {
104 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
105 me.name, source_p->name, name);
3c7d6fcc 106 return;
212380e3
AC
107 }
108
109 /* If its a TS 0 channel, do it the old way */
110 if(chptr->channelts == 0)
111 {
112 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
113 get_id(&me, source_p), get_id(source_p, source_p), name);
eeabf33a 114 return;
212380e3
AC
115 }
116 }
117
212380e3
AC
118 }
119
120 if((p = strchr(parv[2], ',')))
121 *p = '\0';
122
123 user = parv[2]; /* strtoken(&p2, parv[2], ","); */
124
125 if(!(who = find_chasing(source_p, user, &chasing)))
126 {
3c7d6fcc 127 return;
212380e3
AC
128 }
129
883ac66b 130 targetms = find_channel_membership(chptr, who);
212380e3 131
883ac66b 132 if(targetms != NULL)
212380e3
AC
133 {
134 if(MyClient(source_p) && IsService(who))
135 {
136 sendto_one(source_p, form_str(ERR_ISCHANSERVICE),
137 me.name, source_p->name, who->name, chptr->chname);
3c7d6fcc 138 return;
212380e3
AC
139 }
140
5f8d323c
AC
141 if(MyClient(source_p))
142 {
143 hook_data_channel_approval hookdata;
144
145 hookdata.client = source_p;
146 hookdata.chptr = chptr;
883ac66b 147 hookdata.msptr = sourcems;
5f8d323c
AC
148 hookdata.target = who;
149 hookdata.approved = 1;
202d4966 150 hookdata.dir = MODE_ADD; /* ensure modules like override speak up */
5f8d323c
AC
151
152 call_hook(h_can_kick, &hookdata);
153
154 if (!hookdata.approved)
3c7d6fcc 155 return;
5f8d323c
AC
156 }
157
0bba1788
JT
158 comment = LOCAL_COPY((EmptyString(parv[3])) ? who->name : parv[3]);
159 if(strlen(comment) > (size_t) REASONLEN)
160 comment[REASONLEN] = '\0';
161
212380e3
AC
162 /* jdc
163 * - In the case of a server kicking a user (i.e. CLEARCHAN),
164 * the kick should show up as coming from the server which did
165 * the kick.
166 * - Personally, flame and I believe that server kicks shouldn't
167 * be sent anyways. Just waiting for some oper to abuse it...
168 */
169 if(IsServer(source_p))
4b1cce65 170 sendto_channel_local(source_p, ALL_MEMBERS, chptr, ":%s KICK %s %s :%s",
212380e3
AC
171 source_p->name, name, who->name, comment);
172 else
4b1cce65 173 sendto_channel_local(source_p, ALL_MEMBERS, chptr,
212380e3
AC
174 ":%s!%s@%s KICK %s %s :%s",
175 source_p->name, source_p->username,
176 source_p->host, name, who->name, comment);
177
178 sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
179 ":%s KICK %s %s :%s",
180 use_id(source_p), chptr->chname, use_id(who), comment);
883ac66b 181 remove_user_from_channel(targetms);
212380e3
AC
182 }
183 else if (MyClient(source_p))
184 sendto_one_numeric(source_p, ERR_USERNOTINCHANNEL,
185 form_str(ERR_USERNOTINCHANNEL), user, name);
212380e3 186}