mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.dataforms: Track which fields are included in a form
This commit is contained in:
parent
2458f50dca
commit
db9b82199f
1 changed files with 4 additions and 2 deletions
|
@ -118,6 +118,7 @@ local field_readers = {};
|
|||
function form_t.data(layout, stanza)
|
||||
local data = {};
|
||||
local errors = {};
|
||||
local present = {};
|
||||
|
||||
for _, field in ipairs(layout) do
|
||||
local tag;
|
||||
|
@ -133,6 +134,7 @@ function form_t.data(layout, stanza)
|
|||
errors[field.name] = "Required value missing";
|
||||
end
|
||||
else
|
||||
present[field.name] = true;
|
||||
local reader = field_readers[field.type];
|
||||
if reader then
|
||||
data[field.name], errors[field.name] = reader(tag, field.required);
|
||||
|
@ -140,9 +142,9 @@ function form_t.data(layout, stanza)
|
|||
end
|
||||
end
|
||||
if next(errors) then
|
||||
return data, errors;
|
||||
return data, errors, present;
|
||||
end
|
||||
return data;
|
||||
return data, nil, present;
|
||||
end
|
||||
|
||||
local function simple_text(field_tag, required)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue