Software /
code /
prosody-modules
Changeset
3880:44c2d36c40a4
mod_rest: Add JSON to XML mapping of dataforms
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 04 Feb 2020 22:34:19 +0100 |
parents | 3879:3b31ff7b4c7c |
children | 3881:5d7df207dc2b |
files | mod_rest/jsonmap.lib.lua |
diffstat | 1 files changed, 39 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_rest/jsonmap.lib.lua Tue Feb 04 22:22:47 2020 +0100 +++ b/mod_rest/jsonmap.lib.lua Tue Feb 04 22:34:19 2020 +0100 @@ -47,7 +47,45 @@ return form; end; function (x) - -- TODO + if type(x) == "table" and x ~= json.null then + local form = st.stanza("x", { xmlns = "jabber:x:data", type = x.type }); + if x.title then + form:text_tag("title", x.title); + end + if x.instructions then + form:text_tag("instructions", x.instructions); + end + if type(x.fields) == "table" then + for _, f in ipairs(x.fields) do + if type(f) == "table" then + form:tag("field", { var = f.var, type = f.type, label = f.label }); + if f.desc then + form:text_tag("desc", f.desc); + end + if f.required == true then + form:tag("required"):up(); + end + if type(f.value) == "string" then + form:text_tag("value", f.value); + elseif type(f.value) == "table" then + for _, v in ipairs(f.value) do + form:text_tag("value", v); + end + end + if type(f.options) == "table" then + for _, o in ipairs(f.value) do + if type(o) == "table" then + form:tag("option", { label = o.label }); + form:text_tag("value", o.value); + form:up(); + end + end + end + end + end + end + return form; + end end; };