plugins/mod_time.lua

Thu, 27 Nov 2008 02:48:08 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Thu, 27 Nov 2008 02:48:08 +0500
changeset 429
b1d86f89fa27
parent 424
3eb22492e8ab
child 438
193f9dd64f17
permissions
-rw-r--r--

Added options to limit the number of resources and for handling of resource conflicts
- core.max_resources: defaults to 10
- core.conflict_resolve: can be "random", "increment", "kick_new" and "kick_old" (default)


local st = require "util.stanza";
local datetime = require "util.datetime".datetime;
local legacy = require "util.datetime".legacy;

-- 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(legacy()));
		end
	end);

mercurial