.
[prosody.git] / util / discohelper.lua
index 4ac8f22716cc4016d08b6b28e44883ac583e560f..c2301937929697e6a1d84eaac11254b7e2e29a49 100644 (file)
@@ -1,3 +1,12 @@
+-- Prosody IM v0.4
+-- Copyright (C) 2008-2009 Matthew Wild
+-- Copyright (C) 2008-2009 Waqas Hussain
+-- 
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
+
+
 \r
 local t_insert = table.insert;\r
 local jid_split = require "util.jid".split;\r
@@ -37,20 +46,8 @@ local function handle(self, stanza)
                elseif query.attr.xmlns == "http://jabber.org/protocol/disco#items" then\r
                        handlers = self.item_handlers;\r
                end\r
-               local handler = handlers[to]; -- get the handler\r
-               if not handler then -- if not found then use default handler\r
-                       if to_node then\r
-                               handler = handlers["*defaultnode"];\r
-                       else\r
-                               handler = handlers["*defaulthost"];\r
-                       end\r
-               end\r
-               local found; -- to keep track of any handlers found\r
-               if handler then\r
-                       for _, h in ipairs(handler) do\r
-                               if h(reply, to, from, node) then found = true; end\r
-                       end\r
-               end\r
+               local handler;
+               local found; -- to keep track of any handlers found
                if to_node then -- handlers which get called always\r
                        handler = handlers["*node"];\r
                else\r
@@ -61,6 +58,19 @@ local function handle(self, stanza)
                                if h(reply, to, from, node) then found = true; end\r
                        end\r
                end\r
+               handler = handlers[to]; -- get the handler
+               if not handler then -- if not found then use default handler
+                       if to_node then
+                               handler = handlers["*defaultnode"];
+                       else
+                               handler = handlers["*defaulthost"];
+                       end
+               end
+               if handler then
+                       for _, h in ipairs(handler) do
+                               if h(reply, to, from, node) then found = true; end
+                       end
+               end
                if found then return reply; end -- return the reply if there was one\r
                return st.error_reply(stanza, "cancel", "service-unavailable");\r
        end\r