changeset 6:d497d5df360d

adds mod_adhoc
author Thilo Cestonaro <thilo@cestona.ro>
date Fri, 25 Sep 2009 16:31:33 +0200
parents 9c1c6c5344dc
children 473b14c59797
files mod_adhoc/mod_adhoc.lua
diffstat 1 files changed, 41 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_adhoc/mod_adhoc.lua	Fri Sep 25 16:31:33 2009 +0200
@@ -0,0 +1,41 @@
+-- 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";
+local commands = {};
+
+module:add_feature("http://jabber.org/protocol/commands");
+
+module:hook("iq/host/http://jabber.org/protocol/disco#items:query", function (event)
+    local origin, stanza = event.origin, event.stanza;
+    if stanza.attr.type == "get" and stanza.tags[1].attr.node and stanza.tags[1].attr.node == "http://jabber.org/protocol/commands" then
+		reply = st.reply(stanza);
+		reply:tag("query", {xmlns="http://jabber.org/protocol/disco#items", node="http://jabber.org/protocol/commands"})
+		for i = 1, #commands do
+			-- module:log("info", "adding command %s", commands[i].name);
+        	reply:tag("item", {name=commands[i].name, node=commands[i].node, jid=module:get_host()});
+			reply:up();
+		end
+        origin.send(reply);
+        return true;
+    end 
+end, 500);
+
+module:hook("iq/host", function (event)
+    local origin, stanza = event.origin, event.stanza;
+    if stanza.attr.type == "set" and stanza.tags[1] and stanza.tags[1].name == "command" then 
+        local node = stanza.tags[1].attr.node
+		for i = 1, #commands do
+			if commands[i].node == node then
+				return commands[i].handler(commands[i], origin, stanza);
+			end
+		end
+    end 
+end, 500);
+
+module:hook("item-added/adhoc", function (event)
+	commands[ # commands + 1] = event.item;
+end, 500);