mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_pubsub: Limit node listing based on new ACL-aware metadata method
Ensures that nodes that one does not have metadata access to are hidden from view. This follows from the new ACL-aware method added in 3b357ab6b6eb.
This commit is contained in:
parent
fbb3a116db
commit
c900aab69e
1 changed files with 4 additions and 1 deletions
|
@ -185,7 +185,10 @@ module:hook("host-disco-items", function (event)
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
for node, node_obj in pairs(ret) do
|
for node, node_obj in pairs(ret) do
|
||||||
reply:tag("item", { jid = module.host, node = node, name = node_obj.config.title }):up();
|
local ok, meta = service:get_node_metadata(node, stanza.attr.from);
|
||||||
|
if ok then
|
||||||
|
reply:tag("item", { jid = module.host, node = node, name = meta.title }):up();
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end);
|
end);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue