validators.txt 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  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. An :class:`EmailValidator` ensures that a value looks like an email, and
  99. raises a :exc:`~django.core.exceptions.ValidationError` with
  100. :attr:`message` and :attr:`code` if it doesn't. Values longer than 320
  101. characters are always considered invalid.
  102. .. attribute:: message
  103. The error message used by
  104. :exc:`~django.core.exceptions.ValidationError` if validation fails.
  105. Defaults to ``"Enter a valid email address"``.
  106. .. attribute:: code
  107. The error code used by :exc:`~django.core.exceptions.ValidationError`
  108. if validation fails. Defaults to ``"invalid"``.
  109. .. attribute:: allowlist
  110. Allowlist of email domains. By default, a regular expression (the
  111. ``domain_regex`` attribute) is used to validate whatever appears after
  112. the ``@`` sign. However, if that string appears in the ``allowlist``,
  113. this validation is bypassed. If not provided, the default ``allowlist``
  114. is ``['localhost']``. Other domains that don't contain a dot won't pass
  115. validation, so you'd need to add them to the ``allowlist`` as
  116. necessary.
  117. .. versionchanged:: 3.2.20
  118. In older versions, values longer than 320 characters could be
  119. considered valid.
  120. ``URLValidator``
  121. ----------------
  122. .. class:: URLValidator(schemes=None, regex=None, message=None, code=None)
  123. A :class:`RegexValidator` subclass that ensures a value looks like a URL,
  124. and raises an error code of ``'invalid'`` if it doesn't. Values longer than
  125. :attr:`max_length` characters are always considered invalid.
  126. Loopback addresses and reserved IP spaces are considered valid. Literal
  127. IPv6 addresses (:rfc:`3986#section-3.2.2`) and Unicode domains are both
  128. supported.
  129. In addition to the optional arguments of its parent :class:`RegexValidator`
  130. class, ``URLValidator`` accepts an extra optional attribute:
  131. .. attribute:: schemes
  132. URL/URI scheme list to validate against. If not provided, the default
  133. list is ``['http', 'https', 'ftp', 'ftps']``. As a reference, the IANA
  134. website provides a full list of `valid URI schemes`_.
  135. .. _valid URI schemes: https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml
  136. .. warning::
  137. Values starting with ``file:///`` will not pass validation even
  138. when the ``file`` scheme is provided. Valid values must contain a
  139. host.
  140. .. attribute:: max_length
  141. .. versionadded:: 3.2.20
  142. The maximum length of values that could be considered valid. Defaults
  143. to 2048 characters.
  144. .. versionchanged:: 3.2.20
  145. In older versions, values longer than 2048 characters could be
  146. considered valid.
  147. ``validate_email``
  148. ------------------
  149. .. data:: validate_email
  150. An :class:`EmailValidator` instance without any customizations.
  151. ``validate_slug``
  152. -----------------
  153. .. data:: validate_slug
  154. A :class:`RegexValidator` instance that ensures a value consists of only
  155. letters, numbers, underscores or hyphens.
  156. ``validate_unicode_slug``
  157. -------------------------
  158. .. data:: validate_unicode_slug
  159. A :class:`RegexValidator` instance that ensures a value consists of only
  160. Unicode letters, numbers, underscores, or hyphens.
  161. ``validate_ipv4_address``
  162. -------------------------
  163. .. data:: validate_ipv4_address
  164. A :class:`RegexValidator` instance that ensures a value looks like an IPv4
  165. address.
  166. ``validate_ipv6_address``
  167. -------------------------
  168. .. data:: validate_ipv6_address
  169. Uses ``django.utils.ipv6`` to check the validity of an IPv6 address.
  170. ``validate_ipv46_address``
  171. --------------------------
  172. .. data:: validate_ipv46_address
  173. Uses both ``validate_ipv4_address`` and ``validate_ipv6_address`` to
  174. ensure a value is either a valid IPv4 or IPv6 address.
  175. ``validate_comma_separated_integer_list``
  176. -----------------------------------------
  177. .. data:: validate_comma_separated_integer_list
  178. A :class:`RegexValidator` instance that ensures a value is a
  179. comma-separated list of integers.
  180. ``int_list_validator``
  181. ----------------------
  182. .. function:: int_list_validator(sep=',', message=None, code='invalid', allow_negative=False)
  183. Returns a :class:`RegexValidator` instance that ensures a string consists
  184. of integers separated by ``sep``. It allows negative integers when
  185. ``allow_negative`` is ``True``.
  186. ``MaxValueValidator``
  187. ---------------------
  188. .. class:: MaxValueValidator(limit_value, message=None)
  189. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  190. ``'max_value'`` if ``value`` is greater than ``limit_value``, which may be
  191. a callable.
  192. ``MinValueValidator``
  193. ---------------------
  194. .. class:: MinValueValidator(limit_value, message=None)
  195. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  196. ``'min_value'`` if ``value`` is less than ``limit_value``, which may be a
  197. callable.
  198. ``MaxLengthValidator``
  199. ----------------------
  200. .. class:: MaxLengthValidator(limit_value, message=None)
  201. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  202. ``'max_length'`` if the length of ``value`` is greater than
  203. ``limit_value``, which may be a callable.
  204. ``MinLengthValidator``
  205. ----------------------
  206. .. class:: MinLengthValidator(limit_value, message=None)
  207. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  208. ``'min_length'`` if the length of ``value`` is less than ``limit_value``,
  209. which may be a callable.
  210. ``DecimalValidator``
  211. --------------------
  212. .. class:: DecimalValidator(max_digits, decimal_places)
  213. Raises :exc:`~django.core.exceptions.ValidationError` with the following
  214. codes:
  215. - ``'max_digits'`` if the number of digits is larger than ``max_digits``.
  216. - ``'max_decimal_places'`` if the number of decimals is larger than
  217. ``decimal_places``.
  218. - ``'max_whole_digits'`` if the number of whole digits is larger than
  219. the difference between ``max_digits`` and ``decimal_places``.
  220. ``FileExtensionValidator``
  221. --------------------------
  222. .. class:: FileExtensionValidator(allowed_extensions, message, code)
  223. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  224. ``'invalid_extension'`` if the extension of ``value.name`` (``value`` is
  225. a :class:`~django.core.files.File`) isn't found in ``allowed_extensions``.
  226. The extension is compared case-insensitively with ``allowed_extensions``.
  227. .. warning::
  228. Don't rely on validation of the file extension to determine a file's
  229. type. Files can be renamed to have any extension no matter what data
  230. they contain.
  231. ``validate_image_file_extension``
  232. ---------------------------------
  233. .. data:: validate_image_file_extension
  234. Uses Pillow to ensure that ``value.name`` (``value`` is a
  235. :class:`~django.core.files.File`) has `a valid image extension
  236. <https://pillow.readthedocs.io/en/latest/handbook/image-file-formats.html>`_.
  237. ``ProhibitNullCharactersValidator``
  238. -----------------------------------
  239. .. class:: ProhibitNullCharactersValidator(message=None, code=None)
  240. Raises a :exc:`~django.core.exceptions.ValidationError` if ``str(value)``
  241. contains one or more null characters (``'\x00'``).
  242. :param message: If not ``None``, overrides :attr:`.message`.
  243. :param code: If not ``None``, overrides :attr:`code`.
  244. .. attribute:: message
  245. The error message used by
  246. :exc:`~django.core.exceptions.ValidationError` if validation fails.
  247. Defaults to ``"Null characters are not allowed."``.
  248. .. attribute:: code
  249. The error code used by :exc:`~django.core.exceptions.ValidationError`
  250. if validation fails. Defaults to ``"null_characters_not_allowed"``.
  251. ``StepValueValidator``
  252. ----------------------
  253. .. class:: StepValueValidator(limit_value, message=None, offset=None)
  254. Raises a :exc:`~django.core.exceptions.ValidationError` with a code of
  255. ``'step_size'`` if ``value`` is not an integral multiple of
  256. ``limit_value``, which can be a float, integer or decimal value or a
  257. callable. When ``offset`` is set, the validation occurs against
  258. ``limit_value`` plus ``offset``. For example, for
  259. ``StepValueValidator(3, offset=1.4)`` valid values include ``1.4``,
  260. ``4.4``, ``7.4``, ``10.4``, and so on.
  261. .. versionchanged:: 5.0
  262. The ``offset`` argument was added.