aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_time.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2008-11-26 08:56:30 +0500
committerWaqas Hussain <waqas20@gmail.com>2008-11-26 08:56:30 +0500
commit5eafb3d324dc2aad0c35e8d7e8ded647175b2e90 (patch)
tree96f696027cf851dfa8f18236e3c852dee06f88c9 /plugins/mod_time.lua
parent9cfa2fe191348aa9e5800cde5b05eab8f6868100 (diff)
downloadprosody-5eafb3d324dc2aad0c35e8d7e8ded647175b2e90.tar.gz
prosody-5eafb3d324dc2aad0c35e8d7e8ded647175b2e90.zip
Added mod_time with support for [XEP-0202: Entity Time] and [XEP-0090: Entity Time] (deprecated)
Diffstat (limited to 'plugins/mod_time.lua')
-rw-r--r--plugins/mod_time.lua28
1 files changed, 28 insertions, 0 deletions
diff --git a/plugins/mod_time.lua b/plugins/mod_time.lua
new file mode 100644
index 00000000..b91d7b43
--- /dev/null
+++ b/plugins/mod_time.lua
@@ -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);