]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_ircv3_servertime.cpp
Document <alias:stripcolor>
[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         using ServerProtocol::MessageEventListener::OnBuildMessage;
50
51         ServerTimeTag(Module* mod)
52                 : IRCv3::ServerTime::Manager(mod)
53                 , IRCv3::CapTag<ServerTimeTag>(mod, "server-time", "time")
54                 , ServerProtocol::MessageEventListener(mod)
55                 , lasttime(0)
56                 , lasttimens(0)
57         {
58                 tagprov = this;
59         }
60
61         const std::string* GetValue(const ClientProtocol::Message& msg)
62         {
63                 // Client protocol.
64                 RefreshTimeString();
65                 return &lasttimestring;
66         }
67
68         void OnBuildMessage(User* source, const char* command, ClientProtocol::TagMap& tags) CXX11_OVERRIDE
69         {
70                 // Server protocol.
71                 RefreshTimeString();
72                 tags.insert(std::make_pair(tagname, ClientProtocol::MessageTagData(this, lasttimestring)));
73         }
74
75 };
76
77 class ModuleIRCv3ServerTime : public Module
78 {
79         ServerTimeTag tag;
80
81  public:
82         ModuleIRCv3ServerTime()
83                 : tag(this)
84         {
85         }
86
87         Version GetVersion() CXX11_OVERRIDE
88         {
89                 return Version("Provides the server-time IRCv3 extension", VF_VENDOR);
90         }
91 };
92
93 MODULE_INIT(ModuleIRCv3ServerTime)