util.pubsub: Pass "retract" as the type of such broadcasts

This moves some XEP-0060 awkwardness out of util.pubsub and into mod_pubsub

A retraction is broadcast in an <items> container, whereas most other
kinds of broadcasts are in a container with a name matching the 'kind'
attribute.
This commit is contained in:
Kim Alvefur 2018-08-16 14:32:21 +02:00
parent 16f48337f3
commit 98c9778cc7
3 changed files with 8 additions and 1 deletions

View file

@ -124,6 +124,9 @@ end
local function get_broadcaster(username)
local user_bare = jid_join(username, host);
local function simple_broadcast(kind, node, jids, item)
if kind == "retract" then
kind = "items"; -- XEP-0060 signals retraction in an <items> container
end
local message = st.message({ from = user_bare, type = "headline" })
:tag("event", { xmlns = xmlns_pubsub_event })
:tag(kind, { node = node });