]> jfr.im git - irc/rqf/shadowircd.git/blob - modules/m_locops.c
Log unknown class in auth errors to ircd.log as well.
[irc/rqf/shadowircd.git] / modules / m_locops.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_locops.c: Sends a message to all operators on the local server.
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_locops.c 254 2005-09-21 23:35:12Z nenolod $
25 */
26
27 #include "stdinc.h"
28 #include "client.h"
29 #include "ircd.h"
30 #include "match.h"
31 #include "numeric.h"
32 #include "send.h"
33 #include "s_user.h"
34 #include "s_conf.h"
35 #include "s_newconf.h"
36 #include "hash.h"
37 #include "msg.h"
38 #include "parse.h"
39 #include "modules.h"
40 #include "s_serv.h"
41
42 static int m_locops(struct Client *, struct Client *, int, const char **);
43 static int ms_locops(struct Client *, struct Client *, int, const char **);
44 static int me_locops(struct Client *, struct Client *, int, const char **);
45
46 struct Message locops_msgtab = {
47 "LOCOPS", 0, 0, 0, MFLG_SLOW,
48 {mg_unreg, mg_not_oper, {ms_locops, 3}, mg_ignore, {me_locops, 2}, {m_locops, 2}}
49 };
50
51 mapi_clist_av1 locops_clist[] = { &locops_msgtab, NULL };
52 DECLARE_MODULE_AV1(locops, NULL, NULL, locops_clist, NULL, NULL, "$Revision: 254 $");
53
54 /*
55 * m_locops - LOCOPS message handler
56 * (write to *all* local opers currently online)
57 * parv[1] = message text
58 */
59 static int
60 m_locops(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
61 {
62 sendto_wallops_flags(UMODE_LOCOPS, source_p, "LOCOPS - %s", parv[1]);
63
64 if(rb_dlink_list_length(&cluster_conf_list) > 0)
65 cluster_generic(source_p, "LOCOPS", SHARED_LOCOPS, CAP_CLUSTER,
66 ":%s", parv[1]);
67
68 return 0;
69 }
70
71 static int
72 ms_locops(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
73 {
74 /* source_p parv[1] parv[2]
75 * oper target serv message
76 */
77 propagate_generic(source_p, "LOCOPS", parv[1], CAP_CLUSTER,
78 ":%s", parv[2]);
79
80 if(!match(parv[1], me.name))
81 return 0;
82
83 if(find_shared_conf("*", "*", source_p->servptr->name, SHARED_LOCOPS))
84 sendto_wallops_flags(UMODE_LOCOPS, source_p, "SLOCOPS - %s", parv[2]);
85
86 return 0;
87 }
88
89 static int
90 me_locops(struct Client *client_p, struct Client *source_p,
91 int parc, const char *parv[])
92 {
93 if(!IsPerson(source_p))
94 return 0;
95
96 if(find_shared_conf("*", "*", source_p->servptr->name, SHARED_LOCOPS))
97 sendto_wallops_flags(UMODE_LOCOPS, source_p, "SLOCOPS - %s", parv[1]);
98
99 return 0;
100 }
101