Created
January 27, 2014 23:46
-
-
Save jpadilla/8659759 to your computer and use it in GitHub Desktop.
DomainNameValidator adapted from Django's EmailValidator.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
from django.utils.encoding import force_text | |
from django.core.exceptions import ValidationError | |
class DomainNameValidator(object): | |
""" | |
Domain name validator adapted from Django's EmailValidator. | |
""" | |
message = 'Enter a valid domain name.' | |
code = 'invalid' | |
domain_regex = re.compile( | |
r'(?:[A-Z0-9](?:[A-Z0-9-]{0,61}[A-Z0-9])?\.)+(?:[A-Z]{2,6}|[A-Z0-9-]{2,})$' # domain | |
# literal form, ipv4 address (SMTP 4.1.3) | |
r'|^\[(25[0-5]|2[0-4]\d|[0-1]?\d?\d)(\.(25[0-5]|2[0-4]\d|[0-1]?\d?\d)){3}\]$', | |
re.IGNORECASE) | |
domain_whitelist = ['localhost'] | |
def __init__(self, message=None, code=None, whitelist=None): | |
if message is not None: | |
self.message = message | |
if code is not None: | |
self.code = code | |
if whitelist is not None: | |
self.domain_whitelist = whitelist | |
def __call__(self, value): | |
value = force_text(value) | |
if not value: | |
raise ValidationError(self.message, code=self.code) | |
if (not value in self.domain_whitelist and | |
not self.domain_regex.match(value)): | |
# Try for possible IDN domain-part | |
try: | |
value = value.encode('idna').decode('ascii') | |
if not self.domain_regex.match(value): | |
raise ValidationError(self.message, code=self.code) | |
else: | |
return | |
except UnicodeError: | |
pass | |
raise ValidationError(self.message, code=self.code) | |
validate_domain_name = DomainNameValidator() | |
def is_valid_domain_name(value): | |
try: | |
validate_domain_name(value) | |
return True | |
except ValidationError: | |
pass | |
return False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment