Kim Alvefur
43531740f9
util: Prefix module imports with prosody namespace
2023-03-17 16:23:16 +01:00
Kim Alvefur
ff2e0641b9
util.dataforms: Encode size attributes as integers in XEP-0221 media element
...
Otherwise very large fields would be serialized in e notation
2021-10-28 13:02:59 +02:00
Kim Alvefur
1a0be02fe8
util.dataforms: Ensure larger integers are serialized as such
...
Assumes that most number fields are integers, as most numeric types
listed in XEP-0122 are, as are all such fields in Prosody as of this.
Otherwise %g produces something like 1.1259e+15
2021-10-28 13:00:24 +02:00
Kim Alvefur
f956b07ca0
util.dataforms: Turn number values into timestamps for datetime fields
...
Makes it symmetric with parsing.
2021-10-26 15:17:49 +02:00
Kim Alvefur
fc677f515f
util.dataforms: Coerce number values for boolean fields
...
Makes more sense than coercing to a string, which would always be
truthy.
2021-10-26 15:15:57 +02:00
Kim Alvefur
851127ecd7
util.dataforms: Add support for datetime field types via XEP-0122
2021-10-25 21:45:46 +02:00
Kim Alvefur
351a197fbd
util.dataforms: Define a integer + "max" datatype
2020-09-18 12:18:51 +02:00
Kim Alvefur
bc20052a9b
util.dataforms: Add support for validating (integer) ranges
2019-11-21 18:56:43 +01:00
Kim Alvefur
1c0e4300ab
util.dataforms: Convert media element sizes to avoid error on Lua 5.3
...
The stanza API does not accept number values and threw an error due to
the height and width attributes of the media element (XEP-0221).
This part had no test coverage previously, explaining why it was not
discovered until now.
2020-08-16 12:55:55 +02:00
Kim Alvefur
715b488722
util.dataforms: Improve default error message for failed datatype validation
2018-09-03 19:44:28 +02:00
Kim Alvefur
9c1528bf2e
util.dataforms: Add support for XEP-0122: Data Forms Validation
...
Initially only basic validation of xs:integer
2018-09-01 03:10:09 +02:00
Kim Alvefur
3da47d7dde
util.dataforms: Allow field names to be different from the 'var' attribute
...
This should allow the usage of long prefixes and namespace-like names to
be contained to the XML representation of the form, so that the code can
use more convenient names.
2018-09-01 01:24:46 +02:00
Kim Alvefur
876b96659c
util.dataforms: Allow passing the current values to be used in stead of omitted fields
2018-08-05 15:50:06 +02:00
Kim Alvefur
2f1b93f5e9
util.dataforms: Normalize indentation
2018-08-04 23:12:41 +02:00
Kim Alvefur
4e6aa6ffd2
util.dataforms: Only allow overriding of options when passed via the :form method
2018-08-03 22:55:28 +02:00
Kim Alvefur
6b55f14950
util.dataforms: Allow overriding default options even if the form has such
2018-08-03 22:24:35 +02:00
Kim Alvefur
414778ee5d
util.dataforms: Allow passing dynamically generated options as values (fixes traceback)
...
This is awkward but there’s currently no better way to do this, short of
dynamically generating the entire form each time
2018-08-03 22:05:40 +02:00
Kim Alvefur
383dc3fbfd
util.dataforms: Exclude descriptive text fields from forms of type 'submit'
...
The receiving end presumably already have the original form, so these
potentially long text fields are of little value.
2018-08-03 21:45:55 +02:00
Kim Alvefur
03cb429034
util.dataforms: Skip all fields for the 'cancel' form type
...
XEP-0004 says:
> a data form of type "cancel" SHOULD NOT contain any <field/> elements.
The title and instructions don't seem to be of much value in this case
either.
I'm not aware of 'cancel' being used anywhere, so this should break
nothing. Early return is always nice.
2018-08-03 21:06:59 +02:00
Kim Alvefur
90a519fc70
util.dataforms: Only include options in 'form' type forms
...
Options should not be needed in other types of forms.
2018-08-03 21:05:48 +02:00
Kim Alvefur
aa1b2624bd
util.dataforms: Set default value for form type argument
2018-08-03 20:59:15 +02:00
Kim Alvefur
ef485bd2af
util.dataforms: Detach generation of options from values ( fixes #1177 )
2018-08-03 18:35:00 +02:00
Kim Alvefur
9917c35bb6
util.dataforms: Ensure fields have names when collecting data (fixes traceback, thanks Martin)
2018-07-15 22:50:05 +02:00
Matthew Wild
bdb4a84ec4
util.dataforms: More robust handling of field values, especially booleans
...
Ensure that a non-nil data[field_name] always overrides the field's default,
and that values of boolean 'false' are always rendered in the form.
2018-07-07 12:11:52 +01:00
Kim Alvefur
cecc562ac0
util.dataforms: Add support for field descriptions in <desc>
2018-06-27 20:06:13 +02:00
Kim Alvefur
a7448e43e0
util.dataforms: Add a simple function for identifying form types
...
This is meant to allow identifying forms without parsing them
completely.
2018-06-02 19:57:46 +02:00
Kim Alvefur
5b1a236029
util.dataforms: Remove string conversion to let util.stanza validate types
2018-06-02 19:49:15 +02:00
Kim Alvefur
43b814a83b
vairious: Add annotation when an empty environment is set [luacheck]
2018-02-28 20:06:26 +01:00
Matthew Wild
03b4a9a938
util.dataforms: Don't include list options in result forms ( fixes #983 )
2017-09-23 13:20:46 +01:00
Kim Alvefur
6b2c577b20
util.dataforms: Fix including default value for list-single when given as field.value[].default
2016-05-29 15:57:03 +02:00
Kim Alvefur
99a7a645f1
util.dataforms: Allow separation of options from values in list fields
2016-05-27 15:44:41 +02:00
Kim Alvefur
db9b82199f
util.dataforms: Track which fields are included in a form
2015-12-08 20:16:49 +01:00
Kim Alvefur
e91df7d788
util.dataforms: Fix interaction of required fields and empty string values ( fixes #521 )
2015-09-12 17:49:47 +02:00
Kim Alvefur
5739f89a5d
util.dataforms: Refactor parsing to reuse simple text parser instead of duplicate code
2015-09-12 17:40:14 +02:00
Kim Alvefur
eaa823a597
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
2015-02-21 10:36:37 +01:00
Matthew Wild
d0741cdda2
util.dataforms: Rename unused loop counter to '_' [luacheck]
2015-05-06 19:43:51 +01:00
Matthew Wild
fd58c2c49c
util.dataforms: Remove unused import of pairs() (thanks luacheck)
2015-05-06 19:38:29 +01:00
Waqas Hussain
cff8575563
Merge 0.9->0.10
2014-10-08 18:42:33 -04:00
daurnimator
810491af12
util/dataforms: Make sure we iterate over field tags
2014-10-07 12:08:23 -04:00
Kim Alvefur
a4b456c857
Merge 0.9->0.10
2014-04-23 00:22:36 +02:00
Kim Alvefur
ef460cbd97
util.dataforms: Add support for XEP-0221: Data Forms Media Element
2014-04-22 23:36:26 +02:00
Florian Zeitz
1d833bb807
Remove all trailing whitespace
2013-08-09 17:48:21 +02:00
Florian Zeitz
17bc3cc408
util.dataforms: Return nil for empty list-mutli responses, to be consistent with other readers
2013-06-14 00:07:57 +02:00
Florian Zeitz
8cc295b34a
util.dataforms: Add support for generating type='fixed' fields
2013-02-11 23:46:45 +01:00
Florian Zeitz
49d3586dc1
util.dataforms: Fix parsing of -multi fields
2012-06-12 18:29:58 +02:00
Kim Alvefur
644b8615f3
util.dataforms: Don't return invalid JIDs in jid-single.
2012-05-17 21:25:41 +02:00
Kim Alvefur
9cf153e1bc
util.dataforms: Fix validation of booleans.
2012-05-17 21:18:35 +02:00
Kim Alvefur
3373f129a7
util.dataforms: Do field validation and normalization in field readers.
2012-05-17 21:01:44 +02:00
Florian Zeitz
df36a97275
util.dataforms: Fix verfication for booleans
2011-12-03 17:10:48 +01:00
Florian Zeitz
2dae99da75
util.dataforms: Fix form verification
2011-12-02 19:24:54 +01:00