]> jfr.im git - solanum.git/blob - modules/m_motd.c
modules: Add AV2 description to m_xline
[solanum.git] / modules / m_motd.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_motd.c: Shows the current message of the day.
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
25 #include "stdinc.h"
26 #include "client.h"
27 #include "ircd.h"
28 #include "send.h"
29 #include "numeric.h"
30 #include "hook.h"
31 #include "msg.h"
32 #include "s_serv.h" /* hunt_server */
33 #include "parse.h"
34 #include "modules.h"
35 #include "s_conf.h"
36 #include "cache.h"
37 #include "ratelimit.h"
38
39 static int m_motd(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
40 static int mo_motd(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
41
42 struct Message motd_msgtab = {
43 "MOTD", 0, 0, 0, 0,
44 {mg_unreg, {m_motd, 0}, {mo_motd, 0}, mg_ignore, mg_ignore, {mo_motd, 0}}
45 };
46
47 int doing_motd_hook;
48
49 mapi_clist_av1 motd_clist[] = { &motd_msgtab, NULL };
50 mapi_hlist_av1 motd_hlist[] = {
51 { "doing_motd", &doing_motd_hook },
52 { NULL, NULL }
53 };
54
55 DECLARE_MODULE_AV2(motd, NULL, NULL, motd_clist, motd_hlist, NULL, NULL, NULL, NULL);
56
57 static void motd_spy(struct Client *);
58
59 /*
60 ** m_motd
61 ** parv[1] = servername
62 */
63 static int
64 m_motd(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
65 {
66 static time_t last_used = 0;
67
68 if((last_used + ConfigFileEntry.pace_wait) > rb_current_time() || !ratelimit_client(source_p, 6))
69 {
70 /* safe enough to give this on a local connect only */
71 sendto_one(source_p, form_str(RPL_LOAD2HI),
72 me.name, source_p->name, "MOTD");
73 sendto_one(source_p, form_str(RPL_ENDOFMOTD),
74 me.name, source_p->name);
75 return 0;
76 }
77 else
78 last_used = rb_current_time();
79
80 if(hunt_server(client_p, source_p, ":%s MOTD :%s", 1, parc, parv) != HUNTED_ISME)
81 return 0;
82
83 motd_spy(source_p);
84 send_user_motd(source_p);
85
86 return 0;
87 }
88
89 /*
90 ** mo_motd
91 ** parv[1] = servername
92 */
93 static int
94 mo_motd(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
95 {
96 if(hunt_server(client_p, source_p, ":%s MOTD :%s", 1, parc, parv) != HUNTED_ISME)
97 return 0;
98
99 motd_spy(source_p);
100 send_user_motd(source_p);
101
102 return 0;
103 }
104
105 /* motd_spy()
106 *
107 * input - pointer to client
108 * output - none
109 * side effects - hook doing_motd is called
110 */
111 static void
112 motd_spy(struct Client *source_p)
113 {
114 hook_data data;
115
116 data.client = source_p;
117 data.arg1 = data.arg2 = NULL;
118
119 call_hook(doing_motd_hook, &data);
120 }