mod_c2s,etc: Identify stanza object with appropriate function

Better than duck typing, in case anyone ever passes a non-stanza table
with a 'name' field.
This commit is contained in:
Kim Alvefur 2021-10-24 15:17:01 +02:00
parent 94d9ba7ce1
commit ef6cb64b9e
4 changed files with 9 additions and 9 deletions

View file

@ -265,6 +265,9 @@ local function session_close(session, reason)
if type(reason) == "string" then -- assume stream error
module:log("info", "Disconnecting component, <stream:error> is: %s", reason);
session.send(st.stanza("stream:error"):tag(reason, {xmlns = 'urn:ietf:params:xml:ns:xmpp-streams' }));
elseif st.is_stanza(reason) then
module:log("info", "Disconnecting component, <stream:error> is: %s", reason);
session.send(reason);
elseif type(reason) == "table" then
if reason.condition then
local stanza = st.stanza("stream:error"):tag(reason.condition, stream_xmlns_attr):up();
@ -276,9 +279,6 @@ local function session_close(session, reason)
end
module:log("info", "Disconnecting component, <stream:error> is: %s", stanza);
session.send(stanza);
elseif reason.name then -- a stanza
module:log("info", "Disconnecting component, <stream:error> is: %s", reason);
session.send(reason);
end
end
end