# HG changeset patch # User Waqas Hussain # Date 1227671790 -18000 # Node ID c9c7f026a108d7a94b6d70f91f674e963f3e2220 # Parent 61c8877d703c665d714d0344bd041410a4300338 Added mod_time with support for [XEP-0202: Entity Time] and [XEP-0090: Entity Time] (deprecated) diff -r 61c8877d703c -r c9c7f026a108 plugins/mod_time.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plugins/mod_time.lua Wed Nov 26 08:56:30 2008 +0500 @@ -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);