]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_time.c
start making this compile
[irc/rqf/shadowircd.git] / modules / m_time.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_time.c: Sends the current time on the 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_time.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 "numeric.h"
31#include "s_conf.h"
32#include "s_serv.h"
33#include "send.h"
34#include "msg.h"
35#include "parse.h"
36#include "modules.h"
37#include "packet.h"
38#include "sprintf_irc.h"
39
40static int m_time(struct Client *, struct Client *, int, const char **);
41static char *date(void);
42
43struct Message time_msgtab = {
44 "TIME", 0, 0, 0, MFLG_SLOW,
45 {mg_unreg, {m_time, 0}, {m_time, 2}, mg_ignore, mg_ignore, {m_time, 0}}
46};
47
48mapi_clist_av1 time_clist[] = { &time_msgtab, NULL };
49DECLARE_MODULE_AV1(time, NULL, NULL, time_clist, NULL, NULL, "$Revision: 254 $");
50
51static const char *months[] = {
52 "January", "February", "March", "April",
53 "May", "June", "July", "August",
54 "September", "October", "November", "December"
55};
56
57static const char *weekdays[] = {
58 "Sunday", "Monday", "Tuesday", "Wednesday",
59 "Thursday", "Friday", "Saturday"
60};
61
62/*
63 * m_time
64 * parv[0] = sender prefix
65 * parv[1] = servername
66 */
67static int
68m_time(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
69{
70 /* this is not rate limited, so end the grace period */
71 if(MyClient(source_p) && !IsFloodDone(source_p))
72 flood_endgrace(source_p);
73
74 if(hunt_server(client_p, source_p, ":%s TIME :%s", 1, parc, parv) == HUNTED_ISME)
75 sendto_one_numeric(source_p, RPL_TIME, form_str(RPL_TIME),
76 me.name, date());
77
78 return 0;
79}
80
81/* date()
82 *
83 * returns date in human readable form
84 */
85static char *
86date(void)
87{
88 static char buf[80];
89 char plus;
90 struct tm *lt;
91 struct tm *gm;
92 struct tm gmbuf;
93 time_t lclock;
94 int minswest;
95
96 lclock = CurrentTime;
97 gm = gmtime(&lclock);
98 memcpy((void *) &gmbuf, (void *) gm, sizeof(gmbuf));
99 gm = &gmbuf;
100 lt = localtime(&lclock);
101
102 if(lt->tm_yday == gm->tm_yday)
103 minswest = (gm->tm_hour - lt->tm_hour) * 60 + (gm->tm_min - lt->tm_min);
104 else if(lt->tm_yday > gm->tm_yday && lt->tm_year == gm->tm_year)
105 minswest = (gm->tm_hour - (lt->tm_hour + 24)) * 60;
106 else
107 minswest = ((gm->tm_hour + 24) - lt->tm_hour) * 60;
108
109 plus = (minswest > 0) ? '-' : '+';
110
111 if(minswest < 0)
112 minswest = -minswest;
113
114 ircsprintf(buf, "%s %s %d %d -- %02u:%02u:%02u %c%02u:%02u",
115 weekdays[lt->tm_wday], months[lt->tm_mon], lt->tm_mday,
116 lt->tm_year + 1900, lt->tm_hour, lt->tm_min, lt->tm_sec,
117 plus, minswest / 60, minswest % 60);
118
119 return buf;
120}