]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_alltime.cpp
OOPS! We try again, since I'm smoking craq. LF is 0x0a NOT CR.
[user/henk/code/inspircd.git] / src / modules / m_alltime.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "modules.h"
16
17 /* $ModDesc: Display timestamps from all servers connected to the network */
18
19 class cmd_alltime : public command_t
20 {
21  public:
22         cmd_alltime(InspIRCd *Instance) : command_t(Instance, "ALLTIME", 'o', 0)
23         {
24                 this->source = "m_alltime.so";
25                 syntax.clear();
26         }
27
28         CmdResult Handle(const char **parameters, int pcnt, userrec *user)
29         {
30                 char fmtdate[64];
31                 char fmtdate2[64];
32                 time_t now = ServerInstance->Time(false);
33                 strftime(fmtdate, sizeof(fmtdate), "%F %T", gmtime(&now));
34                 now = ServerInstance->Time(true);
35                 strftime(fmtdate2, sizeof(fmtdate2), "%F %T", gmtime(&now));
36                 
37                 int delta = ServerInstance->GetTimeDelta();
38                 
39                 string msg = ":" + string(ServerInstance->Config->ServerName) + " NOTICE " + user->nick + " :System time for " +
40                         ServerInstance->Config->ServerName + " is: " + fmtdate + " (delta " + ConvToStr(delta) + " seconds): Time with delta: "+ fmtdate2;
41                 
42                 if (IS_LOCAL(user))
43                 {
44                         user->Write(msg);
45                 }
46                 else
47                 {
48                         deque<string> params;
49                         params.push_back(user->nick);
50                         params.push_back(msg);
51                         Event ev((char *) &params, NULL, "send_push");
52                         ev.Send(ServerInstance);
53                 }
54
55                 /* we want this routed out! */
56                 return CMD_SUCCESS;
57         }
58 };
59
60
61 class Modulealltime : public Module
62 {
63         cmd_alltime *mycommand;
64  public:
65         Modulealltime(InspIRCd *Me)
66                 : Module(Me)
67         {
68                 mycommand = new cmd_alltime(ServerInstance);
69                 ServerInstance->AddCommand(mycommand);
70         }
71         
72         virtual ~Modulealltime()
73         {
74         }
75         
76         virtual Version GetVersion()
77         {
78                 return Version(1, 0, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
79         }
80         
81 };
82
83 MODULE_INIT(Modulealltime)