validators.txt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. ==========
  2. Validators
  3. ==========
  4. .. module:: django.core.validators
  5. :synopsis: Validation utilities and base classes
  6. Writing validators
  7. ==================
  8. A validator is a callable that takes a value and raises a
  9. :exc:`~django.core.exceptions.ValidationError` if it doesn't meet some
  10. criteria. Validators can be useful for reusing validation logic between
  11. different types of fields.
  12. For example, here's a validator that only allows even numbers::
  13. from django.core.exceptions import ValidationError
  14. from django.utils.translation import gettext_lazy as _
  15. def validate_even(value):
  16. if value % 2 != 0:
  17. raise ValidationError(
  18. _('%(value)s is not an even number'),
  19. params={'value': value},
  20. )
  21. You can add this to a model field via the field's :attr:`~django.db.models.Field.validators`
  22. argument::
  23. from django.db import models
  24. class MyModel(models.Model):
  25. even_field = models.IntegerField(validators=[validate_even])
  26. Because values are converted to Python before validators are run, you can even
  27. use the same validator with forms::
  28. from django import forms
  29. class MyForm(forms.Form):
  30. even_field = forms.IntegerField(validators=[validate_even])
  31. You can also use a class with a ``__call__()`` method for more complex or
  32. configurable validators. :class:`RegexValidator`, for example, uses this
  33. technique. If a class-based validator is used in the
  34. :attr:`~django.db.models.Field.validators` model field option, you should make
  35. sure it is :ref:`serializable by the migration framework
  36. <migration-serializing>` by adding :ref:`deconstruct()
  37. <custom-deconstruct-method>` and ``__eq__()`` methods.
  38. How validators are run
  39. ======================
  40. See the :doc:`form validation </ref/forms/validation>` for more information on
  41. how validators are run in forms, and :ref:`Validating objects
  42. <validating-objects>` for how they're run in models. Note that validators will
  43. not be run automatically when you save a model, but if you are using a
  44. :class:`~django.forms.ModelForm`, it will run your validators on any fields
  45. that are included in your form. See the
  46. :doc:`ModelForm documentation </topics/forms/modelforms>` for information on
  47. how model validation interacts with forms.
  48. Built-in validators
  49. ===================
  50. The :mod:`django.core.validators` module contains a collection of callable
  51. validators for use with model and form fields. They're used internally but
  52. are available for use with your own fields, too. They can be used in addition
  53. to, or in lieu of custom ``field.clean()`` methods.
  54. ``RegexValidator``
  55. ------------------
  56. .. class:: RegexValidator(regex=None, message=None, code=None, inverse_match=None, flags=0)
  57. :param regex: If not ``None``, overrides :attr:`regex`. Can be a regular
  58. expression string or a pre-compiled regular expression.
  59. :param message: If not ``None``, overrides :attr:`.message`.
  60. :param code: If not ``None``, overrides :attr:`code`.
  61. :param inverse_match: If not ``None``, overrides :attr:`inverse_match`.
  62. :param flags: If not ``None``, overrides :attr:`flags`. In that case,
  63. :attr:`regex` must be a regular expression string, or
  64. :exc:`TypeError` is raised.
  65. A :class:`RegexValidator` searches the provided ``value`` for a given
  66. regular expression with :func:`re.search`. By default, raises a
  67. :exc:`~django.core.exceptions.ValidationError` with :attr:`message` and
  68. :attr:`code` if a match **is not** found. Its behavior can be inverted by
  69. setting :attr:`inverse_match` to ``True``, in which case the
  70. :exc:`~django.core.exceptions.ValidationError` is raised when a match
  71. **is** found.
  72. .. attribute:: regex
  73. The regular expression pattern to search for within the provided
  74. ``value``, using :func:`re.search`. This may be a string or a
  75. pre-compiled regular expression created with :func:`re.compile`.
  76. Defaults to the empty string, which will be found in every possible
  77. ``value``.
  78. .. attribute:: message
  79. The error message used by
  80. :exc:`~django.core.exceptions.ValidationError` if validation fails.
  81. Defaults to ``"Enter a valid value"``.
  82. .. attribute:: code
  83. The error code used by :exc:`~django.core.exceptions.ValidationError`
  84. if validation fails. Defaults to ``"invalid"``.
  85. .. attribute:: inverse_match
  86. The match mode for :attr:`regex`. Defaults to ``False``.
  87. .. attribute:: flags
  88. The :ref:`regex flags <python:contents-of-module-re>` used when
  89. compiling the regular expression string :attr:`regex`. If :attr:`regex`
  90. is a pre-compiled regular expression, and :attr:`flags` is overridden,
  91. :exc:`TypeError` is raised. Defaults to ``0``.
  92. ``EmailValidator``
  93. ------------------
  94. .. class:: EmailValidator(message=None, code=None, allowlist=None)
  95. :param message: If not ``None``, overrides :attr:`.message`.
  96. :param code: If not ``None``, overrides :attr:`code`.
  97. :param allowlist: If not ``None``, overrides :attr:`allowlist`.
  98. .. attribute:: message
  99. The error message used by
  100. :exc:`~django.core.exceptions.ValidationError` if validation fails.
  101. Defaults to ``"Enter a valid email address"``.
  102. .. attribute:: code
  103. The error code used by :exc:`~django.core.exceptions.ValidationError`
  104. if validation fails. Defaults to ``"invalid"``.
  105. .. attribute:: allowlist
  106. Allowlist of email domains. By default, a regular expression (the
  107. ``domain_regex`` attribute) is used to validate whatever appears after
  108. the ``@`` sign. However, if that string appears in the ``allowlist``,
  109. this validation is bypassed. If not provided, the default ``allowlist``
  110. is ``['localhost']``. Other domains that don't contain a dot won't pass
  111. validation, so you'd need to add them to the ``allowlist`` as
  112. necessary.
  113. ``URLValidator``
  114. ----------------
  115. .. class:: URLValidator(schemes=None, regex=None, message=None, code=None)
  116. A :class:`RegexValidator` subclass that ensures a value looks like a URL,
  117. and raises an error code of ``'invalid'`` if it doesn't.
  118. Loopback addresses and reserved IP spaces are considered valid. Literal
  119. IPv6 addresses (:rfc:`3986#section-3.2.2`) and Unicode domains are both
  120. supported.
  121. In addition to the optional arguments of its parent :class:`RegexValidator`
  122. class, ``URLValidator`` accepts an extra optional attribute:
  123. .. attribute:: schemes
  124. URL/URI scheme list to validate against. If not provided, the default
  125. list is ``['http', 'https', 'ftp', 'ftps']``. As a reference, the IANA
  126. website provides a full list of `valid URI schemes`_.
  127. .. _valid URI schemes: https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml
  128. ``validate_email``
  129. ------------------
  130. .. data:: validate_email
  131. An :class:`EmailValidator` instance without any customizations.
  132. ``validate_slug``
  133. -----------------
  134. .. data:: validate_slug
  135. A :class:`RegexValidator` instance that ensures a value consists of only
  136. letters, numbers, underscores or hyphens.
  137. ``validate_unicode_slug``
  138. -------------------------
  139. .. data:: validate_unicode_slug
  140. A :class:`RegexValidator` instance that ensures a value consists of only
  141. Unicode letters, numbers, underscores, or hyphens.
  142. ``validate_ipv4_address``
  143. -------------------------
  144. .. data:: validate_ipv4_address
  145. A :class:`RegexValidator` instance that ensures a value looks like an IPv4
  146. address.
  147. ``validate_ipv6_address``
  148. -------------------------
  149. .. data:: validate_ipv6_address
  150. Uses ``django.utils.ipv6`` to check the validity of an IPv6 address.
  151. ``validate_ipv46_address``
  152. --------------------------
  153. .. data:: validate_ipv46_address
  154. Uses both ``validate_ipv4_address`` and ``validate_ipv6_address`` to
  155. ensure a value is either a valid IPv4 or IPv6 address.
  156. ``validate_comma_separated_integer_list``
  157. -----------------------------------------
  158. .. data:: validate_comma_separated_integer_list
  159. A :class:`RegexValidator` instance that ensures a value is a
  160. comma-separated list of integers.
  161. ``int_list_validator``
  162. ----------------------
  163. .. function:: int_list_validator(sep=',', message=None, code='invalid', allow_negative=False)
  164. Returns a :class:`RegexValidator` instance that ensures a string consists
  165. of integers separated by ``sep``. It allows negative integers when
  166. ``allow_negative`` is ``True``.
  167. ``MaxValueValidator``
  168. ---------------------
  169. .. class:: MaxValueValidator(limit_value, message=None)
  170. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  171. ``'max_value'`` if ``value`` is greater than ``limit_value``, which may be
  172. a callable.
  173. ``MinValueValidator``
  174. ---------------------
  175. .. class:: MinValueValidator(limit_value, message=None)
  176. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  177. ``'min_value'`` if ``value`` is less than ``limit_value``, which may be a
  178. callable.
  179. ``MaxLengthValidator``
  180. ----------------------
  181. .. class:: MaxLengthValidator(limit_value, message=None)
  182. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  183. ``'max_length'`` if the length of ``value`` is greater than
  184. ``limit_value``, which may be a callable.
  185. ``MinLengthValidator``
  186. ----------------------
  187. .. class:: MinLengthValidator(limit_value, message=None)
  188. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  189. ``'min_length'`` if the length of ``value`` is less than ``limit_value``,
  190. which may be a callable.
  191. ``DecimalValidator``
  192. --------------------
  193. .. class:: DecimalValidator(max_digits, decimal_places)
  194. Raises :exc:`~django.core.exceptions.ValidationError` with the following
  195. codes:
  196. - ``'max_digits'`` if the number of digits is larger than ``max_digits``.
  197. - ``'max_decimal_places'`` if the number of decimals is larger than
  198. ``decimal_places``.
  199. - ``'max_whole_digits'`` if the number of whole digits is larger than
  200. the difference between ``max_digits`` and ``decimal_places``.
  201. ``FileExtensionValidator``
  202. --------------------------
  203. .. class:: FileExtensionValidator(allowed_extensions, message, code)
  204. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  205. ``'invalid_extension'`` if the extension of ``value.name`` (``value`` is
  206. a :class:`~django.core.files.File`) isn't found in ``allowed_extensions``.
  207. The extension is compared case-insensitively with ``allowed_extensions``.
  208. .. warning::
  209. Don't rely on validation of the file extension to determine a file's
  210. type. Files can be renamed to have any extension no matter what data
  211. they contain.
  212. ``validate_image_file_extension``
  213. ---------------------------------
  214. .. data:: validate_image_file_extension
  215. Uses Pillow to ensure that ``value.name`` (``value`` is a
  216. :class:`~django.core.files.File`) has `a valid image extension
  217. <https://pillow.readthedocs.io/en/latest/handbook/image-file-formats.html>`_.
  218. ``ProhibitNullCharactersValidator``
  219. -----------------------------------
  220. .. class:: ProhibitNullCharactersValidator(message=None, code=None)
  221. Raises a :exc:`~django.core.exceptions.ValidationError` if ``str(value)``
  222. contains one or more nulls characters (``'\x00'``).
  223. :param message: If not ``None``, overrides :attr:`.message`.
  224. :param code: If not ``None``, overrides :attr:`code`.
  225. .. attribute:: message
  226. The error message used by
  227. :exc:`~django.core.exceptions.ValidationError` if validation fails.
  228. Defaults to ``"Null characters are not allowed."``.
  229. .. attribute:: code
  230. The error code used by :exc:`~django.core.exceptions.ValidationError`
  231. if validation fails. Defaults to ``"null_characters_not_allowed"``.