]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_ircv3_servertime.cpp
Add support for the IRCv3 server-time specification.
[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
24 class ServerTimeTag : public IRCv3::ServerTime::Manager, public IRCv3::CapTag<ServerTimeTag>
25 {
26         time_t lasttime;
27         std::string lasttimestring;
28
29         void RefreshTimeString()
30         {
31                 const time_t currtime = ServerInstance->Time();
32                 if (currtime != lasttime)
33                 {
34                         lasttime = currtime;
35                         // Cache the string so it's not recreated every time a message is sent
36                         lasttimestring = IRCv3::ServerTime::FormatTime(currtime);
37                 }
38         }
39
40  public:
41         ServerTimeTag(Module* mod)
42                 : IRCv3::ServerTime::Manager(mod)
43                 , IRCv3::CapTag<ServerTimeTag>(mod, "server-time", "time")
44                 , lasttime(0)
45         {
46                 tagprov = this;
47         }
48
49         const std::string* GetValue(const ClientProtocol::Message& msg)
50         {
51                 RefreshTimeString();
52                 return &lasttimestring;
53         }
54 };
55
56 class ModuleIRCv3ServerTime : public Module
57 {
58         ServerTimeTag tag;
59
60  public:
61         ModuleIRCv3ServerTime()
62                 : tag(this)
63         {
64         }
65
66         Version GetVersion() CXX11_OVERRIDE
67         {
68                 return Version("Provides the server-time IRCv3 extension", VF_VENDOR);
69         }
70 };
71
72 MODULE_INIT(ModuleIRCv3ServerTime)