plugins/ping.lua

Thu, 27 Aug 2015 14:22:25 +0200

author
Kim Alvefur <zash@zash.se>
date
Thu, 27 Aug 2015 14:22:25 +0200
changeset 393
69229fa1d24f
parent 380
0891b4e27766
child 457
73d4eb93657b
permissions
-rw-r--r--

plugins.ping: Import socket.gettime to a local, LuaSocket stopped setting globals

local verse = require "verse";
local gettime = require"socket".gettime;

local xmlns_ping = "urn:xmpp:ping";

function verse.plugins.ping(stream)
	function stream:ping(jid, callback)
		local t = 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(gettime()-t, jid);
			end);
	end
	stream:hook("iq/"..xmlns_ping, function(stanza)
		return stream:send(verse.reply(stanza));
	end);
	return true;
end

mercurial