auth.txt 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730
  1. =======================
  2. ``django.contrib.auth``
  3. =======================
  4. This document provides API reference material for the components of Django's
  5. authentication system. For more details on the usage of these components or
  6. how to customize authentication and authorization see the :doc:`authentication
  7. topic guide </topics/auth/index>`.
  8. .. currentmodule:: django.contrib.auth
  9. ``User`` model
  10. ==============
  11. .. class:: models.User
  12. Fields
  13. ------
  14. .. class:: models.User
  15. :noindex:
  16. :class:`~django.contrib.auth.models.User` objects have the following
  17. fields:
  18. .. attribute:: username
  19. Required. 150 characters or fewer. Usernames may contain alphanumeric,
  20. ``_``, ``@``, ``+``, ``.`` and ``-`` characters.
  21. The ``max_length`` should be sufficient for many use cases. If you need
  22. a longer length, please use a :ref:`custom user model
  23. <specifying-custom-user-model>`. If you use MySQL with the ``utf8mb4``
  24. encoding (recommended for proper Unicode support), specify at most
  25. ``max_length=191`` because MySQL can only create unique indexes with
  26. 191 characters in that case by default.
  27. .. attribute:: first_name
  28. Optional (:attr:`blank=True <django.db.models.Field.blank>`). 150
  29. characters or fewer.
  30. .. attribute:: last_name
  31. Optional (:attr:`blank=True <django.db.models.Field.blank>`). 150
  32. characters or fewer.
  33. .. attribute:: email
  34. Optional (:attr:`blank=True <django.db.models.Field.blank>`). Email
  35. address.
  36. .. attribute:: password
  37. Required. A hash of, and metadata about, the password. (Django doesn't
  38. store the raw password.) Raw passwords can be arbitrarily long and can
  39. contain any character. See the :doc:`password documentation
  40. </topics/auth/passwords>`.
  41. .. attribute:: groups
  42. Many-to-many relationship to :class:`~django.contrib.auth.models.Group`
  43. .. attribute:: user_permissions
  44. Many-to-many relationship to :class:`~django.contrib.auth.models.Permission`
  45. .. attribute:: is_staff
  46. Boolean. Allows this user to access the admin site.
  47. .. attribute:: is_active
  48. Boolean. Marks this user account as active. We recommend that you set
  49. this flag to ``False`` instead of deleting accounts. That way, if your
  50. applications have any foreign keys to users, the foreign keys won't
  51. break.
  52. This doesn't necessarily control whether or not the user can log in.
  53. Authentication backends aren't required to check for the ``is_active``
  54. flag but the default backend
  55. (:class:`~django.contrib.auth.backends.ModelBackend`) and the
  56. :class:`~django.contrib.auth.backends.RemoteUserBackend` do. You can
  57. use :class:`~django.contrib.auth.backends.AllowAllUsersModelBackend`
  58. or :class:`~django.contrib.auth.backends.AllowAllUsersRemoteUserBackend`
  59. if you want to allow inactive users to login. In this case, you'll also
  60. want to customize the
  61. :class:`~django.contrib.auth.forms.AuthenticationForm` used by the
  62. :class:`~django.contrib.auth.views.LoginView` as it rejects inactive
  63. users. Be aware that the permission-checking methods such as
  64. :meth:`~django.contrib.auth.models.User.has_perm` and the
  65. authentication in the Django admin all return ``False`` for inactive
  66. users.
  67. .. attribute:: is_superuser
  68. Boolean. Treats this user as having all permissions without assigning
  69. any permission to it in particular.
  70. .. attribute:: last_login
  71. A datetime of the user's last login.
  72. .. attribute:: date_joined
  73. The date/time when the account was created.
  74. Attributes
  75. ----------
  76. .. class:: models.User
  77. :noindex:
  78. .. attribute:: is_authenticated
  79. Read-only attribute which is always ``True`` (as opposed to
  80. ``AnonymousUser.is_authenticated`` which is always ``False``). This is
  81. a way to tell if the user has been authenticated. This does not imply
  82. any permissions and doesn't check if the user is active or has a valid
  83. session. Even though normally you will check this attribute on
  84. ``request.user`` to find out whether it has been populated by the
  85. :class:`~django.contrib.auth.middleware.AuthenticationMiddleware`
  86. (representing the currently logged-in user), you should know this
  87. attribute is ``True`` for any :class:`~models.User` instance.
  88. .. attribute:: is_anonymous
  89. Read-only attribute which is always ``False``. This is a way of
  90. differentiating :class:`~models.User` and :class:`~models.AnonymousUser`
  91. objects. Generally, you should prefer using
  92. :attr:`~django.contrib.auth.models.User.is_authenticated` to this
  93. attribute.
  94. Methods
  95. -------
  96. .. class:: models.User
  97. :noindex:
  98. .. method:: get_username()
  99. Returns the username for the user. Since the ``User`` model can be
  100. swapped out, you should use this method instead of referencing the
  101. username attribute directly.
  102. .. method:: get_full_name()
  103. Returns the :attr:`~django.contrib.auth.models.User.first_name` plus
  104. the :attr:`~django.contrib.auth.models.User.last_name`, with a space in
  105. between.
  106. .. method:: get_short_name()
  107. Returns the :attr:`~django.contrib.auth.models.User.first_name`.
  108. .. method:: set_password(raw_password)
  109. Sets the user's password to the given raw string, taking care of the
  110. password hashing. Doesn't save the
  111. :class:`~django.contrib.auth.models.User` object.
  112. When the ``raw_password`` is ``None``, the password will be set to an
  113. unusable password, as if
  114. :meth:`~django.contrib.auth.models.User.set_unusable_password()`
  115. were used.
  116. .. method:: check_password(raw_password)
  117. .. method:: acheck_password(raw_password)
  118. *Asynchronous version*: ``acheck_password()``
  119. Returns ``True`` if the given raw string is the correct password for
  120. the user. (This takes care of the password hashing in making the
  121. comparison.)
  122. .. versionchanged:: 5.0
  123. ``acheck_password()`` method was added.
  124. .. method:: set_unusable_password()
  125. Marks the user as having no password set. This isn't the same as
  126. having a blank string for a password.
  127. :meth:`~django.contrib.auth.models.User.check_password()` for this user
  128. will never return ``True``. Doesn't save the
  129. :class:`~django.contrib.auth.models.User` object.
  130. You may need this if authentication for your application takes place
  131. against an existing external source such as an LDAP directory.
  132. .. admonition:: Password reset restriction
  133. Users having an unusable password will not able to request a
  134. password reset email via
  135. :class:`~django.contrib.auth.views.PasswordResetView`.
  136. .. method:: has_usable_password()
  137. Returns ``False`` if
  138. :meth:`~django.contrib.auth.models.User.set_unusable_password()` has
  139. been called for this user.
  140. .. method:: get_user_permissions(obj=None)
  141. Returns a set of permission strings that the user has directly.
  142. If ``obj`` is passed in, only returns the user permissions for this
  143. specific object.
  144. .. method:: get_group_permissions(obj=None)
  145. Returns a set of permission strings that the user has, through their
  146. groups.
  147. If ``obj`` is passed in, only returns the group permissions for
  148. this specific object.
  149. .. method:: get_all_permissions(obj=None)
  150. Returns a set of permission strings that the user has, both through
  151. group and user permissions.
  152. If ``obj`` is passed in, only returns the permissions for this
  153. specific object.
  154. .. method:: has_perm(perm, obj=None)
  155. Returns ``True`` if the user has the specified permission, where perm
  156. is in the format ``"<app label>.<permission codename>"``. (see
  157. documentation on :ref:`permissions <topic-authorization>`). If the user is
  158. inactive, this method will always return ``False``. For an active
  159. superuser, this method will always return ``True``.
  160. If ``obj`` is passed in, this method won't check for a permission for
  161. the model, but for this specific object.
  162. .. method:: has_perms(perm_list, obj=None)
  163. Returns ``True`` if the user has each of the specified permissions,
  164. where each perm is in the format
  165. ``"<app label>.<permission codename>"``. If the user is inactive,
  166. this method will always return ``False``. For an active superuser, this
  167. method will always return ``True``.
  168. If ``obj`` is passed in, this method won't check for permissions for
  169. the model, but for the specific object.
  170. .. method:: has_module_perms(package_name)
  171. Returns ``True`` if the user has any permissions in the given package
  172. (the Django app label). If the user is inactive, this method will
  173. always return ``False``. For an active superuser, this method will
  174. always return ``True``.
  175. .. method:: email_user(subject, message, from_email=None, **kwargs)
  176. Sends an email to the user. If ``from_email`` is ``None``, Django uses
  177. the :setting:`DEFAULT_FROM_EMAIL`. Any ``**kwargs`` are passed to the
  178. underlying :meth:`~django.core.mail.send_mail()` call.
  179. Manager methods
  180. ---------------
  181. .. class:: models.UserManager
  182. The :class:`~django.contrib.auth.models.User` model has a custom manager
  183. that has the following helper methods (in addition to the methods provided
  184. by :class:`~django.contrib.auth.models.BaseUserManager`):
  185. .. method:: create_user(username, email=None, password=None, **extra_fields)
  186. Creates, saves and returns a :class:`~django.contrib.auth.models.User`.
  187. The :attr:`~django.contrib.auth.models.User.username` and
  188. :attr:`~django.contrib.auth.models.User.password` are set as given. The
  189. domain portion of :attr:`~django.contrib.auth.models.User.email` is
  190. automatically converted to lowercase, and the returned
  191. :class:`~django.contrib.auth.models.User` object will have
  192. :attr:`~django.contrib.auth.models.User.is_active` set to ``True``.
  193. If no password is provided,
  194. :meth:`~django.contrib.auth.models.User.set_unusable_password()` will
  195. be called.
  196. The ``extra_fields`` keyword arguments are passed through to the
  197. :class:`~django.contrib.auth.models.User`’s ``__init__`` method to
  198. allow setting arbitrary fields on a :ref:`custom user model
  199. <auth-custom-user>`.
  200. See :ref:`Creating users <topics-auth-creating-users>` for example usage.
  201. .. method:: create_superuser(username, email=None, password=None, **extra_fields)
  202. Same as :meth:`create_user`, but sets :attr:`~models.User.is_staff` and
  203. :attr:`~models.User.is_superuser` to ``True``.
  204. .. method:: with_perm(perm, is_active=True, include_superusers=True, backend=None, obj=None)
  205. Returns users that have the given permission ``perm`` either in the
  206. ``"<app label>.<permission codename>"`` format or as a
  207. :class:`~django.contrib.auth.models.Permission` instance. Returns an
  208. empty queryset if no users who have the ``perm`` found.
  209. If ``is_active`` is ``True`` (default), returns only active users, or
  210. if ``False``, returns only inactive users. Use ``None`` to return all
  211. users irrespective of active state.
  212. If ``include_superusers`` is ``True`` (default), the result will
  213. include superusers.
  214. If ``backend`` is passed in and it's defined in
  215. :setting:`AUTHENTICATION_BACKENDS`, then this method will use it.
  216. Otherwise, it will use the ``backend`` in
  217. :setting:`AUTHENTICATION_BACKENDS`, if there is only one, or raise an
  218. exception.
  219. ``AnonymousUser`` object
  220. ========================
  221. .. class:: models.AnonymousUser
  222. :class:`django.contrib.auth.models.AnonymousUser` is a class that
  223. implements the :class:`django.contrib.auth.models.User` interface, with
  224. these differences:
  225. * :ref:`id <automatic-primary-key-fields>` is always ``None``.
  226. * :attr:`~django.contrib.auth.models.User.username` is always the empty
  227. string.
  228. * :meth:`~django.contrib.auth.models.User.get_username()` always returns
  229. the empty string.
  230. * :attr:`~django.contrib.auth.models.User.is_anonymous` is ``True``
  231. instead of ``False``.
  232. * :attr:`~django.contrib.auth.models.User.is_authenticated` is
  233. ``False`` instead of ``True``.
  234. * :attr:`~django.contrib.auth.models.User.is_staff` and
  235. :attr:`~django.contrib.auth.models.User.is_superuser` are always
  236. ``False``.
  237. * :attr:`~django.contrib.auth.models.User.is_active` is always ``False``.
  238. * :attr:`~django.contrib.auth.models.User.groups` and
  239. :attr:`~django.contrib.auth.models.User.user_permissions` are always
  240. empty.
  241. * :meth:`~django.contrib.auth.models.User.set_password()`,
  242. :meth:`~django.contrib.auth.models.User.check_password()`,
  243. :meth:`~django.db.models.Model.save` and
  244. :meth:`~django.db.models.Model.delete()` raise :exc:`NotImplementedError`.
  245. In practice, you probably won't need to use
  246. :class:`~django.contrib.auth.models.AnonymousUser` objects on your own, but
  247. they're used by web requests, as explained in the next section.
  248. ``Permission`` model
  249. ====================
  250. .. class:: models.Permission
  251. Fields
  252. ------
  253. :class:`~django.contrib.auth.models.Permission` objects have the following
  254. fields:
  255. .. class:: models.Permission
  256. :noindex:
  257. .. attribute:: name
  258. Required. 255 characters or fewer. Example: ``'Can vote'``.
  259. .. attribute:: content_type
  260. Required. A reference to the ``django_content_type`` database table,
  261. which contains a record for each installed model.
  262. .. attribute:: codename
  263. Required. 100 characters or fewer. Example: ``'can_vote'``.
  264. Methods
  265. -------
  266. :class:`~django.contrib.auth.models.Permission` objects have the standard
  267. data-access methods like any other :doc:`Django model </ref/models/instances>`.
  268. ``Group`` model
  269. ===============
  270. .. class:: models.Group
  271. Fields
  272. ------
  273. :class:`~django.contrib.auth.models.Group` objects have the following fields:
  274. .. class:: models.Group
  275. :noindex:
  276. .. attribute:: name
  277. Required. 150 characters or fewer. Any characters are permitted.
  278. Example: ``'Awesome Users'``.
  279. .. attribute:: permissions
  280. Many-to-many field to :class:`~django.contrib.auth.models.Permission`::
  281. group.permissions.set([permission_list])
  282. group.permissions.add(permission, permission, ...)
  283. group.permissions.remove(permission, permission, ...)
  284. group.permissions.clear()
  285. Validators
  286. ==========
  287. .. class:: validators.ASCIIUsernameValidator
  288. A field validator allowing only ASCII letters and numbers, in addition to
  289. ``@``, ``.``, ``+``, ``-``, and ``_``.
  290. .. class:: validators.UnicodeUsernameValidator
  291. A field validator allowing Unicode characters, in addition to ``@``, ``.``,
  292. ``+``, ``-``, and ``_``. The default validator for ``User.username``.
  293. .. _topics-auth-signals:
  294. Login and logout signals
  295. ========================
  296. .. module:: django.contrib.auth.signals
  297. The auth framework uses the following :doc:`signals </topics/signals>` that
  298. can be used for notification when a user logs in or out.
  299. .. data:: user_logged_in
  300. Sent when a user logs in successfully.
  301. Arguments sent with this signal:
  302. ``sender``
  303. The class of the user that just logged in.
  304. ``request``
  305. The current :class:`~django.http.HttpRequest` instance.
  306. ``user``
  307. The user instance that just logged in.
  308. .. data:: user_logged_out
  309. Sent when the logout method is called.
  310. ``sender``
  311. As above: the class of the user that just logged out or ``None``
  312. if the user was not authenticated.
  313. ``request``
  314. The current :class:`~django.http.HttpRequest` instance.
  315. ``user``
  316. The user instance that just logged out or ``None`` if the
  317. user was not authenticated.
  318. .. data:: user_login_failed
  319. Sent when the user failed to login successfully
  320. ``sender``
  321. The name of the module used for authentication.
  322. ``credentials``
  323. A dictionary of keyword arguments containing the user credentials that were
  324. passed to :func:`~django.contrib.auth.authenticate()` or your own custom
  325. authentication backend. Credentials matching a set of 'sensitive' patterns,
  326. (including password) will not be sent in the clear as part of the signal.
  327. ``request``
  328. The :class:`~django.http.HttpRequest` object, if one was provided to
  329. :func:`~django.contrib.auth.authenticate`.
  330. .. _authentication-backends-reference:
  331. Authentication backends
  332. =======================
  333. .. module:: django.contrib.auth.backends
  334. :synopsis: Django's built-in authentication backend classes.
  335. This section details the authentication backends that come with Django. For
  336. information on how to use them and how to write your own authentication
  337. backends, see the :ref:`Other authentication sources section
  338. <authentication-backends>` of the :doc:`User authentication guide
  339. </topics/auth/index>`.
  340. Available authentication backends
  341. ---------------------------------
  342. The following backends are available in :mod:`django.contrib.auth.backends`:
  343. .. class:: BaseBackend
  344. A base class that provides default implementations for all required
  345. methods. By default, it will reject any user and provide no permissions.
  346. .. method:: get_user_permissions(user_obj, obj=None)
  347. Returns an empty set.
  348. .. method:: get_group_permissions(user_obj, obj=None)
  349. Returns an empty set.
  350. .. method:: get_all_permissions(user_obj, obj=None)
  351. Uses :meth:`get_user_permissions` and :meth:`get_group_permissions` to
  352. get the set of permission strings the ``user_obj`` has.
  353. .. method:: has_perm(user_obj, perm, obj=None)
  354. Uses :meth:`get_all_permissions` to check if ``user_obj`` has the
  355. permission string ``perm``.
  356. .. class:: ModelBackend
  357. This is the default authentication backend used by Django. It
  358. authenticates using credentials consisting of a user identifier and
  359. password. For Django's default user model, the user identifier is the
  360. username, for custom user models it is the field specified by
  361. USERNAME_FIELD (see :doc:`Customizing Users and authentication
  362. </topics/auth/customizing>`).
  363. It also handles the default permissions model as defined for
  364. :class:`~django.contrib.auth.models.User` and
  365. :class:`~django.contrib.auth.models.PermissionsMixin`.
  366. :meth:`has_perm`, :meth:`get_all_permissions`, :meth:`get_user_permissions`,
  367. and :meth:`get_group_permissions` allow an object to be passed as a
  368. parameter for object-specific permissions, but this backend does not
  369. implement them other than returning an empty set of permissions if
  370. ``obj is not None``.
  371. :meth:`with_perm` also allows an object to be passed as a parameter, but
  372. unlike others methods it returns an empty queryset if ``obj is not None``.
  373. .. method:: authenticate(request, username=None, password=None, **kwargs)
  374. Tries to authenticate ``username`` with ``password`` by calling
  375. :meth:`User.check_password
  376. <django.contrib.auth.models.User.check_password>`. If no ``username``
  377. is provided, it tries to fetch a username from ``kwargs`` using the
  378. key :attr:`CustomUser.USERNAME_FIELD
  379. <django.contrib.auth.models.CustomUser.USERNAME_FIELD>`. Returns an
  380. authenticated user or ``None``.
  381. ``request`` is an :class:`~django.http.HttpRequest` and may be ``None``
  382. if it wasn't provided to :func:`~django.contrib.auth.authenticate`
  383. (which passes it on to the backend).
  384. .. method:: get_user_permissions(user_obj, obj=None)
  385. Returns the set of permission strings the ``user_obj`` has from their
  386. own user permissions. Returns an empty set if
  387. :attr:`~django.contrib.auth.models.AbstractBaseUser.is_anonymous` or
  388. :attr:`~django.contrib.auth.models.CustomUser.is_active` is ``False``.
  389. .. method:: get_group_permissions(user_obj, obj=None)
  390. Returns the set of permission strings the ``user_obj`` has from the
  391. permissions of the groups they belong. Returns an empty set if
  392. :attr:`~django.contrib.auth.models.AbstractBaseUser.is_anonymous` or
  393. :attr:`~django.contrib.auth.models.CustomUser.is_active` is ``False``.
  394. .. method:: get_all_permissions(user_obj, obj=None)
  395. Returns the set of permission strings the ``user_obj`` has, including both
  396. user permissions and group permissions. Returns an empty set if
  397. :attr:`~django.contrib.auth.models.AbstractBaseUser.is_anonymous` or
  398. :attr:`~django.contrib.auth.models.CustomUser.is_active` is ``False``.
  399. .. method:: has_perm(user_obj, perm, obj=None)
  400. Uses :meth:`get_all_permissions` to check if ``user_obj`` has the
  401. permission string ``perm``. Returns ``False`` if the user is not
  402. :attr:`~django.contrib.auth.models.CustomUser.is_active`.
  403. .. method:: has_module_perms(user_obj, app_label)
  404. Returns whether the ``user_obj`` has any permissions on the app
  405. ``app_label``.
  406. .. method:: user_can_authenticate()
  407. Returns whether the user is allowed to authenticate. To match the
  408. behavior of :class:`~django.contrib.auth.forms.AuthenticationForm`
  409. which :meth:`prohibits inactive users from logging in
  410. <django.contrib.auth.forms.AuthenticationForm.confirm_login_allowed>`,
  411. this method returns ``False`` for users with :attr:`is_active=False
  412. <django.contrib.auth.models.User.is_active>`. Custom user models that
  413. don't have an :attr:`~django.contrib.auth.models.CustomUser.is_active`
  414. field are allowed.
  415. .. method:: with_perm(perm, is_active=True, include_superusers=True, obj=None)
  416. Returns all active users who have the permission ``perm`` either in
  417. the form of ``"<app label>.<permission codename>"`` or a
  418. :class:`~django.contrib.auth.models.Permission` instance. Returns an
  419. empty queryset if no users who have the ``perm`` found.
  420. If ``is_active`` is ``True`` (default), returns only active users, or
  421. if ``False``, returns only inactive users. Use ``None`` to return all
  422. users irrespective of active state.
  423. If ``include_superusers`` is ``True`` (default), the result will
  424. include superusers.
  425. .. class:: AllowAllUsersModelBackend
  426. Same as :class:`ModelBackend` except that it doesn't reject inactive users
  427. because :meth:`~ModelBackend.user_can_authenticate` always returns ``True``.
  428. When using this backend, you'll likely want to customize the
  429. :class:`~django.contrib.auth.forms.AuthenticationForm` used by the
  430. :class:`~django.contrib.auth.views.LoginView` by overriding the
  431. :meth:`~django.contrib.auth.forms.AuthenticationForm.confirm_login_allowed`
  432. method as it rejects inactive users.
  433. .. class:: RemoteUserBackend
  434. Use this backend to take advantage of external-to-Django-handled
  435. authentication. It authenticates using usernames passed in
  436. :attr:`request.META['REMOTE_USER'] <django.http.HttpRequest.META>`. See
  437. the :doc:`Authenticating against REMOTE_USER </howto/auth-remote-user>`
  438. documentation.
  439. If you need more control, you can create your own authentication backend
  440. that inherits from this class and override these attributes or methods:
  441. .. attribute:: create_unknown_user
  442. ``True`` or ``False``. Determines whether or not a user object is
  443. created if not already in the database Defaults to ``True``.
  444. .. method:: authenticate(request, remote_user)
  445. The username passed as ``remote_user`` is considered trusted. This
  446. method returns the user object with the given username, creating a new
  447. user object if :attr:`~RemoteUserBackend.create_unknown_user` is
  448. ``True``.
  449. Returns ``None`` if :attr:`~RemoteUserBackend.create_unknown_user` is
  450. ``False`` and a ``User`` object with the given username is not found in
  451. the database.
  452. ``request`` is an :class:`~django.http.HttpRequest` and may be ``None``
  453. if it wasn't provided to :func:`~django.contrib.auth.authenticate`
  454. (which passes it on to the backend).
  455. .. method:: clean_username(username)
  456. Performs any cleaning on the ``username`` (e.g. stripping LDAP DN
  457. information) prior to using it to get or create a user object. Returns
  458. the cleaned username.
  459. .. method:: configure_user(request, user, created=True)
  460. Configures the user on each authentication attempt. This method is
  461. called immediately after fetching or creating the user being
  462. authenticated, and can be used to perform custom setup actions, such as
  463. setting the user's groups based on attributes in an LDAP directory.
  464. Returns the user object.
  465. The setup can be performed either once when the user is created
  466. (``created`` is ``True``) or on existing users (``created`` is
  467. ``False``) as a way of synchronizing attributes between the remote and
  468. the local systems.
  469. ``request`` is an :class:`~django.http.HttpRequest` and may be ``None``
  470. if it wasn't provided to :func:`~django.contrib.auth.authenticate`
  471. (which passes it on to the backend).
  472. .. method:: user_can_authenticate()
  473. Returns whether the user is allowed to authenticate. This method
  474. returns ``False`` for users with :attr:`is_active=False
  475. <django.contrib.auth.models.User.is_active>`. Custom user models that
  476. don't have an :attr:`~django.contrib.auth.models.CustomUser.is_active`
  477. field are allowed.
  478. .. class:: AllowAllUsersRemoteUserBackend
  479. Same as :class:`RemoteUserBackend` except that it doesn't reject inactive
  480. users because :attr:`~RemoteUserBackend.user_can_authenticate` always
  481. returns ``True``.
  482. Utility functions
  483. =================
  484. .. currentmodule:: django.contrib.auth
  485. .. function:: get_user(request)
  486. .. function:: aget_user(request)
  487. *Asynchronous version*: ``aget_user()``
  488. Returns the user model instance associated with the given ``request``’s
  489. session.
  490. It checks if the authentication backend stored in the session is present in
  491. :setting:`AUTHENTICATION_BACKENDS`. If so, it uses the backend's
  492. ``get_user()`` method to retrieve the user model instance and then verifies
  493. the session by calling the user model's
  494. :meth:`~django.contrib.auth.models.AbstractBaseUser.get_session_auth_hash`
  495. method. If the verification fails and :setting:`SECRET_KEY_FALLBACKS` are
  496. provided, it verifies the session against each fallback key using
  497. :meth:`~django.contrib.auth.models.AbstractBaseUser.\
  498. get_session_auth_fallback_hash`.
  499. Returns an instance of :class:`~django.contrib.auth.models.AnonymousUser`
  500. if the authentication backend stored in the session is no longer in
  501. :setting:`AUTHENTICATION_BACKENDS`, if a user isn't returned by the
  502. backend's ``get_user()`` method, or if the session auth hash doesn't
  503. validate.
  504. .. versionchanged:: 4.1.8
  505. Fallback verification with :setting:`SECRET_KEY_FALLBACKS` was added.
  506. .. versionchanged:: 5.0
  507. ``aget_user()`` function was added.