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:
Kim Alvefur 2025-01-07 22:57:39 +01:00
parent fbb3a116db
commit c900aab69e

View file

@ -185,7 +185,10 @@ module:hook("host-disco-items", function (event)
return;
end
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);