diff options
author | Kim Alvefur <zash@zash.se> | 2018-08-16 14:32:21 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-08-16 14:32:21 +0200 |
commit | 98c9778cc77d1d81300742e34c81c20a44accef1 (patch) | |
tree | ae0edbc4facdcd6150d87ce35800e68ded54b145 /plugins/mod_pubsub | |
parent | 16f48337f31a4edfade237a5f6efe08e6a2ec887 (diff) | |
download | prosody-98c9778cc77d1d81300742e34c81c20a44accef1.tar.gz prosody-98c9778cc77d1d81300742e34c81c20a44accef1.zip |
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.
Diffstat (limited to 'plugins/mod_pubsub')
-rw-r--r-- | plugins/mod_pubsub/mod_pubsub.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/mod_pubsub/mod_pubsub.lua b/plugins/mod_pubsub/mod_pubsub.lua index cea4e6b2..d18d5f9f 100644 --- a/plugins/mod_pubsub/mod_pubsub.lua +++ b/plugins/mod_pubsub/mod_pubsub.lua @@ -47,6 +47,10 @@ local function create_simple_itemstore(node_config, node_name) end function simple_broadcast(kind, node, jids, item, actor, node_obj) + if kind == "retract" then + kind = "items"; -- XEP-0060 signals retraction in an <items> container + end + if item then item = st.clone(item); item.attr.xmlns = nil; -- Clear the pubsub namespace |