]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_time.cpp
Remove channel argument from OnSendWhoLine, this information is already available...
[user/henk/code/inspircd.git] / src / commands / cmd_time.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/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 /** Handle /TIME. These command handlers can be reloaded by the core,
17  * and handle basic RFC1459 commands. Commands within modules work
18  * the same way, however, they can be fully unloaded, where these
19  * may not.
20  */
21 class CommandTime : public Command
22 {
23  public:
24         /** Constructor for time.
25          */
26         CommandTime ( Module* parent) : Command(parent,"TIME",0,0) { syntax = "[<servername>]"; }
27         /** Handle command.
28          * @param parameters The parameters to the comamnd
29          * @param pcnt The number of parameters passed to teh command
30          * @param user The user issuing the command
31          * @return A value from CmdResult to indicate command success or failure.
32          */
33         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
34         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
35         {
36                 if (parameters.size() > 0)
37                         return ROUTE_UNICAST(parameters[0]);
38                 return ROUTE_LOCALONLY;
39         }
40 };
41
42 CmdResult CommandTime::Handle (const std::vector<std::string>& parameters, User *user)
43 {
44         if (parameters.size() > 0 && parameters[0] != ServerInstance->Config->ServerName)
45                 return CMD_SUCCESS;
46         struct tm* timeinfo;
47         time_t local = ServerInstance->Time();
48
49         timeinfo = localtime(&local);
50
51         char tms[26];
52         snprintf(tms,26,"%s",asctime(timeinfo));
53         tms[24] = 0;
54
55         user->SendText(":%s %03d %s %s :%s", ServerInstance->Config->ServerName.c_str(), RPL_TIME, user->nick.c_str(),ServerInstance->Config->ServerName.c_str(),tms);
56
57         return CMD_SUCCESS;
58 }
59
60 COMMAND_INIT(CommandTime)