X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_ircv3_servertime.cpp;h=0cc29436e8d440041213d263ea24d11c991f4498;hb=e2b0f3dc9ef4d56c71d7abda13e6139ca092e387;hp=1c35c422b041736781f99adb54893978550064a8;hpb=c6e40d36b42a7ebf832c3a57d2816a47ee9c9a76;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_ircv3_servertime.cpp b/src/modules/m_ircv3_servertime.cpp index 1c35c422b..0cc29436e 100644 --- a/src/modules/m_ircv3_servertime.cpp +++ b/src/modules/m_ircv3_servertime.cpp @@ -1,7 +1,8 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2016 Attila Molnar + * Copyright (C) 2018-2019 Sadie Powell + * Copyright (C) 2018 Attila Molnar * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -20,37 +21,58 @@ #include "inspircd.h" #include "modules/ircv3.h" #include "modules/ircv3_servertime.h" +#include "modules/server.h" -class ServerTimeTag : public IRCv3::ServerTime::Manager, public IRCv3::CapTag +class ServerTimeTag + : public IRCv3::ServerTime::Manager + , public IRCv3::CapTag + , public ServerProtocol::MessageEventListener { time_t lasttime; + long lasttimens; std::string lasttimestring; void RefreshTimeString() { const time_t currtime = ServerInstance->Time(); - if (currtime != lasttime) + const long currtimens = ServerInstance->Time_ns(); + if (currtime != lasttime || currtimens != lasttimens) { lasttime = currtime; - // Cache the string so it's not recreated every time a message is sent - lasttimestring = IRCv3::ServerTime::FormatTime(currtime); + lasttimens = currtimens; + + // Cache the string so it's not recreated every time a message is sent. + lasttimestring = IRCv3::ServerTime::FormatTime(currtime, (currtimens ? currtimens / 1000000 : 0)); } } public: + using ServerProtocol::MessageEventListener::OnBuildMessage; + ServerTimeTag(Module* mod) : IRCv3::ServerTime::Manager(mod) , IRCv3::CapTag(mod, "server-time", "time") + , ServerProtocol::MessageEventListener(mod) , lasttime(0) + , lasttimens(0) { tagprov = this; } const std::string* GetValue(const ClientProtocol::Message& msg) { + // Client protocol. RefreshTimeString(); return &lasttimestring; } + + void OnBuildMessage(User* source, const char* command, ClientProtocol::TagMap& tags) CXX11_OVERRIDE + { + // Server protocol. + RefreshTimeString(); + tags.insert(std::make_pair(tagname, ClientProtocol::MessageTagData(this, lasttimestring))); + } + }; class ModuleIRCv3ServerTime : public Module @@ -65,7 +87,7 @@ class ModuleIRCv3ServerTime : public Module Version GetVersion() CXX11_OVERRIDE { - return Version("Provides the server-time IRCv3 extension", VF_VENDOR); + return Version("Provides the IRCv3 server-time client capability.", VF_VENDOR); } };