mod_pubsub: Use the 'pubsub#type' setting to pick summary generator

Allows using different ones even if multiple semantically different
formats share the same root element xmlns, e.g. generic Atom and
XEP-0277 entries.
This commit is contained in:
Kim Alvefur 2022-01-24 23:05:26 +01:00
parent c0be43a098
commit 55da054c9b

View file

@ -102,7 +102,8 @@ function simple_broadcast(kind, node, jids, item, actor, node_obj, service) --lu
local summary;
if item and item.tags[1] then
local payload = item.tags[1];
summary = module:fire_event("pubsub-summary/"..payload.attr.xmlns, {
local payload_type = node_obj and node_obj.config.payload_type or payload.attr.xmlns;
summary = module:fire_event("pubsub-summary/"..payload_type, {
kind = kind, node = node, jids = jids, actor = actor, item = item, payload = payload,
});
end