2020-01-22 16:33:34 -05:00
|
|
|
from django.core.exceptions import ValidationError
|
2020-01-22 16:26:06 -05:00
|
|
|
from django.core.validators import BaseValidator, RegexValidator
|
|
|
|
|
|
|
|
|
2020-01-22 16:33:34 -05:00
|
|
|
def prefix_validator(prefix):
|
|
|
|
if prefix.ip != prefix.cidr.ip:
|
|
|
|
raise ValidationError("{} is not a valid prefix. Did you mean {}?".format(prefix, prefix.cidr))
|
|
|
|
|
|
|
|
|
2020-01-22 16:26:06 -05:00
|
|
|
class MaxPrefixLengthValidator(BaseValidator):
|
|
|
|
message = 'The prefix length must be less than or equal to %(limit_value)s.'
|
|
|
|
code = 'max_prefix_length'
|
|
|
|
|
|
|
|
def compare(self, a, b):
|
|
|
|
return a.prefixlen > b
|
|
|
|
|
|
|
|
|
|
|
|
class MinPrefixLengthValidator(BaseValidator):
|
|
|
|
message = 'The prefix length must be greater than or equal to %(limit_value)s.'
|
|
|
|
code = 'min_prefix_length'
|
|
|
|
|
|
|
|
def compare(self, a, b):
|
|
|
|
return a.prefixlen < b
|
2019-04-22 18:10:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
DNSValidator = RegexValidator(
|
2019-12-09 10:02:56 -05:00
|
|
|
regex='^[0-9A-Za-z._-]+$',
|
2019-12-05 21:14:29 -05:00
|
|
|
message='Only alphanumeric characters, hyphens, periods, and underscores are allowed in DNS names',
|
2019-04-22 18:10:28 -04:00
|
|
|
code='invalid'
|
|
|
|
)
|