aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_disco.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2011-08-08 18:23:53 +0200
committerKim Alvefur <zash@zash.se>2011-08-08 18:23:53 +0200
commitf0ec18a8b7e8621384970c9803d56c9b1eb92178 (patch)
tree5a748fe8764bdd39f8bfdc2bec7685202ea60c65 /plugins/mod_disco.lua
parent20db89605bb4f635ff1669280142c2db5b1adc88 (diff)
downloadprosody-f0ec18a8b7e8621384970c9803d56c9b1eb92178.tar.gz
prosody-f0ec18a8b7e8621384970c9803d56c9b1eb92178.zip
core.modulemanager, mod_disco: Add support for XEP-0128: Service Discovery Extensions
Diffstat (limited to 'plugins/mod_disco.lua')
-rw-r--r--plugins/mod_disco.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/mod_disco.lua b/plugins/mod_disco.lua
index 907ca753..c3a9c54d 100644
--- a/plugins/mod_disco.lua
+++ b/plugins/mod_disco.lua
@@ -54,6 +54,12 @@ local function build_server_disco_info()
done[feature] = true;
end
end
+ for _,extension in ipairs(module:get_host_items("extension")) do
+ if not done[extension] then
+ query:add_child(extension);
+ done[extension] = true;
+ end
+ end
_cached_server_disco_info = query;
_cached_server_caps_hash = calculate_hash(query);
_cached_server_caps_feature = st.stanza("c", {
@@ -81,8 +87,10 @@ end
module:hook("item-added/identity", clear_disco_cache);
module:hook("item-added/feature", clear_disco_cache);
+module:hook("item-added/extension", clear_disco_cache);
module:hook("item-removed/identity", clear_disco_cache);
module:hook("item-removed/feature", clear_disco_cache);
+module:hook("item-removed/extension", clear_disco_cache);
-- Handle disco requests to the server
module:hook("iq/host/http://jabber.org/protocol/disco#info:query", function(event)