Skip to main content

Helper for making form validators skippable

Project description

Motivation

While working on the EuroPython 2014 website we ran into a situation where we had a field validator that was rather expensive to evaluate.

Sadly, the validators-attribute on a model/form field is always evaluated as a whole (meaning each validator in that list is executed no matter if a previous one errored out already). So, we wanted to have a way to mark certain validators as not to be executed in case the field was being marked as invalid anyway.

We still wanted to use the field validator API simply because it keeps everything easily testible, though.

How to use

from django.db import models

from validatorchain import ValidatorChain

from .validators import a_cheap_validator
from .validators import another_cheap_validator
from .validators import an_expensive_validator


class SomeModel(models.Model):
    field = models.CharField(
        max_length=100,
        validators=ValidatorChain()
            .add(a_cheap_validator)
            .add(an_expensive_validator, skip_on_error=True)
            .add(another_cheap_validator)
        )

This way an_expensive_validator will not be executed if a_cheap_validator already raised an exception, while another_cheap_validator will be executed again.

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-validatorchain-0.1.tar.gz (2.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page