]> jfr.im git - solanum.git/blame - modules/m_snote.c
modules: remove explicit CPRIVMSG/CNOTICE, this has been obsolete for a long time
[solanum.git] / modules / m_snote.c
CommitLineData
212380e3
AC
1/*
2 * charybdis: an advanced Internet Relay Chat Daemon(ircd).
3 * m_snote.c: Server notice listener
4 *
5 * Copyright (c) 2006 William Pitcock <nenolod -at- nenolod.net>
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
10 *
11 * 1.Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the following disclaimer.
13 * 2.Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3.The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
23 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
27 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
28 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
212380e3
AC
30 */
31
32#include "stdinc.h"
33#include "class.h"
34#include "hook.h"
35#include "client.h"
36#include "hash.h"
37#include "common.h"
38#include "hash.h"
4562c604 39#include "match.h"
212380e3
AC
40#include "ircd.h"
41#include "numeric.h"
212380e3
AC
42#include "s_serv.h"
43#include "s_conf.h"
44#include "s_newconf.h"
45#include "s_user.h"
46#include "send.h"
47#include "msg.h"
48#include "parse.h"
49#include "modules.h"
50
3abc337f 51static const char snote_desc[] = "Provides server notices via the SNOTE command";
212380e3 52
eeabf33a
EM
53static void me_snote(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
54
212380e3 55struct Message snote_msgtab = {
7baa37a9 56 "SNOTE", 0, 0, 0, 0,
212380e3
AC
57 {mg_ignore, mg_not_oper, mg_ignore, mg_ignore, {me_snote, 3}, mg_ignore}
58};
59
60mapi_clist_av1 snote_clist[] = { &snote_msgtab, NULL };
eeabf33a 61
3abc337f 62DECLARE_MODULE_AV2(snote, NULL, NULL, snote_clist, NULL, NULL, NULL, NULL, snote_desc);
212380e3
AC
63
64/*
65 * me_snote
212380e3
AC
66 * parv[1] = snomask letter
67 * parv[2] = message
68 */
3c7d6fcc 69static void
428ca87b 70me_snote(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc,
212380e3
AC
71 const char *parv[])
72{
73 /* if there's more than just two params, this is a protocol
74 * violation, but it seems stupid to drop servers over it,
75 * shit happens afterall -nenolod
76 */
77 if (parc > 3)
3c7d6fcc 78 return;
212380e3 79 if (!IsServer(source_p))
3c7d6fcc 80 return;
212380e3
AC
81
82 sendto_realops_snomask_from(snomask_modes[(unsigned char) *parv[1]],
83 L_ALL, source_p, "%s", parv[2]);
212380e3 84}