mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.datamapper: Fix arrays nesting one level too deep
This commit is contained in:
parent
3c3cdcd0c7
commit
7f04df223a
3 changed files with 31 additions and 25 deletions
|
@ -1,5 +1,7 @@
|
|||
local st = require("util.stanza");
|
||||
|
||||
local schema_t = {}
|
||||
|
||||
local function toboolean(s)
|
||||
if s == "true" or s == "1" then
|
||||
return true
|
||||
|
@ -181,7 +183,7 @@ local function parse(schema, s)
|
|||
end
|
||||
end
|
||||
|
||||
local function unparse(schema, t, current_name, current_ns)
|
||||
local function unparse(schema, t, current_name, current_ns, ctx)
|
||||
|
||||
if schema.xml then
|
||||
if schema.xml.name then
|
||||
|
@ -193,7 +195,7 @@ local function unparse(schema, t, current_name, current_ns)
|
|||
|
||||
end
|
||||
|
||||
local out = st.stanza(current_name, {xmlns = current_ns})
|
||||
local out = ctx or st.stanza(current_name, {xmlns = current_ns})
|
||||
|
||||
if schema.type == "object" then
|
||||
|
||||
|
@ -268,15 +270,13 @@ local function unparse(schema, t, current_name, current_ns)
|
|||
out:add_direct_child(c);
|
||||
end
|
||||
elseif proptype == "array" and type(propschema) == "table" and type(v) == "table" then
|
||||
local c = unparse(propschema, v, name, namespace);
|
||||
if c then
|
||||
if value_where == "in_wrapper" then
|
||||
local w = st.stanza(propschema.xml.name or name, {xmlns = propschema.xml.namespace or namespace})
|
||||
w:add_direct_child(c);
|
||||
out:add_direct_child(w);
|
||||
else
|
||||
if value_where == "in_wrapper" then
|
||||
local c = unparse(propschema, v, name, namespace);
|
||||
if c then
|
||||
out:add_direct_child(c);
|
||||
end
|
||||
else
|
||||
unparse(propschema, v, name, namespace, out);
|
||||
end
|
||||
else
|
||||
error("NYI")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue