From c175dc8265beac3ccb64781f0443a38a102bc1ff Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Tue, 29 Oct 2024 14:56:02 +0100 Subject: mod_pubsub: Move precondition error wrangling out of util.pubsub Removes dependency on util.error from util.pubsub which was only used for this one special case. Line count reduction! Would be even nicer if templating could be done by util.error itself. --- plugins/mod_pubsub/pubsub.lib.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'plugins/mod_pubsub') diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index f2980c18..5a9be149 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -34,10 +34,11 @@ local pubsub_errors = errors.init("pubsub", xmlns_pubsub_errors, { ["persistent-items-unsupported"] = { "cancel", "feature-not-implemented", nil, "persistent-items" }; }); local function pubsub_error_reply(stanza, error, context) - if type(error) == "table" and type(error.pubsub_condition) == "string" then - error.extra = { namespace = xmlns_pubsub_errors; condition = error.pubsub_condition } + local err = pubsub_errors.wrap(error, context); + if error == "precondition-not-met" and type(context) == "table" and type(context.field) == "string" then + err.text = "Field does not match: " .. context.field; end - local reply = st.error_reply(stanza, pubsub_errors.wrap(error, context)); + local reply = st.error_reply(stanza, err); return reply; end _M.pubsub_error_reply = pubsub_error_reply; -- cgit v1.2.3