mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +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
|
@ -109,6 +109,9 @@ function complex_validate(schema, data, root)
|
|||
if schema.minLength and #data < schema.minLength then
|
||||
return false
|
||||
end
|
||||
if schema.luaPattern and not data:match(schema.luaPattern) then
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
if type(data) == "number" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue