1 /*
2  *  ircd-ratbox: A slightly useful ircd.
3  *  m_quit.c: Makes a user quit from IRC.
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-2012 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
22  *  USA
23  *
24  *  $Id: m_quit.c 27371 2012-03-16 05:33:15Z dubkat $
25  */
26 
27 #include "stdinc.h"
28 #include "struct.h"
29 #include "client.h"
30 #include "ircd.h"
31 #include "send.h"
32 #include "parse.h"
33 #include "modules.h"
34 #include "s_conf.h"
35 
36 static int m_quit(struct Client *, struct Client *, int, const char **);
37 static int mr_quit(struct Client *, struct Client *, int, const char **);
38 static int ms_quit(struct Client *, struct Client *, int, const char **);
39 
40 struct Message quit_msgtab = {
41 	"QUIT", 0, 0, 0, MFLG_SLOW | MFLG_UNREG,
42 	{{mr_quit, 0}, {m_quit, 0}, {ms_quit, 0}, mg_ignore, mg_ignore, {m_quit, 0}}
43 };
44 
45 mapi_clist_av1 quit_clist[] = { &quit_msgtab, NULL };
46 
47 DECLARE_MODULE_AV1(quit, NULL, NULL, quit_clist, NULL, NULL, "$Revision: 27371 $");
48 
49 
50 static int
mr_quit(struct Client * client_p,struct Client * source_p,int parc,const char * parv[])51 mr_quit(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
52 {
53 	exit_client(client_p, source_p, source_p, "Client Quit");
54 	return 0;
55 }
56 
57 /*
58 ** m_quit
59 **      parv[0] = sender prefix
60 **      parv[1] = comment
61 */
62 static int
m_quit(struct Client * client_p,struct Client * source_p,int parc,const char * parv[])63 m_quit(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
64 {
65 	char *comment = LOCAL_COPY_N((parc > 1 && parv[1]) ? parv[1] : client_p->name, REASONLEN);
66 	char reason[REASONLEN + 1];
67 
68 	source_p->flags |= FLAGS_NORMALEX;
69 
70 	if(ConfigFileEntry.client_exit && comment[0])
71 	{
72 		rb_snprintf(reason, sizeof(reason), "Quit: %s", comment);
73 		comment = reason;
74 	}
75 
76 	if(!IsOper(source_p) &&
77 	   (source_p->localClient->firsttime + ConfigFileEntry.anti_spam_exit_message_time) >
78 	   rb_current_time())
79 	{
80 		exit_client(client_p, source_p, source_p, "Client Quit");
81 		return 0;
82 	}
83 
84 	exit_client(client_p, source_p, source_p, comment);
85 
86 	return 0;
87 }
88 
89 /*
90 ** ms_quit
91 **      parv[0] = sender prefix
92 **      parv[1] = comment
93 */
94 static int
ms_quit(struct Client * client_p,struct Client * source_p,int parc,const char * parv[])95 ms_quit(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
96 {
97 	char *comment = LOCAL_COPY_N((parc > 1 && parv[1]) ? parv[1] : client_p->name, REASONLEN);
98 
99 	source_p->flags |= FLAGS_NORMALEX;
100 	exit_client(client_p, source_p, source_p, comment);
101 
102 	return 0;
103 }
104