2007-03-30 18:04:22 +08:00
|
|
|
"""
|
|
|
|
FI-specific Form helpers
|
|
|
|
"""
|
|
|
|
|
2007-03-30 18:18:15 +08:00
|
|
|
import re
|
2007-03-30 18:04:22 +08:00
|
|
|
from django.newforms import ValidationError
|
2007-03-30 18:18:15 +08:00
|
|
|
from django.newforms.fields import Field, RegexField, Select, EMPTY_VALUES
|
2007-03-30 18:04:22 +08:00
|
|
|
from django.utils.translation import gettext
|
|
|
|
|
|
|
|
class FIZipCodeField(RegexField):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(FIZipCodeField, self).__init__(r'^\d{5}$',
|
|
|
|
max_length=None, min_length=None,
|
|
|
|
error_message=gettext(u'Enter a zip code in the format XXXXX.'),
|
|
|
|
*args, **kwargs)
|
|
|
|
|
|
|
|
class FIMunicipalitySelect(Select):
|
|
|
|
"""
|
|
|
|
A Select widget that uses a list of Finnish municipalities as its choices.
|
|
|
|
"""
|
|
|
|
def __init__(self, attrs=None):
|
|
|
|
from fi_municipalities import MUNICIPALITY_CHOICES # relative import
|
|
|
|
super(FIMunicipalitySelect, self).__init__(attrs, choices=MUNICIPALITY_CHOICES)
|
2007-03-30 18:18:15 +08:00
|
|
|
|
|
|
|
class FISocialSecurityNumber(Field):
|
|
|
|
def clean(self, value):
|
|
|
|
super(FISocialSecurityNumber, self).clean(value)
|
|
|
|
if value in EMPTY_VALUES:
|
2007-04-09 10:38:07 +08:00
|
|
|
return u''
|
|
|
|
|
2007-03-30 18:18:15 +08:00
|
|
|
checkmarks = "0123456789ABCDEFHJKLMNPRSTUVWXY"
|
|
|
|
result = re.match(r"""^
|
|
|
|
(?P<date>([0-2]\d|3[01])
|
|
|
|
(0\d|1[012])
|
|
|
|
(\d{2}))
|
|
|
|
[A+-]
|
|
|
|
(?P<serial>(\d{3}))
|
2007-04-09 10:38:07 +08:00
|
|
|
(?P<checksum>[%s])$""" % checkmarks, value, re.VERBOSE | re.IGNORECASE)
|
2007-03-30 18:18:15 +08:00
|
|
|
if not result:
|
|
|
|
raise ValidationError(gettext(u'Enter a valid Finnish social security number.'))
|
2007-04-09 14:16:44 +08:00
|
|
|
gd = result.groupdict()
|
2007-04-09 10:38:07 +08:00
|
|
|
checksum = int(gd['date'] + gd['serial'])
|
|
|
|
if checkmarks[checksum % len(checkmarks)] == gd['checksum'].upper():
|
2007-03-30 18:18:15 +08:00
|
|
|
return u'%s' % value.upper()
|
|
|
|
raise ValidationError(gettext(u'Enter a valid Finnish social security number.'))
|