Software /
code /
prosody
Changeset
9124:dcc490f0044d
pubsub.lib: auto-create node with publish-options if autocreation is enabled
author | Jonas Wielicki <jonas@wielicki.name> |
---|---|
date | Sun, 05 Aug 2018 11:44:49 +0200 |
parents | 9123:5d5aa1c4fe34 |
children | 9125:da7a2db01d6a 9135:c68d62ae9cb7 |
files | plugins/mod_pubsub/pubsub.lib.lua |
diffstat | 1 files changed, 12 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_pubsub/pubsub.lib.lua Sun Aug 05 11:37:47 2018 +0200 +++ b/plugins/mod_pubsub/pubsub.lib.lua Sun Aug 05 11:44:49 2018 +0200 @@ -552,8 +552,18 @@ -- Ensure that the node configuration matches the values in publish-options local publish_options_form = publish_options:get_child("x", "jabber:x:data"); local required_config = config_from_xep0060(node_config_form:data(publish_options_form), true); - local node_config = service:get_node_config(node, stanza.attr.from); - if not check_preconditions(node_config, required_config) then + local node_accessible, node_config = service:get_node_config(node, stanza.attr.from); + if node_accessible == false and service.config.autocreate_on_publish then + module:log("debug", "creating node %s with publish-options", node) + -- we need to create the node here so that it is configured + -- correctly + local created, err = service:create(node, stanza.attr.from, required_config) + if not created then + local reply = pubsub_error_reply(stanza, err); + origin.send(reply); + return true; + end + elseif not check_preconditions(node_config, required_config) then local reply = pubsub_error_reply(stanza, "precondition-not-met"); origin.send(reply); return true;