Commit graph

29 commits

Author SHA1 Message Date
Kim Alvefur
43531740f9 util: Prefix module imports with prosody namespace 2023-03-17 16:23:16 +01:00
Kim Alvefur
e2cff34641 util.mathcompat: Module to ease reuse of math.type()
Mostly to ensure it is available during tests, as util.startup is not
invoked there
2022-10-20 16:50:12 +02:00
Kim Alvefur
89359b70dc util.datamapper: Improve handling of schemas with non-obvious "type"
The JSON Schema specification says that schemas are objects or booleans,
and that the 'type' property is optional and can be an array.

This module previously allowed bare type names as schemas and did not
really handle booleans.

It now handles missing 'type' properties and boolean 'true' as a schema.
Objects and arrays are guessed based on the presence of 'properties' or
'items' field.
2022-07-08 17:32:48 +02:00
Kim Alvefur
5168bd5c5f util.datamapper: Add support for $ref pointers
Allows reuse of repetitive definitions in schemas.
2021-12-29 17:57:09 +01:00
Kim Alvefur
4720eea24f util.datamapper: Don't include empty unwrapped arrays
Since there is no way to distinguish an empty such array from a
zero-length array. Dropping it seems like the least annoying thing to
do.
2021-03-24 00:48:02 +01:00
Kim Alvefur
13185a16ae util.datamapper: Fix error on attempt to coerce nil to something
Turns falsy values into nil instead of nothing, which ensures this
function always has 1 return value, or table.insert({}) complains. Would
still happen on some unexpected input, but that's actually a good thing.
2021-03-23 23:55:33 +01:00
Kim Alvefur
2040145780 util.datamapper: Deal with locally built stanzas missing xmlns
So the problem is that xmlns is not inherited when building a stanza,
and then :get_child(n, ns) with an explicit namespace does not find that
such child tags.

E.g.
local t = st.stanza("foo", { xmlns = "urn:example:bar" })
	:text_tag("hello", "world");
assert(t:get_child("hello", "urn:example:bar"), "This fails");

Meanwhile, during parsing (util.xmppstream or util.xml) child tags do
get the parents xmlns when not overriding them.

Thus, in the above example, if the stanza is passed trough
`t = util.xml.parse(tostring(t))` then the assert succeeds.

This change makes it so that it leaves out the namespace argument to
:get_child when it is the same as the current/parent namespace, which
behaves the same for both built and parsed stanzas.
2021-03-23 19:52:59 +01:00
Kim Alvefur
e783d99cc2 util.datamapper: Factor out conversion from any value to XML string
Since this was the last severely duplicated code left.
2021-03-22 22:24:39 +01:00
Kim Alvefur
6f0532b89f util.datamapper: Handle nested arrays or objects in arrays 2021-03-22 10:05:41 +01:00
Kim Alvefur
f68d29bafd util.datamapper: Fix to skip parsing wrapped arrays that aren't there
Turns out the unreachable error is reachable :D
2021-03-22 10:03:32 +01:00
Kim Alvefur
4f191a3239 util.datamapper: Complete array building support 2021-03-20 21:29:51 +01:00
Kim Alvefur
366edae239 util.datamapper: Factor out handling of object properties for array reuse 2021-03-20 21:25:45 +01:00
Kim Alvefur
f5962d7193 util.datamapper: Finally implement support for parsing arrays 2021-03-20 20:45:06 +01:00
Kim Alvefur
87474145e5 util.datamapper: Factor out extraction of the XML part to use
So extract_value() takes an XML tag and details about which part we're
interested in and returns that.

Factoring this out will help with array implementation since this will
be common behavior.
2021-03-20 19:02:18 +01:00
Kim Alvefur
a51587da48 util.datamapper: Only get element name if there's an element
Fixes error due to attempting to index a nil value
2021-03-19 19:07:25 +01:00
Kim Alvefur
7f04df223a util.datamapper: Fix arrays nesting one level too deep 2021-03-19 01:17:59 +01:00
Kim Alvefur
3c3cdcd0c7 util.datamapper: Deal with type name changes in util.jsonschema 2021-03-19 00:26:04 +01:00
Kim Alvefur
576b43151c util.datamapper: Limited support for unparsing simple arrays of strings 2021-03-18 13:07:10 +01:00
Kim Alvefur
c62c5b307e util.datamapper: Add initial support for parsing arrays 2021-03-18 12:57:25 +01:00
Kim Alvefur
fb7df0067c util.datamapper: Factor out common schema unpacking
This code extracts the bits from the schema that determines how the data
is to be mapped to/from XML.
2021-03-14 16:50:49 +01:00
Kim Alvefur
3a62af2e0e util.datamapper: Separate extraction of xml from coercion to target type
Now it gets the text, attribute or name first, then turns it into
whatever the schema wants. This should be easier to further factor out
into preparation for array support.
2021-03-14 03:06:37 +01:00
Kim Alvefur
a7b010cbc5 util.datamapper: Use enum instead of mutually exclusive booleans
Cleaner and rules out invalid combinations.
2021-03-14 01:57:00 +01:00
Kim Alvefur
9d25c9c9ac util.datamapper: Enumerated elements
E.g. error conditions or chat states.
2021-03-12 01:33:15 +01:00
Kim Alvefur
a09823e81c util.datamapper: Add references with notes 2021-03-10 00:19:38 +01:00
Kim Alvefur
07889f274d util.datamapper: Add support for mapping of elements where only one attribute matters
E.g. <feature var='foo'/> in XEP-0030 and some other simple
specifications.
2021-03-07 12:48:49 +01:00
Kim Alvefur
7cd2803161 util.datamapper: Add logic for "boolean" tags here the presence means true 2021-03-07 01:41:39 +01:00
Kim Alvefur
d20ea9b87e util.datamapper: Invent extension for using tag name as value
Useful for certain enum-like uses where the element name is the relevant
information, e.g. chat states.
2021-03-06 23:14:23 +01:00
Kim Alvefur
d8e9e044f2 util.datamapper: Add 'unparse' for turning tables into XML 2021-03-07 00:57:36 +01:00
Kim Alvefur
081eb23c54 util.datamapper: Library for extracting data from stanzas
Based on the XML support in the OpenAPI specification.
2021-03-07 00:57:36 +01:00