2010-01-05 14:18:41 +08:00
|
|
|
==========
|
|
|
|
Validators
|
|
|
|
==========
|
|
|
|
|
2010-07-06 00:51:29 +08:00
|
|
|
.. module:: django.core.validators
|
|
|
|
:synopsis: Validation utilities and base classes
|
2010-01-05 14:18:41 +08:00
|
|
|
|
|
|
|
Writing validators
|
|
|
|
==================
|
|
|
|
|
2010-01-10 02:18:25 +08:00
|
|
|
A validator is a callable that takes a value and raises a
|
2010-10-24 06:06:01 +08:00
|
|
|
:exc:`~django.core.exceptions.ValidationError` if it doesn't meet some
|
2022-03-11 16:11:42 +08:00
|
|
|
criteria. Validators can be useful for reusing validation logic between
|
2010-10-24 06:06:01 +08:00
|
|
|
different types of fields.
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2010-01-10 02:18:25 +08:00
|
|
|
For example, here's a validator that only allows even numbers::
|
2010-01-05 14:18:41 +08:00
|
|
|
|
|
|
|
from django.core.exceptions import ValidationError
|
2017-01-27 03:58:33 +08:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2010-05-09 12:26:09 +08:00
|
|
|
|
2023-03-01 03:53:28 +08:00
|
|
|
|
2010-01-05 14:18:41 +08:00
|
|
|
def validate_even(value):
|
|
|
|
if value % 2 != 0:
|
2016-02-17 12:17:37 +08:00
|
|
|
raise ValidationError(
|
|
|
|
_("%(value)s is not an even number"),
|
|
|
|
params={"value": value},
|
|
|
|
)
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
You can add this to a model field via the field's :attr:`~django.db.models.Field.validators`
|
2010-01-05 14:18:41 +08:00
|
|
|
argument::
|
|
|
|
|
|
|
|
from django.db import models
|
|
|
|
|
2023-03-01 03:53:28 +08:00
|
|
|
|
2010-01-05 14:18:41 +08:00
|
|
|
class MyModel(models.Model):
|
|
|
|
even_field = models.IntegerField(validators=[validate_even])
|
|
|
|
|
2010-01-10 02:18:25 +08:00
|
|
|
Because values are converted to Python before validators are run, you can even
|
2010-01-05 14:18:41 +08:00
|
|
|
use the same validator with forms::
|
|
|
|
|
|
|
|
from django import forms
|
|
|
|
|
2023-03-01 03:53:28 +08:00
|
|
|
|
2010-01-05 14:18:41 +08:00
|
|
|
class MyForm(forms.Form):
|
|
|
|
even_field = forms.IntegerField(validators=[validate_even])
|
|
|
|
|
2014-09-25 01:08:45 +08:00
|
|
|
You can also use a class with a ``__call__()`` method for more complex or
|
|
|
|
configurable validators. :class:`RegexValidator`, for example, uses this
|
|
|
|
technique. If a class-based validator is used in the
|
|
|
|
:attr:`~django.db.models.Field.validators` model field option, you should make
|
|
|
|
sure it is :ref:`serializable by the migration framework
|
|
|
|
<migration-serializing>` by adding :ref:`deconstruct()
|
|
|
|
<custom-deconstruct-method>` and ``__eq__()`` methods.
|
|
|
|
|
2010-01-05 14:18:41 +08:00
|
|
|
How validators are run
|
|
|
|
======================
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`form validation </ref/forms/validation>` for more information on
|
2010-01-12 22:58:34 +08:00
|
|
|
how validators are run in forms, and :ref:`Validating objects
|
|
|
|
<validating-objects>` for how they're run in models. Note that validators will
|
|
|
|
not be run automatically when you save a model, but if you are using a
|
2010-10-24 06:06:01 +08:00
|
|
|
:class:`~django.forms.ModelForm`, it will run your validators on any fields
|
|
|
|
that are included in your form. See the
|
|
|
|
:doc:`ModelForm documentation </topics/forms/modelforms>` for information on
|
|
|
|
how model validation interacts with forms.
|
2010-01-05 14:18:41 +08:00
|
|
|
|
|
|
|
Built-in validators
|
|
|
|
===================
|
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
The :mod:`django.core.validators` module contains a collection of callable
|
|
|
|
validators for use with model and form fields. They're used internally but
|
|
|
|
are available for use with your own fields, too. They can be used in addition
|
|
|
|
to, or in lieu of custom ``field.clean()`` methods.
|
2010-01-05 14:18:41 +08:00
|
|
|
|
|
|
|
``RegexValidator``
|
|
|
|
------------------
|
2015-03-26 06:32:22 +08:00
|
|
|
|
2015-07-27 20:35:21 +08:00
|
|
|
.. class:: RegexValidator(regex=None, message=None, code=None, inverse_match=None, flags=0)
|
2011-06-10 07:51:03 +08:00
|
|
|
|
|
|
|
:param regex: If not ``None``, overrides :attr:`regex`. Can be a regular
|
|
|
|
expression string or a pre-compiled regular expression.
|
|
|
|
:param message: If not ``None``, overrides :attr:`.message`.
|
|
|
|
:param code: If not ``None``, overrides :attr:`code`.
|
2013-07-22 08:27:56 +08:00
|
|
|
:param inverse_match: If not ``None``, overrides :attr:`inverse_match`.
|
2014-03-13 19:23:12 +08:00
|
|
|
:param flags: If not ``None``, overrides :attr:`flags`. In that case,
|
|
|
|
:attr:`regex` must be a regular expression string, or
|
2014-04-26 22:00:15 +08:00
|
|
|
:exc:`TypeError` is raised.
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2020-06-21 00:33:57 +08:00
|
|
|
A :class:`RegexValidator` searches the provided ``value`` for a given
|
|
|
|
regular expression with :func:`re.search`. By default, raises a
|
|
|
|
:exc:`~django.core.exceptions.ValidationError` with :attr:`message` and
|
|
|
|
:attr:`code` if a match **is not** found. Its behavior can be inverted by
|
|
|
|
setting :attr:`inverse_match` to ``True``, in which case the
|
|
|
|
:exc:`~django.core.exceptions.ValidationError` is raised when a match
|
|
|
|
**is** found.
|
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
.. attribute:: regex
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2017-03-22 00:27:42 +08:00
|
|
|
The regular expression pattern to search for within the provided
|
2020-06-21 00:33:57 +08:00
|
|
|
``value``, using :func:`re.search`. This may be a string or a
|
|
|
|
pre-compiled regular expression created with :func:`re.compile`.
|
|
|
|
Defaults to the empty string, which will be found in every possible
|
|
|
|
``value``.
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
.. attribute:: message
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2011-06-10 07:51:03 +08:00
|
|
|
The error message used by
|
|
|
|
:exc:`~django.core.exceptions.ValidationError` if validation fails.
|
|
|
|
Defaults to ``"Enter a valid value"``.
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
.. attribute:: code
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
The error code used by :exc:`~django.core.exceptions.ValidationError`
|
2011-06-10 07:51:03 +08:00
|
|
|
if validation fails. Defaults to ``"invalid"``.
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2013-07-22 08:27:56 +08:00
|
|
|
.. attribute:: inverse_match
|
|
|
|
|
|
|
|
The match mode for :attr:`regex`. Defaults to ``False``.
|
|
|
|
|
2014-03-13 19:23:12 +08:00
|
|
|
.. attribute:: flags
|
|
|
|
|
2020-06-21 00:33:57 +08:00
|
|
|
The :ref:`regex flags <python:contents-of-module-re>` used when
|
|
|
|
compiling the regular expression string :attr:`regex`. If :attr:`regex`
|
|
|
|
is a pre-compiled regular expression, and :attr:`flags` is overridden,
|
|
|
|
:exc:`TypeError` is raised. Defaults to ``0``.
|
2014-03-13 19:23:12 +08:00
|
|
|
|
2014-08-13 22:59:58 +08:00
|
|
|
``EmailValidator``
|
|
|
|
------------------
|
|
|
|
|
2020-06-17 14:35:09 +08:00
|
|
|
.. class:: EmailValidator(message=None, code=None, allowlist=None)
|
2014-08-13 22:59:58 +08:00
|
|
|
|
|
|
|
:param message: If not ``None``, overrides :attr:`.message`.
|
|
|
|
:param code: If not ``None``, overrides :attr:`code`.
|
2020-06-17 14:35:09 +08:00
|
|
|
:param allowlist: If not ``None``, overrides :attr:`allowlist`.
|
2014-08-13 22:59:58 +08:00
|
|
|
|
2023-06-14 18:23:06 +08:00
|
|
|
An :class:`EmailValidator` ensures that a value looks like an email, and
|
|
|
|
raises a :exc:`~django.core.exceptions.ValidationError` with
|
|
|
|
:attr:`message` and :attr:`code` if it doesn't. Values longer than 320
|
|
|
|
characters are always considered invalid.
|
|
|
|
|
2014-08-13 22:59:58 +08:00
|
|
|
.. attribute:: message
|
|
|
|
|
|
|
|
The error message used by
|
|
|
|
:exc:`~django.core.exceptions.ValidationError` if validation fails.
|
|
|
|
Defaults to ``"Enter a valid email address"``.
|
|
|
|
|
|
|
|
.. attribute:: code
|
|
|
|
|
|
|
|
The error code used by :exc:`~django.core.exceptions.ValidationError`
|
|
|
|
if validation fails. Defaults to ``"invalid"``.
|
|
|
|
|
2020-06-17 14:35:09 +08:00
|
|
|
.. attribute:: allowlist
|
2014-08-13 22:59:58 +08:00
|
|
|
|
2020-06-17 14:35:09 +08:00
|
|
|
Allowlist of email domains. By default, a regular expression (the
|
|
|
|
``domain_regex`` attribute) is used to validate whatever appears after
|
|
|
|
the ``@`` sign. However, if that string appears in the ``allowlist``,
|
|
|
|
this validation is bypassed. If not provided, the default ``allowlist``
|
|
|
|
is ``['localhost']``. Other domains that don't contain a dot won't pass
|
|
|
|
validation, so you'd need to add them to the ``allowlist`` as
|
|
|
|
necessary.
|
|
|
|
|
2010-01-05 14:18:41 +08:00
|
|
|
``URLValidator``
|
|
|
|
----------------
|
2015-03-26 06:32:22 +08:00
|
|
|
|
2015-07-27 20:35:21 +08:00
|
|
|
.. class:: URLValidator(schemes=None, regex=None, message=None, code=None)
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2020-06-21 00:33:57 +08:00
|
|
|
A :class:`RegexValidator` subclass that ensures a value looks like a URL,
|
2023-06-14 18:23:06 +08:00
|
|
|
and raises an error code of ``'invalid'`` if it doesn't. Values longer than
|
|
|
|
:attr:`max_length` characters are always considered invalid.
|
2014-11-04 01:01:31 +08:00
|
|
|
|
|
|
|
Loopback addresses and reserved IP spaces are considered valid. Literal
|
2020-04-18 22:46:05 +08:00
|
|
|
IPv6 addresses (:rfc:`3986#section-3.2.2`) and Unicode domains are both
|
2019-11-23 20:42:57 +08:00
|
|
|
supported.
|
2014-11-04 01:01:31 +08:00
|
|
|
|
|
|
|
In addition to the optional arguments of its parent :class:`RegexValidator`
|
|
|
|
class, ``URLValidator`` accepts an extra optional attribute:
|
2013-12-21 07:15:39 +08:00
|
|
|
|
|
|
|
.. attribute:: schemes
|
|
|
|
|
|
|
|
URL/URI scheme list to validate against. If not provided, the default
|
|
|
|
list is ``['http', 'https', 'ftp', 'ftps']``. As a reference, the IANA
|
2015-11-15 20:05:15 +08:00
|
|
|
website provides a full list of `valid URI schemes`_.
|
2013-12-21 07:15:39 +08:00
|
|
|
|
|
|
|
.. _valid URI schemes: https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml
|
|
|
|
|
2023-06-14 18:23:06 +08:00
|
|
|
.. attribute:: max_length
|
|
|
|
|
|
|
|
The maximum length of values that could be considered valid. Defaults
|
|
|
|
to 2048 characters.
|
|
|
|
|
2010-01-05 14:18:41 +08:00
|
|
|
``validate_email``
|
|
|
|
------------------
|
2015-03-26 06:32:22 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
.. data:: validate_email
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2014-08-13 22:59:58 +08:00
|
|
|
An :class:`EmailValidator` instance without any customizations.
|
2010-01-05 14:18:41 +08:00
|
|
|
|
|
|
|
``validate_slug``
|
|
|
|
-----------------
|
2015-03-26 06:32:22 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
.. data:: validate_slug
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
A :class:`RegexValidator` instance that ensures a value consists of only
|
|
|
|
letters, numbers, underscores or hyphens.
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2015-04-16 06:28:49 +08:00
|
|
|
``validate_unicode_slug``
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
.. data:: validate_unicode_slug
|
|
|
|
|
|
|
|
A :class:`RegexValidator` instance that ensures a value consists of only
|
|
|
|
Unicode letters, numbers, underscores, or hyphens.
|
|
|
|
|
2010-01-05 14:18:41 +08:00
|
|
|
``validate_ipv4_address``
|
|
|
|
-------------------------
|
2015-03-26 06:32:22 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
.. data:: validate_ipv4_address
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
A :class:`RegexValidator` instance that ensures a value looks like an IPv4
|
|
|
|
address.
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2011-06-11 21:48:24 +08:00
|
|
|
``validate_ipv6_address``
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
.. data:: validate_ipv6_address
|
|
|
|
|
2013-01-01 21:12:42 +08:00
|
|
|
Uses ``django.utils.ipv6`` to check the validity of an IPv6 address.
|
2011-06-11 21:48:24 +08:00
|
|
|
|
|
|
|
``validate_ipv46_address``
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
.. data:: validate_ipv46_address
|
|
|
|
|
|
|
|
Uses both ``validate_ipv4_address`` and ``validate_ipv6_address`` to
|
|
|
|
ensure a value is either a valid IPv4 or IPv6 address.
|
|
|
|
|
2010-01-05 14:18:41 +08:00
|
|
|
``validate_comma_separated_integer_list``
|
|
|
|
-----------------------------------------
|
2015-03-26 06:32:22 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
.. data:: validate_comma_separated_integer_list
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
A :class:`RegexValidator` instance that ensures a value is a
|
|
|
|
comma-separated list of integers.
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2015-02-14 22:20:43 +08:00
|
|
|
``int_list_validator``
|
|
|
|
----------------------
|
|
|
|
|
2016-02-16 06:10:00 +08:00
|
|
|
.. function:: int_list_validator(sep=',', message=None, code='invalid', allow_negative=False)
|
2015-02-14 22:20:43 +08:00
|
|
|
|
2016-02-16 06:10:00 +08:00
|
|
|
Returns a :class:`RegexValidator` instance that ensures a string consists
|
|
|
|
of integers separated by ``sep``. It allows negative integers when
|
|
|
|
``allow_negative`` is ``True``.
|
|
|
|
|
2010-01-05 14:18:41 +08:00
|
|
|
``MaxValueValidator``
|
|
|
|
---------------------
|
2015-03-26 06:32:22 +08:00
|
|
|
|
2018-07-01 06:58:35 +08:00
|
|
|
.. class:: MaxValueValidator(limit_value, message=None)
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
|
2018-10-17 22:52:19 +08:00
|
|
|
``'max_value'`` if ``value`` is greater than ``limit_value``, which may be
|
|
|
|
a callable.
|
|
|
|
|
2010-01-05 14:18:41 +08:00
|
|
|
``MinValueValidator``
|
|
|
|
---------------------
|
2015-03-26 06:32:22 +08:00
|
|
|
|
2018-07-01 06:58:35 +08:00
|
|
|
.. class:: MinValueValidator(limit_value, message=None)
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
|
2018-10-17 22:52:19 +08:00
|
|
|
``'min_value'`` if ``value`` is less than ``limit_value``, which may be a
|
|
|
|
callable.
|
|
|
|
|
2010-01-05 14:18:41 +08:00
|
|
|
``MaxLengthValidator``
|
|
|
|
----------------------
|
2015-03-26 06:32:22 +08:00
|
|
|
|
2018-07-01 06:58:35 +08:00
|
|
|
.. class:: MaxLengthValidator(limit_value, message=None)
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
|
2018-10-17 22:52:19 +08:00
|
|
|
``'max_length'`` if the length of ``value`` is greater than
|
|
|
|
``limit_value``, which may be a callable.
|
|
|
|
|
2010-01-05 14:18:41 +08:00
|
|
|
``MinLengthValidator``
|
|
|
|
----------------------
|
2015-03-26 06:32:22 +08:00
|
|
|
|
2018-07-01 06:58:35 +08:00
|
|
|
.. class:: MinLengthValidator(limit_value, message=None)
|
2010-01-05 14:18:41 +08:00
|
|
|
|
2010-10-24 06:06:01 +08:00
|
|
|
Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
|
2018-10-17 22:52:19 +08:00
|
|
|
``'min_length'`` if the length of ``value`` is less than ``limit_value``,
|
|
|
|
which may be a callable.
|
|
|
|
|
2015-04-15 06:11:12 +08:00
|
|
|
``DecimalValidator``
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
.. class:: DecimalValidator(max_digits, decimal_places)
|
|
|
|
|
|
|
|
Raises :exc:`~django.core.exceptions.ValidationError` with the following
|
|
|
|
codes:
|
|
|
|
|
|
|
|
- ``'max_digits'`` if the number of digits is larger than ``max_digits``.
|
|
|
|
- ``'max_decimal_places'`` if the number of decimals is larger than
|
|
|
|
``decimal_places``.
|
|
|
|
- ``'max_whole_digits'`` if the number of whole digits is larger than
|
|
|
|
the difference between ``max_digits`` and ``decimal_places``.
|
2016-03-27 04:09:08 +08:00
|
|
|
|
|
|
|
``FileExtensionValidator``
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
.. class:: FileExtensionValidator(allowed_extensions, message, code)
|
|
|
|
|
|
|
|
Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
|
2017-06-08 04:46:52 +08:00
|
|
|
``'invalid_extension'`` if the extension of ``value.name`` (``value`` is
|
|
|
|
a :class:`~django.core.files.File`) isn't found in ``allowed_extensions``.
|
2017-06-06 16:57:08 +08:00
|
|
|
The extension is compared case-insensitively with ``allowed_extensions``.
|
2016-03-27 04:09:08 +08:00
|
|
|
|
|
|
|
.. warning::
|
|
|
|
|
|
|
|
Don't rely on validation of the file extension to determine a file's
|
|
|
|
type. Files can be renamed to have any extension no matter what data
|
|
|
|
they contain.
|
|
|
|
|
|
|
|
``validate_image_file_extension``
|
|
|
|
---------------------------------
|
|
|
|
|
|
|
|
.. data:: validate_image_file_extension
|
|
|
|
|
2017-06-08 04:46:52 +08:00
|
|
|
Uses Pillow to ensure that ``value.name`` (``value`` is a
|
|
|
|
:class:`~django.core.files.File`) has `a valid image extension
|
2017-05-20 23:51:21 +08:00
|
|
|
<https://pillow.readthedocs.io/en/latest/handbook/image-file-formats.html>`_.
|
2017-06-23 23:06:08 +08:00
|
|
|
|
|
|
|
``ProhibitNullCharactersValidator``
|
|
|
|
-----------------------------------
|
|
|
|
|
|
|
|
.. class:: ProhibitNullCharactersValidator(message=None, code=None)
|
|
|
|
|
|
|
|
Raises a :exc:`~django.core.exceptions.ValidationError` if ``str(value)``
|
2023-01-15 02:38:37 +08:00
|
|
|
contains one or more null characters (``'\x00'``).
|
2017-06-23 23:06:08 +08:00
|
|
|
|
|
|
|
:param message: If not ``None``, overrides :attr:`.message`.
|
|
|
|
:param code: If not ``None``, overrides :attr:`code`.
|
|
|
|
|
|
|
|
.. attribute:: message
|
|
|
|
|
|
|
|
The error message used by
|
|
|
|
:exc:`~django.core.exceptions.ValidationError` if validation fails.
|
|
|
|
Defaults to ``"Null characters are not allowed."``.
|
|
|
|
|
|
|
|
.. attribute:: code
|
|
|
|
|
|
|
|
The error code used by :exc:`~django.core.exceptions.ValidationError`
|
|
|
|
if validation fails. Defaults to ``"null_characters_not_allowed"``.
|
2022-05-12 17:30:47 +08:00
|
|
|
|
|
|
|
``StepValueValidator``
|
|
|
|
----------------------
|
|
|
|
|
2023-04-09 04:10:17 +08:00
|
|
|
.. class:: StepValueValidator(limit_value, message=None, offset=None)
|
2022-05-12 17:30:47 +08:00
|
|
|
|
|
|
|
Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
|
|
|
|
``'step_size'`` if ``value`` is not an integral multiple of
|
|
|
|
``limit_value``, which can be a float, integer or decimal value or a
|
2023-04-09 04:10:17 +08:00
|
|
|
callable. When ``offset`` is set, the validation occurs against
|
|
|
|
``limit_value`` plus ``offset``. For example, for
|
|
|
|
``StepValueValidator(3, offset=1.4)`` valid values include ``1.4``,
|
|
|
|
``4.4``, ``7.4``, ``10.4``, and so on.
|
|
|
|
|
|
|
|
.. versionchanged:: 5.0
|
|
|
|
|
|
|
|
The ``offset`` argument was added.
|