44 lines
1.5 KiB
Python
44 lines
1.5 KiB
Python
|
"""
|
||
|
Australian-specific Form helpers
|
||
|
"""
|
||
|
|
||
|
from django.newforms import ValidationError
|
||
|
from django.newforms.fields import Field, RegexField, Select, EMPTY_VALUES
|
||
|
from django.newforms.util import smart_unicode
|
||
|
from django.utils.translation import gettext
|
||
|
import re
|
||
|
|
||
|
PHONE_DIGITS_RE = re.compile(r'^(\d{10})$')
|
||
|
|
||
|
class AUPostCodeField(RegexField):
|
||
|
"""Australian post code field."""
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super(AUPostCodeField, self).__init__(r'^\d{4}$',
|
||
|
max_length=None, min_length=None,
|
||
|
error_message=gettext(u'Enter a 4 digit post code.'),
|
||
|
*args, **kwargs)
|
||
|
|
||
|
class AUPhoneNumberField(Field):
|
||
|
"""Australian phone number field."""
|
||
|
def clean(self, value):
|
||
|
"""Validate a phone number. Strips parentheses, whitespace and
|
||
|
hyphens.
|
||
|
"""
|
||
|
super(AUPhoneNumberField, self).clean(value)
|
||
|
if value in EMPTY_VALUES:
|
||
|
return u''
|
||
|
value = re.sub('(\(|\)|\s+|-)', '', smart_unicode(value))
|
||
|
phone_match = PHONE_DIGITS_RE.search(value)
|
||
|
if phone_match:
|
||
|
return u'%s' % phone_match.group(1)
|
||
|
raise ValidationError(u'Phone numbers must contain 10 digits.')
|
||
|
|
||
|
class AUStateSelect(Select):
|
||
|
"""
|
||
|
A Select widget that uses a list of Australian states/territories as its
|
||
|
choices.
|
||
|
"""
|
||
|
def __init__(self, attrs=None):
|
||
|
from au_states import STATE_CHOICES # relative import
|
||
|
super(AUStateSelect, self).__init__(attrs, choices=STATE_CHOICES)
|