auth.txt 27 KB

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