2007-04-26 16:43:25 +08:00
|
|
|
"""
|
|
|
|
Iceland specific form helpers.
|
|
|
|
"""
|
2007-04-26 22:55:18 +08:00
|
|
|
|
2007-04-26 16:43:25 +08:00
|
|
|
from django.newforms import ValidationError
|
|
|
|
from django.newforms.fields import RegexField, EMPTY_VALUES
|
|
|
|
from django.newforms.widgets import Select
|
2008-06-18 21:10:05 +08:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
from django.utils.encoding import smart_unicode
|
2007-04-26 16:43:25 +08:00
|
|
|
|
|
|
|
class ISIdNumberField(RegexField):
|
|
|
|
"""
|
|
|
|
Icelandic identification number (kennitala). This is a number every citizen
|
|
|
|
of Iceland has.
|
|
|
|
"""
|
2007-12-17 16:05:27 +08:00
|
|
|
default_error_messages = {
|
2008-06-18 21:10:05 +08:00
|
|
|
'invalid': _('Enter a valid Icelandic identification number. The format is XXXXXX-XXXX.'),
|
|
|
|
'checksum': _(u'The Icelandic identification number is not valid.'),
|
2007-12-17 16:05:27 +08:00
|
|
|
}
|
|
|
|
|
2007-04-26 16:43:25 +08:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
kwargs['min_length'],kwargs['max_length'] = 10,11
|
2007-12-17 16:05:27 +08:00
|
|
|
super(ISIdNumberField, self).__init__(r'^\d{6}(-| )?\d{4}$', *args, **kwargs)
|
2007-04-26 16:43:25 +08:00
|
|
|
|
|
|
|
def clean(self, value):
|
|
|
|
value = super(ISIdNumberField, self).clean(value)
|
|
|
|
|
|
|
|
if value in EMPTY_VALUES:
|
|
|
|
return u''
|
|
|
|
|
|
|
|
value = self._canonify(value)
|
|
|
|
if self._validate(value):
|
|
|
|
return self._format(value)
|
|
|
|
else:
|
2007-12-17 16:05:27 +08:00
|
|
|
raise ValidationError(self.error_messages['checksum'])
|
2007-04-26 16:43:25 +08:00
|
|
|
|
|
|
|
def _canonify(self, value):
|
|
|
|
"""
|
|
|
|
Returns the value as only digits.
|
|
|
|
"""
|
|
|
|
return value.replace('-', '').replace(' ', '')
|
|
|
|
|
|
|
|
def _validate(self, value):
|
|
|
|
"""
|
|
|
|
Takes in the value in canonical form and checks the verifier digit. The
|
|
|
|
method is modulo 11.
|
|
|
|
"""
|
|
|
|
check = [3, 2, 7, 6, 5, 4, 3, 2, 1, 0]
|
2007-05-13 00:05:51 +08:00
|
|
|
return sum([int(value[i]) * check[i] for i in range(10)]) % 11 == 0
|
2007-04-26 16:43:25 +08:00
|
|
|
|
|
|
|
def _format(self, value):
|
|
|
|
"""
|
|
|
|
Takes in the value in canonical form and returns it in the common
|
|
|
|
display format.
|
|
|
|
"""
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
return smart_unicode(value[:6]+'-'+value[6:])
|
2007-04-26 16:43:25 +08:00
|
|
|
|
|
|
|
class ISPhoneNumberField(RegexField):
|
|
|
|
"""
|
|
|
|
Icelandic phone number. Seven digits with an optional hyphen or space after
|
|
|
|
the first three digits.
|
|
|
|
"""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
kwargs['min_length'], kwargs['max_length'] = 7,8
|
|
|
|
super(ISPhoneNumberField, self).__init__(r'^\d{3}(-| )?\d{4}$', *args, **kwargs)
|
|
|
|
|
|
|
|
def clean(self, value):
|
|
|
|
value = super(ISPhoneNumberField, self).clean(value)
|
|
|
|
|
|
|
|
if value in EMPTY_VALUES:
|
|
|
|
return u''
|
|
|
|
|
|
|
|
return value.replace('-', '').replace(' ', '')
|
|
|
|
|
|
|
|
class ISPostalCodeSelect(Select):
|
|
|
|
"""
|
|
|
|
A Select widget that uses a list of Icelandic postal codes as its choices.
|
|
|
|
"""
|
|
|
|
def __init__(self, attrs=None):
|
|
|
|
from is_postalcodes import IS_POSTALCODES
|
|
|
|
super(ISPostalCodeSelect, self).__init__(attrs, choices=IS_POSTALCODES)
|
|
|
|
|