Server IP : 85.214.239.14 / Your IP : 13.59.69.109 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 : /proc/3/task/3/cwd/srv/modoboa/env/lib64/python3.5/site-packages/phonenumber_field/ |
Upload File : |
import phonenumbers from django.core import validators from django.core.exceptions import ValidationError from django.forms.fields import CharField from django.utils.translation import gettext as _ from phonenumber_field.phonenumber import to_python, validate_region from phonenumber_field.validators import validate_international_phonenumber class PhoneNumberField(CharField): default_validators = [validate_international_phonenumber] def __init__(self, *args, region=None, **kwargs): super().__init__(*args, **kwargs) self.widget.input_type = "tel" validate_region(region) self.region = region if "invalid" not in self.error_messages: if region: number = phonenumbers.example_number(region) example_number = to_python(number).as_national # Translators: {example_number} is a national phone number. error_message = _( "Enter a valid phone number (e.g. {example_number}) " "or a number with an international call prefix." ) else: example_number = "+12125552368" # Ghostbusters # Translators: {example_number} is an international phone number. error_message = _("Enter a valid phone number (e.g. {example_number}).") self.error_messages["invalid"] = error_message.format( example_number=example_number ) def to_python(self, value): phone_number = to_python(value, region=self.region) if phone_number in validators.EMPTY_VALUES: return self.empty_value if phone_number and not phone_number.is_valid(): raise ValidationError(self.error_messages["invalid"]) return phone_number