mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Added mod_time with support for [XEP-0202: Entity Time] and [XEP-0090: Entity Time] (deprecated)
This commit is contained in:
parent
9cfa2fe191
commit
5eafb3d324
1 changed files with 28 additions and 0 deletions
28
plugins/mod_time.lua
Normal file
28
plugins/mod_time.lua
Normal file
|
@ -0,0 +1,28 @@
|
|||
|
||||
local st = require "util.stanza";
|
||||
local datetime = require "util.datetime".datetime;
|
||||
|
||||
-- XEP-0202: Entity Time
|
||||
|
||||
require "core.discomanager".set("time", "urn:xmpp:time");
|
||||
|
||||
add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:time",
|
||||
function(session, stanza)
|
||||
if stanza.attr.type == "get" then
|
||||
session.send(st.reply(stanza):tag("time", {xmlns="urn:xmpp:time"})
|
||||
:tag("tzo"):text("+00:00"):up() -- FIXME get the timezone in a platform independent fashion
|
||||
:tag("utc"):text(datetime()));
|
||||
end
|
||||
end);
|
||||
|
||||
-- XEP-0090: Entity Time (deprecated)
|
||||
|
||||
require "core.discomanager".set("time", "jabber:iq:time");
|
||||
|
||||
add_iq_handler({"c2s", "s2sin"}, "jabber:iq:time",
|
||||
function(session, stanza)
|
||||
if stanza.attr.type == "get" then
|
||||
session.send(st.reply(stanza):tag("query", {xmlns="jabber:iq:time"})
|
||||
:tag("utc"):text(datetime()));
|
||||
end
|
||||
end);
|
Loading…
Add table
Add a link
Reference in a new issue