validators.py
26 lines
| 633 B
| text/x-python
|
PythonLexer
r523 | import os | |||
r821 | import re | |||
r523 | ||||
import ipaddress | ||||
import colander | ||||
from rhodecode.translation import _ | ||||
r821 | from rhodecode.lib.utils2 import glob2re | |||
r523 | ||||
def ip_addr_validator(node, value): | ||||
try: | ||||
# this raises an ValueError if address is not IpV4 or IpV6 | ||||
ipaddress.ip_network(value, strict=False) | ||||
except ValueError: | ||||
msg = _(u'Please enter a valid IPv4 or IpV6 address') | ||||
raise colander.Invalid(node, msg) | ||||
r821 | ||||
def glob_validator(node, value): | ||||
try: | ||||
re.compile('^' + glob2re(value) + '$') | ||||
except Exception: | ||||
raise | ||||
msg = _(u'Invalid glob pattern') | ||||
raise colander.Invalid(node, msg) | ||||