mod_uptime_presence/mod_uptime_presence.lua
author Nicolas Cedilnik <nicoco@nicoco.fr>
Tue, 20 Feb 2018 17:30:17 +0100
changeset 2890 5ca6d53d3186
parent 917 d3497b81a3b5
permissions -rw-r--r--
Return 401 with correct realm when no user/pass is provided

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

local presence = st.presence({ from = module.host })
	:tag("delay", { xmlns = "urn:xmpp:delay",
		stamp = datetime.datetime(prosody.start_time) });

module:hook("presence/host", function(event)
	local stanza = event.stanza;
	if stanza.attr.type == "probe" then
		presence.attr.id = stanza.attr.id;
		presence.attr.to = stanza.attr.from;
		module:send(presence);
		return true;
	end
end, 10);