]> jfr.im git - solanum.git/blob - extensions/m_adminwall.c
explicitly show IP in SNO_BANNED snotes
[solanum.git] / extensions / m_adminwall.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_adminwall.c: Sends a message to all admins
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-2007 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 "client.h"
27 #include "ircd.h"
28 #include "match.h"
29 #include "numeric.h"
30 #include "send.h"
31 #include "s_user.h"
32 #include "s_conf.h"
33 #include "s_newconf.h"
34 #include "msg.h"
35 #include "parse.h"
36 #include "modules.h"
37 #include "s_serv.h"
38 #include "messages.h"
39
40 static const char adminwall_desc[] =
41 "Provides the ADMINWALL command to send a message to all administrators";
42
43 static void mo_adminwall(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
44 static void me_adminwall(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
45
46 struct Message adminwall_msgtab = {
47 "ADMINWALL", 0, 0, 0, 0,
48 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_adminwall, 2}, {mo_adminwall, 2}}
49 };
50
51 mapi_clist_av1 adminwall_clist[] = { &adminwall_msgtab, NULL };
52
53 DECLARE_MODULE_AV2(adminwall, NULL, NULL, adminwall_clist, NULL, NULL, NULL, NULL, adminwall_desc);
54
55 /*
56 * mo_adminwall (write to *all* admins currently online)
57 * parv[1] = message text
58 */
59
60 static void
61 mo_adminwall(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
62 {
63 if(!IsAdmin(source_p))
64 {
65 sendto_one(source_p, form_str(ERR_NOPRIVS),
66 me.name, source_p->name, "adminwall");
67 return;
68 }
69 sendto_wallops_flags(UMODE_ADMIN, source_p, "ADMINWALL - %s", parv[1]);
70 sendto_match_servs(source_p, "*", CAP_ENCAP, NOCAPS, "ENCAP * ADMINWALL :%s", parv[1]);
71 }
72
73 static void
74 me_adminwall(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
75 {
76 sendto_wallops_flags(UMODE_ADMIN, source_p, "ADMINWALL - %s", parv[1]);
77 }