]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_alltime.cpp
Clear up header insanity
[user/henk/code/inspircd.git] / src / modules / m_alltime.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 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
16 /* $ModDesc: Display timestamps from all servers connected to the network */
17
18 class CommandAlltime : public Command
19 {
20  public:
21         CommandAlltime(InspIRCd *Instance) : Command(Instance, "ALLTIME", 'o', 0)
22         {
23                 this->source = "m_alltime.so";
24                 syntax.clear();
25                 translation.push_back(TR_END);
26         }
27
28         CmdResult Handle(const char **parameters, int pcnt, User *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                 std::string msg = ":" + std::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                         std::deque<std::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         CommandAlltime *mycommand;
64  public:
65         Modulealltime(InspIRCd *Me)
66                 : Module(Me)
67         {
68                 mycommand = new CommandAlltime(ServerInstance);
69                 ServerInstance->AddCommand(mycommand);
70
71         }
72         
73         virtual ~Modulealltime()
74         {
75         }
76         
77         virtual Version GetVersion()
78         {
79                 return Version(1, 0, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
80         }
81         
82 };
83
84 MODULE_INIT(Modulealltime)