2007-04-04 14:45:29 +08:00
|
|
|
"""
|
|
|
|
DE-specific Form helpers
|
|
|
|
"""
|
|
|
|
|
2010-01-05 11:56:19 +08:00
|
|
|
from django.core.validators import EMPTY_VALUES
|
2008-07-19 09:22:26 +08:00
|
|
|
from django.forms import ValidationError
|
2010-01-05 11:56:19 +08:00
|
|
|
from django.forms.fields import Field, RegexField, Select
|
2008-06-18 21:10:05 +08:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2007-04-04 14:45:29 +08:00
|
|
|
import re
|
|
|
|
|
2007-04-04 19:40:08 +08:00
|
|
|
id_re = re.compile(r"^(?P<residence>\d{10})(?P<origin>\w{1,3})[-\ ]?(?P<birthday>\d{7})[-\ ]?(?P<validity>\d{7})[-\ ]?(?P<checksum>\d{1})$")
|
|
|
|
|
2007-04-04 14:45:29 +08:00
|
|
|
class DEZipCodeField(RegexField):
|
2007-12-17 16:05:27 +08:00
|
|
|
default_error_messages = {
|
2008-06-18 21:10:05 +08:00
|
|
|
'invalid': _('Enter a zip code in the format XXXXX.'),
|
2007-12-17 16:05:27 +08:00
|
|
|
}
|
2007-04-04 14:45:29 +08:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(DEZipCodeField, self).__init__(r'^\d{5}$',
|
2007-12-17 16:05:27 +08:00
|
|
|
max_length=None, min_length=None, *args, **kwargs)
|
2007-04-04 14:45:29 +08:00
|
|
|
|
|
|
|
class DEStateSelect(Select):
|
|
|
|
"""
|
|
|
|
A Select widget that uses a list of DE states as its choices.
|
|
|
|
"""
|
|
|
|
def __init__(self, attrs=None):
|
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 de_states import STATE_CHOICES
|
2007-04-04 14:45:29 +08:00
|
|
|
super(DEStateSelect, self).__init__(attrs, choices=STATE_CHOICES)
|
2007-04-04 19:40:08 +08:00
|
|
|
|
|
|
|
class DEIdentityCardNumberField(Field):
|
|
|
|
"""
|
|
|
|
A German identity card number.
|
|
|
|
|
|
|
|
Checks the following rules to determine whether the number is valid:
|
|
|
|
|
|
|
|
* Conforms to the XXXXXXXXXXX-XXXXXXX-XXXXXXX-X format.
|
|
|
|
* No group consists entirely of zeroes.
|
|
|
|
* Included checksums match calculated checksums
|
|
|
|
|
|
|
|
Algorithm is documented at http://de.wikipedia.org/wiki/Personalausweis
|
|
|
|
"""
|
2007-12-17 16:05:27 +08:00
|
|
|
default_error_messages = {
|
2008-06-18 21:10:05 +08:00
|
|
|
'invalid': _('Enter a valid German identity card number in XXXXXXXXXXX-XXXXXXX-XXXXXXX-X format.'),
|
2007-12-17 16:05:27 +08:00
|
|
|
}
|
|
|
|
|
2007-04-04 19:40:08 +08:00
|
|
|
def has_valid_checksum(self, number):
|
|
|
|
given_number, given_checksum = number[:-1], number[-1]
|
|
|
|
calculated_checksum = 0
|
|
|
|
fragment = ""
|
|
|
|
parameter = 7
|
|
|
|
|
|
|
|
for i in range(len(given_number)):
|
2007-04-06 12:24:06 +08:00
|
|
|
fragment = str(int(given_number[i]) * parameter)
|
|
|
|
if fragment.isalnum():
|
|
|
|
calculated_checksum += int(fragment[-1])
|
|
|
|
if parameter == 1:
|
|
|
|
parameter = 7
|
|
|
|
elif parameter == 3:
|
|
|
|
parameter = 1
|
|
|
|
elif parameter ==7:
|
|
|
|
parameter = 3
|
|
|
|
|
|
|
|
return str(calculated_checksum)[-1] == given_checksum
|
2007-04-04 19:40:08 +08:00
|
|
|
|
|
|
|
def clean(self, value):
|
|
|
|
super(DEIdentityCardNumberField, self).clean(value)
|
|
|
|
if value in EMPTY_VALUES:
|
|
|
|
return u''
|
|
|
|
match = re.match(id_re, value)
|
|
|
|
if not match:
|
2007-12-17 16:05:27 +08:00
|
|
|
raise ValidationError(self.error_messages['invalid'])
|
2007-04-04 19:40:08 +08:00
|
|
|
|
2007-04-06 12:24:06 +08:00
|
|
|
gd = match.groupdict()
|
|
|
|
residence, origin = gd['residence'], gd['origin']
|
|
|
|
birthday, validity, checksum = gd['birthday'], gd['validity'], gd['checksum']
|
2007-04-04 19:40:08 +08:00
|
|
|
|
2007-04-06 12:24:06 +08:00
|
|
|
if residence == '0000000000' or birthday == '0000000' or validity == '0000000':
|
2007-12-17 16:05:27 +08:00
|
|
|
raise ValidationError(self.error_messages['invalid'])
|
2007-04-04 19:40:08 +08:00
|
|
|
|
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
|
|
|
all_digits = u"%s%s%s%s" % (residence, birthday, validity, checksum)
|
2007-04-06 12:24:06 +08:00
|
|
|
if not self.has_valid_checksum(residence) or not self.has_valid_checksum(birthday) or \
|
|
|
|
not self.has_valid_checksum(validity) or not self.has_valid_checksum(all_digits):
|
2007-12-17 16:05:27 +08:00
|
|
|
raise ValidationError(self.error_messages['invalid'])
|
2007-04-04 19:40:08 +08:00
|
|
|
|
|
|
|
return u'%s%s-%s-%s-%s' % (residence, origin, birthday, validity, checksum)
|