view mod_adhoc_cmd_ping/mod_adhoc_cmd_ping.lua @ 8:10502594a49b

adds mod_privacy; lists creating, editing and deletion working.
author Thilo Cestonaro <thilo@cestona.ro>
date Fri, 25 Sep 2009 16:56:50 +0200
parents 473b14c59797
children 2be8bcce5b18
line wrap: on
line source

-- Copyright (C) 2009 Thilo Cestonaro
-- 
-- This file is MIT/X11 licensed. Please see the
-- COPYING file in the source package for more information.
--

local st = require "util.stanza";

function ping_command_handler (item, origin, stanza)
	local now = os.date("%Y-%m-%dT%X")
	origin.send(st.reply(stanza):tag("command", {xmlns="http://jabber.org/protocol/commands", status="completed", node=item.node, sessionid=now})
		:tag("note", {type="info"}):text(item.name));
	return true;
end

module:add_item ("adhoc", { name="Ping", node="ping", handler=ping_command_handler });