validators.txt 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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 re-using 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 ugettext_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. .. attribute:: regex
  66. The regular expression pattern to search for the provided ``value``,
  67. or a pre-compiled regular expression. By default, raises a
  68. :exc:`~django.core.exceptions.ValidationError` with :attr:`message`
  69. and :attr:`code` if a match is not found. That standard behavior can
  70. be reversed by setting :attr:`inverse_match` to ``True``, in which case
  71. the :exc:`~django.core.exceptions.ValidationError` is raised when a
  72. match **is** found. By default, matches any string (including an empty
  73. string).
  74. .. attribute:: message
  75. The error message used by
  76. :exc:`~django.core.exceptions.ValidationError` if validation fails.
  77. Defaults to ``"Enter a valid value"``.
  78. .. attribute:: code
  79. The error code used by :exc:`~django.core.exceptions.ValidationError`
  80. if validation fails. Defaults to ``"invalid"``.
  81. .. attribute:: inverse_match
  82. The match mode for :attr:`regex`. Defaults to ``False``.
  83. .. attribute:: flags
  84. The flags used when compiling the regular expression string
  85. :attr:`regex`. If :attr:`regex` is a pre-compiled regular expression,
  86. and :attr:`flags` is overridden, :exc:`TypeError` is raised. Defaults
  87. to ``0``.
  88. ``EmailValidator``
  89. ------------------
  90. .. class:: EmailValidator(message=None, code=None, whitelist=None)
  91. :param message: If not ``None``, overrides :attr:`.message`.
  92. :param code: If not ``None``, overrides :attr:`code`.
  93. :param whitelist: If not ``None``, overrides :attr:`whitelist`.
  94. .. attribute:: message
  95. The error message used by
  96. :exc:`~django.core.exceptions.ValidationError` if validation fails.
  97. Defaults to ``"Enter a valid email address"``.
  98. .. attribute:: code
  99. The error code used by :exc:`~django.core.exceptions.ValidationError`
  100. if validation fails. Defaults to ``"invalid"``.
  101. .. attribute:: whitelist
  102. Whitelist of email domains to allow. By default, a regular expression
  103. (the ``domain_regex`` attribute) is used to validate whatever appears
  104. after the @ sign. However, if that string appears in the whitelist, this
  105. validation is bypassed. If not provided, the default whitelist is
  106. ``['localhost']``. Other domains that don't contain a dot won't pass
  107. validation, so you'd need to whitelist them as necessary.
  108. ``URLValidator``
  109. ----------------
  110. .. class:: URLValidator(schemes=None, regex=None, message=None, code=None)
  111. A :class:`RegexValidator` that ensures a value looks like a URL, and raises
  112. an error code of ``'invalid'`` if it doesn't.
  113. Loopback addresses and reserved IP spaces are considered valid. Literal
  114. IPv6 addresses (:rfc:`2732`) and unicode domains are both supported.
  115. In addition to the optional arguments of its parent :class:`RegexValidator`
  116. class, ``URLValidator`` accepts an extra optional attribute:
  117. .. attribute:: schemes
  118. URL/URI scheme list to validate against. If not provided, the default
  119. list is ``['http', 'https', 'ftp', 'ftps']``. As a reference, the IANA
  120. website provides a full list of `valid URI schemes`_.
  121. .. _valid URI schemes: https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml
  122. ``validate_email``
  123. ------------------
  124. .. data:: validate_email
  125. An :class:`EmailValidator` instance without any customizations.
  126. ``validate_slug``
  127. -----------------
  128. .. data:: validate_slug
  129. A :class:`RegexValidator` instance that ensures a value consists of only
  130. letters, numbers, underscores or hyphens.
  131. ``validate_unicode_slug``
  132. -------------------------
  133. .. data:: validate_unicode_slug
  134. .. versionadded:: 1.9
  135. A :class:`RegexValidator` instance that ensures a value consists of only
  136. Unicode letters, numbers, underscores, or hyphens.
  137. ``validate_ipv4_address``
  138. -------------------------
  139. .. data:: validate_ipv4_address
  140. A :class:`RegexValidator` instance that ensures a value looks like an IPv4
  141. address.
  142. ``validate_ipv6_address``
  143. -------------------------
  144. .. data:: validate_ipv6_address
  145. Uses ``django.utils.ipv6`` to check the validity of an IPv6 address.
  146. ``validate_ipv46_address``
  147. --------------------------
  148. .. data:: validate_ipv46_address
  149. Uses both ``validate_ipv4_address`` and ``validate_ipv6_address`` to
  150. ensure a value is either a valid IPv4 or IPv6 address.
  151. ``validate_comma_separated_integer_list``
  152. -----------------------------------------
  153. .. data:: validate_comma_separated_integer_list
  154. A :class:`RegexValidator` instance that ensures a value is a
  155. comma-separated list of integers.
  156. ``int_list_validator``
  157. ----------------------
  158. .. function:: int_list_validator(sep=',', message=None, code='invalid')
  159. .. versionadded:: 1.9
  160. Returns a :class:`RegexValidator` instance that ensures a string
  161. consists of integers separated by ``sep``.
  162. ``MaxValueValidator``
  163. ---------------------
  164. .. class:: MaxValueValidator(max_value, message=None)
  165. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  166. ``'max_value'`` if ``value`` is greater than ``max_value``.
  167. ``MinValueValidator``
  168. ---------------------
  169. .. class:: MinValueValidator(min_value, message=None)
  170. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  171. ``'min_value'`` if ``value`` is less than ``min_value``.
  172. ``MaxLengthValidator``
  173. ----------------------
  174. .. class:: MaxLengthValidator(max_length, message=None)
  175. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  176. ``'max_length'`` if the length of ``value`` is greater than ``max_length``.
  177. ``MinLengthValidator``
  178. ----------------------
  179. .. class:: MinLengthValidator(min_length, message=None)
  180. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  181. ``'min_length'`` if the length of ``value`` is less than ``min_length``.
  182. ``DecimalValidator``
  183. --------------------
  184. .. class:: DecimalValidator(max_digits, decimal_places)
  185. .. versionadded:: 1.9
  186. Raises :exc:`~django.core.exceptions.ValidationError` with the following
  187. codes:
  188. - ``'max_digits'`` if the number of digits is larger than ``max_digits``.
  189. - ``'max_decimal_places'`` if the number of decimals is larger than
  190. ``decimal_places``.
  191. - ``'max_whole_digits'`` if the number of whole digits is larger than
  192. the difference between ``max_digits`` and ``decimal_places``.