]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_alltime.cpp
fixed some indentation and spacing in modules
[user/henk/code/inspircd.git] / src / modules / m_alltime.cpp
index 4701b1cc1789844b29779906e39e62dfc930168d..b0ccd2886cb9faf85ab70c8be0e11120e0cc2a0b 100644 (file)
@@ -1,90 +1,75 @@
-/* Written by Special (john@yarbbles.com) */
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
 
-using namespace std;
-
-#include <stdio.h>
-#include <string>
 #include "inspircd.h"
-#include "modules.h"
 
 /* $ModDesc: Display timestamps from all servers connected to the network */
 
-class cmd_alltime : public command_t
+class CommandAlltime : public Command
 {
  public:
-       cmd_alltime(InspIRCd *Instance) : command_t(Instance, "ALLTIME", 'o', 0)
+       CommandAlltime(InspIRCd *Instance) : Command(Instance, "ALLTIME", "o", 0)
        {
                this->source = "m_alltime.so";
-               syntax = "";
+               syntax.clear();
+               translation.push_back(TR_END);
        }
 
-       CmdResult Handle(const char **parameters, int pcnt, userrec *user)
+       CmdResult Handle(const std::vector<std::string> &parameters, User *user)
        {
                char fmtdate[64];
-               time_t time = ServerInstance->Time();
-               strftime(fmtdate, sizeof(fmtdate), "%F %T", gmtime(&time));
-               
-               string msg = ":" + string(ServerInstance->Config->ServerName) + " NOTICE " + user->nick + " :Time for " +
+               time_t now = ServerInstance->Time();
+               strftime(fmtdate, sizeof(fmtdate), "%Y-%m-%d %H:%M:%S", gmtime(&now));
+
+               std::string msg = ":" + std::string(ServerInstance->Config->ServerName) + " NOTICE " + user->nick + " :System time for " +
                        ServerInstance->Config->ServerName + " is: " + fmtdate;
-               
+
                if (IS_LOCAL(user))
                {
                        user->Write(msg);
                }
                else
                {
-                       deque<string> params;
-                       params.push_back(user->nick);
-                       params.push_back(msg);
-                       Event ev((char *) &params, NULL, "send_push");
-                       ev.Send(ServerInstance);
+                       ServerInstance->PI->PushToClient(user, ":" + msg);
                }
-               
+
+               /* we want this routed out! */
                return CMD_SUCCESS;
        }
 };
 
+
 class Modulealltime : public Module
 {
-       cmd_alltime *mycommand;
+       CommandAlltime *mycommand;
  public:
        Modulealltime(InspIRCd *Me)
-               : Module::Module(Me)
+               : Module(Me)
        {
-               mycommand = new cmd_alltime(ServerInstance);
+               mycommand = new CommandAlltime(ServerInstance);
                ServerInstance->AddCommand(mycommand);
+
        }
-       
+
        virtual ~Modulealltime()
        {
        }
-       
+
        virtual Version GetVersion()
        {
-               return Version(1, 0, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version(1, 2, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
        }
-       
-};
 
-class ModulealltimeFactory : public ModuleFactory
-{
- public:
-       ModulealltimeFactory()
-       {
-       }
-       
-       ~ModulealltimeFactory()
-       {
-       }
-       
-       virtual Module *CreateModule(InspIRCd *Me)
-       {
-               return new Modulealltime(Me);
-       }
 };
 
-
-extern "C" void *init_module(void)
-{
-       return new ModulealltimeFactory;
-}
+MODULE_INIT(Modulealltime)