]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_ircv3_servertime.cpp
3e059719d13ac6bac1f03b6cf5968912595fc9fc
[user/henk/code/inspircd.git] / src / modules / m_ircv3_servertime.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2016 Attila Molnar <attilamolnar@hush.com>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #include "inspircd.h"
21 #include "modules/ircv3.h"
22 #include "modules/ircv3_servertime.h"
23 #include "modules/server.h"
24
25 class ServerTimeTag
26         : public IRCv3::ServerTime::Manager
27         , public IRCv3::CapTag<ServerTimeTag>
28         , public ServerProtocol::MessageEventListener
29 {
30         time_t lasttime;
31         long lasttimens;
32         std::string lasttimestring;
33
34         void RefreshTimeString()
35         {
36                 const time_t currtime = ServerInstance->Time();
37                 const long currtimens = ServerInstance->Time_ns();
38                 if (currtime != lasttime || currtimens != lasttimens)
39                 {
40                         lasttime = currtime;
41                         lasttimens = currtimens;
42
43                         // Cache the string so it's not recreated every time a message is sent.
44                         lasttimestring = IRCv3::ServerTime::FormatTime(currtime, (currtimens ? currtimens / 1000000 : 0));
45                 }
46         }
47
48  public:
49         ServerTimeTag(Module* mod)
50                 : IRCv3::ServerTime::Manager(mod)
51                 , IRCv3::CapTag<ServerTimeTag>(mod, "server-time", "time")
52                 , ServerProtocol::MessageEventListener(mod)
53                 , lasttime(0)
54                 , lasttimens(0)
55         {
56                 tagprov = this;
57         }
58
59         const std::string* GetValue(const ClientProtocol::Message& msg)
60         {
61                 // Client protocol.
62                 RefreshTimeString();
63                 return &lasttimestring;
64         }
65
66         void OnBuildMessage(User* source, const char* command, ClientProtocol::TagMap& tags) CXX11_OVERRIDE
67         {
68                 // Server protocol.
69                 RefreshTimeString();
70                 tags.insert(std::make_pair(tagname, ClientProtocol::MessageTagData(this, lasttimestring)));
71         }
72
73 };
74
75 class ModuleIRCv3ServerTime : public Module
76 {
77         ServerTimeTag tag;
78
79  public:
80         ModuleIRCv3ServerTime()
81                 : tag(this)
82         {
83         }
84
85         Version GetVersion() CXX11_OVERRIDE
86         {
87                 return Version("Provides the server-time IRCv3 extension", VF_VENDOR);
88         }
89 };
90
91 MODULE_INIT(ModuleIRCv3ServerTime)