Commit graph

18 commits

Author SHA1 Message Date
Kim Alvefur
6710420289 util_datamapper: Fix typo in unit tests 2021-12-29 18:03:26 +01: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
8d24fc3852 util.datamapper: Fix spelling in tests 2021-03-28 14:00:21 +02:00
Kim Alvefur
45acd03672 util.datamapper: Revert one special attribute to longer form
Had a name, using attr() broke it.
2021-03-26 13:01:16 +01:00
Kim Alvefur
f36d7d1161 util.datamapper: Use attribute convenience function throughout 2021-03-26 12:53:29 +01:00
Kim Alvefur
d68de27a5d util.datamapper: Add test coverage of unwrapped arrays of objects
Should the xml name/ns go on the array or the items schema? The later
apparently.
2021-03-24 00:34:22 +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
4f191a3239 util.datamapper: Complete array building support 2021-03-20 21:29:51 +01:00
Kim Alvefur
f5962d7193 util.datamapper: Finally implement support for parsing arrays 2021-03-20 20:45:06 +01:00
Kim Alvefur
7f04df223a util.datamapper: Fix arrays nesting one level too deep 2021-03-19 01:17:59 +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
9d25c9c9ac util.datamapper: Enumerated elements
E.g. error conditions or chat states.
2021-03-12 01:33:15 +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