diff options
author | Kim Alvefur <zash@zash.se> | 2017-04-24 23:27:21 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-04-24 23:27:21 +0200 |
commit | 47c821cf549c8ea4645190a8f4bb18b7a2eaee2b (patch) | |
tree | 725bbb1ec01ab96866bb3f16b00677df259db26b | |
parent | 61047672429578e123eab5899a308e978beaf37e (diff) | |
download | prosody-47c821cf549c8ea4645190a8f4bb18b7a2eaee2b.tar.gz prosody-47c821cf549c8ea4645190a8f4bb18b7a2eaee2b.zip |
mod_pep: Handle disco#info queries to nodes (fixes #805)
-rw-r--r-- | plugins/mod_pep.lua | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua index 7b1a50af..1025be37 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -294,11 +294,21 @@ module:hook("account-disco-items", function(event) if user_data then for node, _ in pairs(user_data) do - reply:tag('item', {jid=bare, node=node}):up(); -- TODO we need to handle queries to these nodes + reply:tag('item', {jid=bare, node=node}):up(); end end end); +module:hook("account-disco-info-node", function (event) + local session, stanza, node = event.origin, event.stanza, event.node; + local user = stanza.attr.to; + local user_data = data[user]; + if user_data and user_data[node] then + event.exists = true; + event.reply:tag('identity', {category='pubsub', type='leaf'}):up(); + end +end); + module:hook("resource-unbind", function (event) local user_bare_jid = event.session.username.."@"..event.session.host; if not bare_sessions[user_bare_jid] then -- User went offline |