plugins/ping.lua

Sat, 06 Jul 2013 08:38:31 +0200

author
Kim Alvefur <zash@zash.se>
date
Sat, 06 Jul 2013 08:38:31 +0200
changeset 347
48cc6cad9bd6
parent 339
72fbfb0367e9
child 380
0891b4e27766
permissions
-rw-r--r--

plugins.pubsub: Keep track of wrapped callbacks

local verse = require "verse";

local xmlns_ping = "urn:xmpp:ping";

function verse.plugins.ping(stream)
	function stream:ping(jid, callback)
		local t = socket.gettime();
		stream:send_iq(verse.iq{ to = jid, type = "get" }:tag("ping", { xmlns = xmlns_ping }), 
			function (reply)
				if reply.attr.type == "error" then
					local type, condition, text = reply:get_error();
					if condition ~= "service-unavailable" and condition ~= "feature-not-implemented" then
						callback(nil, jid, { type = type, condition = condition, text = text });
						return;
					end
				end
				callback(socket.gettime()-t, jid);
			end);
	end
	stream:hook("iq/"..xmlns_ping, function(stanza)
		return stream:send(verse.reply(stanza));
	end);
	return true;
end

mercurial