mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.jsonschema: Implement 'luaPattern' - Lua variant of 'pattern'
Like 'pattern' but uses Lua patterns instead of Regular Expressions, since only a subset of regex are also valid Lua patterns.
This commit is contained in:
parent
1dad83d28e
commit
9c7c94ab73
2 changed files with 7 additions and 0 deletions
|
@ -98,6 +98,7 @@ local record json_schema_object
|
||||||
|
|
||||||
-- for Lua
|
-- for Lua
|
||||||
luaPatternProperties: { string : schema_t }
|
luaPatternProperties: { string : schema_t }
|
||||||
|
luaPattern : string
|
||||||
|
|
||||||
-- xml
|
-- xml
|
||||||
record xml_t
|
record xml_t
|
||||||
|
@ -225,6 +226,9 @@ function complex_validate (schema : json_schema_object, data : any, root : json_
|
||||||
if schema.minLength and #data < schema.minLength then
|
if schema.minLength and #data < schema.minLength then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
if schema.luaPattern and not data:match(schema.luaPattern) then
|
||||||
|
return false
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if data is number then
|
if data is number then
|
||||||
|
|
|
@ -109,6 +109,9 @@ function complex_validate(schema, data, root)
|
||||||
if schema.minLength and #data < schema.minLength then
|
if schema.minLength and #data < schema.minLength then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
if schema.luaPattern and not data:match(schema.luaPattern) then
|
||||||
|
return false
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if type(data) == "number" then
|
if type(data) == "number" then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue