Server IP : 85.214.239.14 / Your IP : 13.59.79.207 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /srv/modoboa/env/lib64/python3.5/site-packages/modoboa/lib/ |
Upload File : |
"""Field validators.""" import re from django.core.exceptions import ValidationError from django.core.validators import EmailValidator, URLValidator from django.utils.translation import ugettext_lazy class HostnameValidator(object): """Validator for fqdn.""" message = ugettext_lazy("Enter a valid domain name") code = "invalid" regex = re.compile(URLValidator.host_re) def __init__(self, message=None, code=None): """Constructor.""" if message is not None: self.message = message if code is not None: self.code = code def __call__(self, value): """Check value.""" if len(value) > 255: raise ValidationError(self.message, self.code) if value[-1] == ".": # strip exactly one dot from the right, if present. value = value[:-1] if not self.regex.match(value): raise ValidationError(self.message, self.code) validate_hostname = HostnameValidator() class UTF8EmailValidator(EmailValidator): """Validator for addresses using non-ASCII characters.""" # unicode letters range (must be a unicode string, not a raw string) ul = "\u00a1-\uffff" ascii_set = "-!#$%&'*+/=?^_`{}|~0-9A-Z" user_regex_raw = ( # dot-atom r"^[" + ascii_set + ul + r"]+(\.[" + ascii_set + ul + r"]+)*\Z" # quoted-string r'|^"([\001-\010\013\014\016-\037!#-\[\]-\177]|' r'\\[\001-\011\013\014\016-\177])*"\Z)' ) user_regex = re.compile(r"(" + user_regex_raw, re.IGNORECASE) validate_utf8_email = UTF8EmailValidator() class UTF8AndEmptyUserEmailValidator(UTF8EmailValidator): """Same as upper + allows empty local part.""" user_regex = re.compile( r"(^$|" + UTF8EmailValidator.user_regex_raw, re.IGNORECASE) validate_utf8_and_empty_user_email = UTF8AndEmptyUserEmailValidator()