|
@@ -5,13 +5,15 @@ IT-specific Form helpers
|
|
|
from django.newforms import ValidationError
|
|
|
from django.newforms.fields import Field, RegexField, Select, EMPTY_VALUES
|
|
|
from django.utils.translation import gettext
|
|
|
+from django.utils.encoding import smart_unicode
|
|
|
+from django.contrib.localflavor.it.util import ssn_check_digit, vat_number_check_digit
|
|
|
import re
|
|
|
|
|
|
class ITZipCodeField(RegexField):
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
super(ITZipCodeField, self).__init__(r'^\d{5}$',
|
|
|
max_length=None, min_length=None,
|
|
|
- error_message=gettext(u'Enter a zip code in the format XXXXX.'),
|
|
|
+ error_message=gettext(u'Enter a valid zip code.'),
|
|
|
*args, **kwargs)
|
|
|
|
|
|
class ITRegionSelect(Select):
|
|
@@ -29,3 +31,47 @@ class ITProvinceSelect(Select):
|
|
|
def __init__(self, attrs=None):
|
|
|
from it_province import PROVINCE_CHOICES # relative import
|
|
|
super(ITProvinceSelect, self).__init__(attrs, choices=PROVINCE_CHOICES)
|
|
|
+
|
|
|
+class ITSocialSecurityNumberField(RegexField):
|
|
|
+ """
|
|
|
+ A form field that validates Italian Social Security numbers (codice fiscale).
|
|
|
+ For reference see http://www.agenziaentrate.it/ and search for
|
|
|
+ 'Informazioni sulla codificazione delle persone fisiche'.
|
|
|
+ """
|
|
|
+ err_msg = gettext(u'Enter a valid Social Security number.')
|
|
|
+ def __init__(self, *args, **kwargs):
|
|
|
+ super(ITSocialSecurityNumberField, self).__init__(r'^\w{3}\s*\w{3}\s*\w{5}\s*\w{5}$',
|
|
|
+ max_length=None, min_length=None, error_message=self.err_msg,
|
|
|
+ *args, **kwargs)
|
|
|
+
|
|
|
+ def clean(self, value):
|
|
|
+ value = super(ITSocialSecurityNumberField, self).clean(value)
|
|
|
+ if value == u'':
|
|
|
+ return value
|
|
|
+ value = re.sub('\s', u'', value).upper()
|
|
|
+ try:
|
|
|
+ check_digit = ssn_check_digit(value)
|
|
|
+ except ValueError:
|
|
|
+ raise ValidationError(self.err_msg)
|
|
|
+ if not value[15] == check_digit:
|
|
|
+ raise ValidationError(self.err_msg)
|
|
|
+ return value
|
|
|
+
|
|
|
+class ITVatNumberField(Field):
|
|
|
+ """
|
|
|
+ A form field that validates Italian VAT numbers (partita IVA).
|
|
|
+ """
|
|
|
+ def clean(self, value):
|
|
|
+ value = super(ITVatNumberField, self).clean(value)
|
|
|
+ if value == u'':
|
|
|
+ return value
|
|
|
+ err_msg = gettext(u'Enter a valid VAT number.')
|
|
|
+ try:
|
|
|
+ vat_number = int(value)
|
|
|
+ except ValueError:
|
|
|
+ raise ValidationError(err_msg)
|
|
|
+ vat_number = str(vat_number).zfill(11)
|
|
|
+ check_digit = vat_number_check_digit(vat_number[0:10])
|
|
|
+ if not vat_number[10] == check_digit:
|
|
|
+ raise ValidationError(err_msg)
|
|
|
+ return smart_unicode(vat_number)
|