]> jfr.im git - solanum.git/blame - modules/m_snote.c
Innovation by sed
[solanum.git] / modules / m_snote.c
CommitLineData
212380e3 1/*
a6f63a82 2 * Solanum: a slightly advanced ircd
212380e3
AC
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"
212380e3 37#include "hash.h"
4562c604 38#include "match.h"
212380e3
AC
39#include "ircd.h"
40#include "numeric.h"
212380e3
AC
41#include "s_serv.h"
42#include "s_conf.h"
43#include "s_newconf.h"
44#include "s_user.h"
45#include "send.h"
46#include "msg.h"
47#include "parse.h"
48#include "modules.h"
49
3abc337f 50static const char snote_desc[] = "Provides server notices via the SNOTE command";
212380e3 51
eeabf33a
EM
52static void me_snote(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
53
212380e3 54struct Message snote_msgtab = {
7baa37a9 55 "SNOTE", 0, 0, 0, 0,
212380e3
AC
56 {mg_ignore, mg_not_oper, mg_ignore, mg_ignore, {me_snote, 3}, mg_ignore}
57};
58
59mapi_clist_av1 snote_clist[] = { &snote_msgtab, NULL };
eeabf33a 60
3abc337f 61DECLARE_MODULE_AV2(snote, NULL, NULL, snote_clist, NULL, NULL, NULL, NULL, snote_desc);
212380e3
AC
62
63/*
64 * me_snote
212380e3
AC
65 * parv[1] = snomask letter
66 * parv[2] = message
67 */
3c7d6fcc 68static void
428ca87b 69me_snote(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc,
212380e3
AC
70 const char *parv[])
71{
72 /* if there's more than just two params, this is a protocol
73 * violation, but it seems stupid to drop servers over it,
74 * shit happens afterall -nenolod
75 */
76 if (parc > 3)
3c7d6fcc 77 return;
212380e3 78 if (!IsServer(source_p))
3c7d6fcc 79 return;
212380e3
AC
80
81 sendto_realops_snomask_from(snomask_modes[(unsigned char) *parv[1]],
82 L_ALL, source_p, "%s", parv[2]);
212380e3 83}