# -*- coding: utf-8 -*-
import datetime
import re
import pytz
from flask import current_app
from wtforms.validators import ValidationError
from purchasing.data.flows import Flow
EMAIL_REGEX = re.compile(r'^.+@([^.@][^@]+)$', re.IGNORECASE)
US_PHONE_REGEX = re.compile(r'^(\d{3})-(\d{3})-(\d{4})$')
STATE_ABBREV = ('AL', 'AK', 'AZ', 'AR', 'CA', 'CO', 'CT', 'DE', 'FL', 'GA',
'HI', 'ID', 'IL', 'IN', 'IO', 'KS', 'KY', 'LA', 'ME', 'MD',
'MA', 'MI', 'MN', 'MS', 'MO', 'MT', 'NE', 'NV', 'NH', 'NJ',
'NM', 'NY', 'NC', 'ND', 'OH', 'OK', 'OR', 'PA', 'RI', 'SC',
'SD', 'TN', 'TX', 'UT', 'VT', 'VA', 'WA', 'WV', 'WI', 'WY')
[docs]def not_all_hidden(form, field):
'''Makes sure that every field isn't blank
'''
if not any([v for (k, v) in form.data.items() if k != field.name]):
raise ValidationError('You must update at least one field!')
[docs]def validate_multiple_emails(form, field):
'''Parses a semicolon-delimited list of emails, validating each
'''
if field.data:
for email in field.data.split(';'):
if email == '':
continue
elif not re.match(EMAIL_REGEX, email):
raise ValidationError('One of the supplied emails is invalid!')
[docs]def validate_different(form, field):
'''Ensures that all subfields have a different value
'''
if field.data:
if len(field.data) == len(set(field.data)):
if len(field.data) == 0 or (len(field.data) == 1 and field.data[0] == 'None'):
raise ValidationError('You must have at least one stage!')
else:
raise ValidationError('You cannot have duplicate stages!')
[docs]def validate_unique_name(form, field):
'''Ensure that the name isn't an existing flow name
'''
if field.data:
if Flow.query.filter(
Flow.flow_name == field.data,
Flow.id != int(form.data.get('id', 0))
).count():
raise ValidationError('A flow with that name already exists!')
def get_default():
return pytz.UTC.localize(
datetime.datetime.utcnow()
).astimezone(current_app.config['DISPLAY_TIMEZONE'])
[docs]def validate_integer(form, field):
'''Ensures that a passed value can be coerced to an integer
'''
if field.data:
try:
int(field.data)
except:
raise ValidationError('This must be an integer!')
[docs]def validate_date(form, field):
'''Ensures that a date occured after a form's started and before its maximum time
Note:
This validator is only meant to be used on forms that have
``started`` and ``maximum`` instance variables, like the
:py:class:`~purchasing.conductor.forms.CompleteForm`
'''
if field.data:
utc_data = current_app.config['DISPLAY_TIMEZONE'].localize(field.data).astimezone(pytz.UTC).replace(tzinfo=None)
if utc_data < form.started:
raise ValidationError('Invalid date (before step start)')
elif utc_data > form.maximum:
raise ValidationError("Invalid date (in future)")