default.txt 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695
  1. ======================================
  2. Using the Django authentication system
  3. ======================================
  4. .. currentmodule:: django.contrib.auth
  5. This document explains the usage of Django's authentication system in its
  6. default configuration. This configuration has evolved to serve the most common
  7. project needs, handling a reasonably wide range of tasks, and has a careful
  8. implementation of passwords and permissions. For projects where authentication
  9. needs differ from the default, Django supports extensive :doc:`extension and
  10. customization </topics/auth/customizing>` of authentication.
  11. Django authentication provides both authentication and authorization together
  12. and is generally referred to as the authentication system, as these features
  13. are somewhat coupled.
  14. .. _user-objects:
  15. ``User`` objects
  16. ================
  17. :class:`~django.contrib.auth.models.User` objects are the core of the
  18. authentication system. They typically represent the people interacting with
  19. your site and are used to enable things like restricting access, registering
  20. user profiles, associating content with creators etc. Only one class of user
  21. exists in Django's authentication framework, i.e., :attr:`'superusers'
  22. <django.contrib.auth.models.User.is_superuser>` or admin :attr:`'staff'
  23. <django.contrib.auth.models.User.is_staff>` users are just user objects with
  24. special attributes set, not different classes of user objects.
  25. The primary attributes of the default user are:
  26. * :attr:`~django.contrib.auth.models.User.username`
  27. * :attr:`~django.contrib.auth.models.User.password`
  28. * :attr:`~django.contrib.auth.models.User.email`
  29. * :attr:`~django.contrib.auth.models.User.first_name`
  30. * :attr:`~django.contrib.auth.models.User.last_name`
  31. See the :class:`full API documentation <django.contrib.auth.models.User>` for
  32. full reference, the documentation that follows is more task oriented.
  33. .. _topics-auth-creating-users:
  34. Creating users
  35. --------------
  36. The most direct way to create users is to use the included
  37. :meth:`~django.contrib.auth.models.UserManager.create_user` helper function::
  38. >>> from django.contrib.auth.models import User
  39. >>> user = User.objects.create_user('john', 'lennon@thebeatles.com', 'johnpassword')
  40. # At this point, user is a User object that has already been saved
  41. # to the database. You can continue to change its attributes
  42. # if you want to change other fields.
  43. >>> user.last_name = 'Lennon'
  44. >>> user.save()
  45. If you have the Django admin installed, you can also :ref:`create users
  46. interactively <auth-admin>`.
  47. .. _topics-auth-creating-superusers:
  48. Creating superusers
  49. -------------------
  50. Create superusers using the :djadmin:`createsuperuser` command::
  51. $ python manage.py createsuperuser --username=joe --email=joe@example.com
  52. You will be prompted for a password. After you enter one, the user will be
  53. created immediately. If you leave off the :option:`--username <createsuperuser
  54. --username>` or :option:`--email <createsuperuser --email>` options, it will
  55. prompt you for those values.
  56. Changing passwords
  57. ------------------
  58. Django does not store raw (clear text) passwords on the user model, but only
  59. a hash (see :doc:`documentation of how passwords are managed
  60. </topics/auth/passwords>` for full details). Because of this, do not attempt to
  61. manipulate the password attribute of the user directly. This is why a helper
  62. function is used when creating a user.
  63. To change a user's password, you have several options:
  64. :djadmin:`manage.py changepassword *username* <changepassword>` offers a method
  65. of changing a user's password from the command line. It prompts you to
  66. change the password of a given user which you must enter twice. If
  67. they both match, the new password will be changed immediately. If you
  68. do not supply a user, the command will attempt to change the password
  69. whose username matches the current system user.
  70. You can also change a password programmatically, using
  71. :meth:`~django.contrib.auth.models.User.set_password()`:
  72. .. code-block:: pycon
  73. >>> from django.contrib.auth.models import User
  74. >>> u = User.objects.get(username='john')
  75. >>> u.set_password('new password')
  76. >>> u.save()
  77. If you have the Django admin installed, you can also change user's passwords
  78. on the :ref:`authentication system's admin pages <auth-admin>`.
  79. Django also provides :ref:`views <built-in-auth-views>` and :ref:`forms
  80. <built-in-auth-forms>` that may be used to allow users to change their own
  81. passwords.
  82. Changing a user's password will log out all their sessions. See
  83. :ref:`session-invalidation-on-password-change` for details.
  84. Authenticating users
  85. --------------------
  86. .. function:: authenticate(request=None, \**credentials)
  87. Use :func:`~django.contrib.auth.authenticate()` to verify a set of
  88. credentials. It takes credentials as keyword arguments, ``username`` and
  89. ``password`` for the default case, checks them against each
  90. :ref:`authentication backend <authentication-backends>`, and returns a
  91. :class:`~django.contrib.auth.models.User` object if the credentials are
  92. valid for a backend. If the credentials aren't valid for any backend or if
  93. a backend raises :class:`~django.core.exceptions.PermissionDenied`, it
  94. returns ``None``. For example::
  95. from django.contrib.auth import authenticate
  96. user = authenticate(username='john', password='secret')
  97. if user is not None:
  98. # A backend authenticated the credentials
  99. else:
  100. # No backend authenticated the credentials
  101. ``request`` is an optional :class:`~django.http.HttpRequest` which is
  102. passed on the ``authenticate()`` method of the authentication backends.
  103. .. note::
  104. This is a low level way to authenticate a set of credentials; for
  105. example, it's used by the
  106. :class:`~django.contrib.auth.middleware.RemoteUserMiddleware`. Unless
  107. you are writing your own authentication system, you probably won't use
  108. this. Rather if you're looking for a way to login a user, use the
  109. :class:`~django.contrib.auth.views.LoginView`.
  110. .. _topic-authorization:
  111. Permissions and Authorization
  112. =============================
  113. Django comes with a simple permissions system. It provides a way to assign
  114. permissions to specific users and groups of users.
  115. It's used by the Django admin site, but you're welcome to use it in your own
  116. code.
  117. The Django admin site uses permissions as follows:
  118. * Access to view objects is limited to users with the "view" or "change"
  119. permission for that type of object.
  120. * Access to view the "add" form and add an object is limited to users with
  121. the "add" permission for that type of object.
  122. * Access to view the change list, view the "change" form and change an
  123. object is limited to users with the "change" permission for that type of
  124. object.
  125. * Access to delete an object is limited to users with the "delete"
  126. permission for that type of object.
  127. Permissions can be set not only per type of object, but also per specific
  128. object instance. By using the
  129. :meth:`~django.contrib.admin.ModelAdmin.has_view_permission`,
  130. :meth:`~django.contrib.admin.ModelAdmin.has_add_permission`,
  131. :meth:`~django.contrib.admin.ModelAdmin.has_change_permission` and
  132. :meth:`~django.contrib.admin.ModelAdmin.has_delete_permission` methods provided
  133. by the :class:`~django.contrib.admin.ModelAdmin` class, it is possible to
  134. customize permissions for different object instances of the same type.
  135. :class:`~django.contrib.auth.models.User` objects have two many-to-many
  136. fields: ``groups`` and ``user_permissions``.
  137. :class:`~django.contrib.auth.models.User` objects can access their related
  138. objects in the same way as any other :doc:`Django model
  139. </topics/db/models>`::
  140. myuser.groups.set([group_list])
  141. myuser.groups.add(group, group, ...)
  142. myuser.groups.remove(group, group, ...)
  143. myuser.groups.clear()
  144. myuser.user_permissions.set([permission_list])
  145. myuser.user_permissions.add(permission, permission, ...)
  146. myuser.user_permissions.remove(permission, permission, ...)
  147. myuser.user_permissions.clear()
  148. Default permissions
  149. -------------------
  150. When ``django.contrib.auth`` is listed in your :setting:`INSTALLED_APPS`
  151. setting, it will ensure that four default permissions -- add, change, delete,
  152. and view -- are created for each Django model defined in one of your installed
  153. applications.
  154. These permissions will be created when you run :djadmin:`manage.py migrate
  155. <migrate>`; the first time you run ``migrate`` after adding
  156. ``django.contrib.auth`` to :setting:`INSTALLED_APPS`, the default permissions
  157. will be created for all previously-installed models, as well as for any new
  158. models being installed at that time. Afterward, it will create default
  159. permissions for new models each time you run :djadmin:`manage.py migrate
  160. <migrate>` (the function that creates permissions is connected to the
  161. :data:`~django.db.models.signals.post_migrate` signal).
  162. Assuming you have an application with an
  163. :attr:`~django.db.models.Options.app_label` ``foo`` and a model named ``Bar``,
  164. to test for basic permissions you should use:
  165. * add: ``user.has_perm('foo.add_bar')``
  166. * change: ``user.has_perm('foo.change_bar')``
  167. * delete: ``user.has_perm('foo.delete_bar')``
  168. * view: ``user.has_perm('foo.view_bar')``
  169. The :class:`~django.contrib.auth.models.Permission` model is rarely accessed
  170. directly.
  171. Groups
  172. ------
  173. :class:`django.contrib.auth.models.Group` models are a generic way of
  174. categorizing users so you can apply permissions, or some other label, to those
  175. users. A user can belong to any number of groups.
  176. A user in a group automatically has the permissions granted to that group. For
  177. example, if the group ``Site editors`` has the permission
  178. ``can_edit_home_page``, any user in that group will have that permission.
  179. Beyond permissions, groups are a convenient way to categorize users to give
  180. them some label, or extended functionality. For example, you could create a
  181. group ``'Special users'``, and you could write code that could, say, give them
  182. access to a members-only portion of your site, or send them members-only email
  183. messages.
  184. Programmatically creating permissions
  185. -------------------------------------
  186. While :ref:`custom permissions <custom-permissions>` can be defined within
  187. a model's ``Meta`` class, you can also create permissions directly. For
  188. example, you can create the ``can_publish`` permission for a ``BlogPost`` model
  189. in ``myapp``::
  190. from myapp.models import BlogPost
  191. from django.contrib.auth.models import Permission
  192. from django.contrib.contenttypes.models import ContentType
  193. content_type = ContentType.objects.get_for_model(BlogPost)
  194. permission = Permission.objects.create(
  195. codename='can_publish',
  196. name='Can Publish Posts',
  197. content_type=content_type,
  198. )
  199. The permission can then be assigned to a
  200. :class:`~django.contrib.auth.models.User` via its ``user_permissions``
  201. attribute or to a :class:`~django.contrib.auth.models.Group` via its
  202. ``permissions`` attribute.
  203. .. admonition:: Proxy models need their own content type
  204. If you want to create :ref:`permissions for a proxy model
  205. <proxy-models-permissions-topic>`, pass ``for_concrete_model=False`` to
  206. :meth:`.ContentTypeManager.get_for_model` to get the appropriate
  207. ``ContentType``::
  208. content_type = ContentType.objects.get_for_model(BlogPostProxy, for_concrete_model=False)
  209. .. versionchanged:: 2.2
  210. In older versions, proxy models use the content type of the concrete
  211. model.
  212. Permission caching
  213. ------------------
  214. The :class:`~django.contrib.auth.backends.ModelBackend` caches permissions on
  215. the user object after the first time they need to be fetched for a permissions
  216. check. This is typically fine for the request-response cycle since permissions
  217. aren't typically checked immediately after they are added (in the admin, for
  218. example). If you are adding permissions and checking them immediately
  219. afterward, in a test or view for example, the easiest solution is to re-fetch
  220. the user from the database. For example::
  221. from django.contrib.auth.models import Permission, User
  222. from django.contrib.contenttypes.models import ContentType
  223. from django.shortcuts import get_object_or_404
  224. from myapp.models import BlogPost
  225. def user_gains_perms(request, user_id):
  226. user = get_object_or_404(User, pk=user_id)
  227. # any permission check will cache the current set of permissions
  228. user.has_perm('myapp.change_blogpost')
  229. content_type = ContentType.objects.get_for_model(BlogPost)
  230. permission = Permission.objects.get(
  231. codename='change_blogpost',
  232. content_type=content_type,
  233. )
  234. user.user_permissions.add(permission)
  235. # Checking the cached permission set
  236. user.has_perm('myapp.change_blogpost') # False
  237. # Request new instance of User
  238. # Be aware that user.refresh_from_db() won't clear the cache.
  239. user = get_object_or_404(User, pk=user_id)
  240. # Permission cache is repopulated from the database
  241. user.has_perm('myapp.change_blogpost') # True
  242. ...
  243. .. _proxy-models-permissions-topic:
  244. Proxy models
  245. ------------
  246. Proxy models work exactly the same way as concrete models. Permissions are
  247. created using the own content type of the proxy model. Proxy models don't
  248. inherit the permissions of the concrete model they subclass::
  249. class Person(models.Model):
  250. class Meta:
  251. permissions = [('can_eat_pizzas', 'Can eat pizzas')]
  252. class Student(Person):
  253. class Meta:
  254. proxy = True
  255. permissions = [('can_deliver_pizzas', 'Can deliver pizzas')]
  256. >>> # Fetch the content type for the proxy model.
  257. >>> content_type = ContentType.objects.get_for_model(Student, for_concrete_model=False)
  258. >>> student_permissions = Permission.objects.filter(content_type=content_type)
  259. >>> [p.codename for p in student_permissions]
  260. ['add_student', 'change_student', 'delete_student', 'view_student',
  261. 'can_deliver_pizzas']
  262. >>> for permission in student_permissions:
  263. ... user.user_permissions.add(permission)
  264. >>> user.has_perm('app.add_person')
  265. False
  266. >>> user.has_perm('app.can_eat_pizzas')
  267. False
  268. >>> user.has_perms(('app.add_student', 'app.can_deliver_pizzas'))
  269. True
  270. .. versionchanged:: 2.2
  271. In older versions, permissions for proxy models use the content type of
  272. the concrete model rather than content type of the proxy model.
  273. .. _auth-web-requests:
  274. Authentication in Web requests
  275. ==============================
  276. Django uses :doc:`sessions </topics/http/sessions>` and middleware to hook the
  277. authentication system into :class:`request objects <django.http.HttpRequest>`.
  278. These provide a :attr:`request.user <django.http.HttpRequest.user>` attribute
  279. on every request which represents the current user. If the current user has not
  280. logged in, this attribute will be set to an instance
  281. of :class:`~django.contrib.auth.models.AnonymousUser`, otherwise it will be an
  282. instance of :class:`~django.contrib.auth.models.User`.
  283. You can tell them apart with
  284. :attr:`~django.contrib.auth.models.User.is_authenticated`, like so::
  285. if request.user.is_authenticated:
  286. # Do something for authenticated users.
  287. ...
  288. else:
  289. # Do something for anonymous users.
  290. ...
  291. .. _how-to-log-a-user-in:
  292. How to log a user in
  293. --------------------
  294. If you have an authenticated user you want to attach to the current session
  295. - this is done with a :func:`~django.contrib.auth.login` function.
  296. .. function:: login(request, user, backend=None)
  297. To log a user in, from a view, use :func:`~django.contrib.auth.login()`. It
  298. takes an :class:`~django.http.HttpRequest` object and a
  299. :class:`~django.contrib.auth.models.User` object.
  300. :func:`~django.contrib.auth.login()` saves the user's ID in the session,
  301. using Django's session framework.
  302. Note that any data set during the anonymous session is retained in the
  303. session after a user logs in.
  304. This example shows how you might use both
  305. :func:`~django.contrib.auth.authenticate()` and
  306. :func:`~django.contrib.auth.login()`::
  307. from django.contrib.auth import authenticate, login
  308. def my_view(request):
  309. username = request.POST['username']
  310. password = request.POST['password']
  311. user = authenticate(request, username=username, password=password)
  312. if user is not None:
  313. login(request, user)
  314. # Redirect to a success page.
  315. ...
  316. else:
  317. # Return an 'invalid login' error message.
  318. ...
  319. Selecting the authentication backend
  320. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  321. When a user logs in, the user's ID and the backend that was used for
  322. authentication are saved in the user's session. This allows the same
  323. :ref:`authentication backend <authentication-backends>` to fetch the user's
  324. details on a future request. The authentication backend to save in the session
  325. is selected as follows:
  326. #. Use the value of the optional ``backend`` argument, if provided.
  327. #. Use the value of the ``user.backend`` attribute, if present. This allows
  328. pairing :func:`~django.contrib.auth.authenticate()` and
  329. :func:`~django.contrib.auth.login()`:
  330. :func:`~django.contrib.auth.authenticate()`
  331. sets the ``user.backend`` attribute on the user object it returns.
  332. #. Use the ``backend`` in :setting:`AUTHENTICATION_BACKENDS`, if there is only
  333. one.
  334. #. Otherwise, raise an exception.
  335. In cases 1 and 2, the value of the ``backend`` argument or the ``user.backend``
  336. attribute should be a dotted import path string (like that found in
  337. :setting:`AUTHENTICATION_BACKENDS`), not the actual backend class.
  338. How to log a user out
  339. ---------------------
  340. .. function:: logout(request)
  341. To log out a user who has been logged in via
  342. :func:`django.contrib.auth.login()`, use
  343. :func:`django.contrib.auth.logout()` within your view. It takes an
  344. :class:`~django.http.HttpRequest` object and has no return value.
  345. Example::
  346. from django.contrib.auth import logout
  347. def logout_view(request):
  348. logout(request)
  349. # Redirect to a success page.
  350. Note that :func:`~django.contrib.auth.logout()` doesn't throw any errors if
  351. the user wasn't logged in.
  352. When you call :func:`~django.contrib.auth.logout()`, the session data for
  353. the current request is completely cleaned out. All existing data is
  354. removed. This is to prevent another person from using the same Web browser
  355. to log in and have access to the previous user's session data. If you want
  356. to put anything into the session that will be available to the user
  357. immediately after logging out, do that *after* calling
  358. :func:`django.contrib.auth.logout()`.
  359. Limiting access to logged-in users
  360. ----------------------------------
  361. The raw way
  362. ~~~~~~~~~~~
  363. The simple, raw way to limit access to pages is to check
  364. :attr:`request.user.is_authenticated
  365. <django.contrib.auth.models.User.is_authenticated>` and either redirect to a
  366. login page::
  367. from django.conf import settings
  368. from django.shortcuts import redirect
  369. def my_view(request):
  370. if not request.user.is_authenticated:
  371. return redirect('%s?next=%s' % (settings.LOGIN_URL, request.path))
  372. # ...
  373. ...or display an error message::
  374. from django.shortcuts import render
  375. def my_view(request):
  376. if not request.user.is_authenticated:
  377. return render(request, 'myapp/login_error.html')
  378. # ...
  379. .. currentmodule:: django.contrib.auth.decorators
  380. The ``login_required`` decorator
  381. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  382. .. function:: login_required(redirect_field_name='next', login_url=None)
  383. As a shortcut, you can use the convenient
  384. :func:`~django.contrib.auth.decorators.login_required` decorator::
  385. from django.contrib.auth.decorators import login_required
  386. @login_required
  387. def my_view(request):
  388. ...
  389. :func:`~django.contrib.auth.decorators.login_required` does the following:
  390. * If the user isn't logged in, redirect to
  391. :setting:`settings.LOGIN_URL <LOGIN_URL>`, passing the current absolute
  392. path in the query string. Example: ``/accounts/login/?next=/polls/3/``.
  393. * If the user is logged in, execute the view normally. The view code is
  394. free to assume the user is logged in.
  395. By default, the path that the user should be redirected to upon
  396. successful authentication is stored in a query string parameter called
  397. ``"next"``. If you would prefer to use a different name for this parameter,
  398. :func:`~django.contrib.auth.decorators.login_required` takes an
  399. optional ``redirect_field_name`` parameter::
  400. from django.contrib.auth.decorators import login_required
  401. @login_required(redirect_field_name='my_redirect_field')
  402. def my_view(request):
  403. ...
  404. Note that if you provide a value to ``redirect_field_name``, you will most
  405. likely need to customize your login template as well, since the template
  406. context variable which stores the redirect path will use the value of
  407. ``redirect_field_name`` as its key rather than ``"next"`` (the default).
  408. :func:`~django.contrib.auth.decorators.login_required` also takes an
  409. optional ``login_url`` parameter. Example::
  410. from django.contrib.auth.decorators import login_required
  411. @login_required(login_url='/accounts/login/')
  412. def my_view(request):
  413. ...
  414. Note that if you don't specify the ``login_url`` parameter, you'll need to
  415. ensure that the :setting:`settings.LOGIN_URL <LOGIN_URL>` and your login
  416. view are properly associated. For example, using the defaults, add the
  417. following lines to your URLconf::
  418. from django.contrib.auth import views as auth_views
  419. path('accounts/login/', auth_views.LoginView.as_view()),
  420. The :setting:`settings.LOGIN_URL <LOGIN_URL>` also accepts view function
  421. names and :ref:`named URL patterns <naming-url-patterns>`. This allows you
  422. to freely remap your login view within your URLconf without having to
  423. update the setting.
  424. .. note::
  425. The ``login_required`` decorator does NOT check the ``is_active`` flag on a
  426. user, but the default :setting:`AUTHENTICATION_BACKENDS` reject inactive
  427. users.
  428. .. seealso::
  429. If you are writing custom views for Django's admin (or need the same
  430. authorization check that the built-in views use), you may find the
  431. :func:`django.contrib.admin.views.decorators.staff_member_required`
  432. decorator a useful alternative to ``login_required()``.
  433. .. currentmodule:: django.contrib.auth.mixins
  434. The ``LoginRequired`` mixin
  435. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  436. When using :doc:`class-based views </topics/class-based-views/index>`, you can
  437. achieve the same behavior as with ``login_required`` by using the
  438. ``LoginRequiredMixin``. This mixin should be at the leftmost position in the
  439. inheritance list.
  440. .. class:: LoginRequiredMixin
  441. If a view is using this mixin, all requests by non-authenticated users will
  442. be redirected to the login page or shown an HTTP 403 Forbidden error,
  443. depending on the
  444. :attr:`~django.contrib.auth.mixins.AccessMixin.raise_exception` parameter.
  445. You can set any of the parameters of
  446. :class:`~django.contrib.auth.mixins.AccessMixin` to customize the handling
  447. of unauthorized users::
  448. from django.contrib.auth.mixins import LoginRequiredMixin
  449. class MyView(LoginRequiredMixin, View):
  450. login_url = '/login/'
  451. redirect_field_name = 'redirect_to'
  452. .. note::
  453. Just as the ``login_required`` decorator, this mixin does NOT check the
  454. ``is_active`` flag on a user, but the default
  455. :setting:`AUTHENTICATION_BACKENDS` reject inactive users.
  456. .. currentmodule:: django.contrib.auth.decorators
  457. Limiting access to logged-in users that pass a test
  458. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  459. To limit access based on certain permissions or some other test, you'd do
  460. essentially the same thing as described in the previous section.
  461. The simple way is to run your test on :attr:`request.user
  462. <django.http.HttpRequest.user>` in the view directly. For example, this view
  463. checks to make sure the user has an email in the desired domain and if not,
  464. redirects to the login page::
  465. from django.shortcuts import redirect
  466. def my_view(request):
  467. if not request.user.email.endswith('@example.com'):
  468. return redirect('/login/?next=%s' % request.path)
  469. # ...
  470. .. function:: user_passes_test(test_func, login_url=None, redirect_field_name='next')
  471. As a shortcut, you can use the convenient ``user_passes_test`` decorator
  472. which performs a redirect when the callable returns ``False``::
  473. from django.contrib.auth.decorators import user_passes_test
  474. def email_check(user):
  475. return user.email.endswith('@example.com')
  476. @user_passes_test(email_check)
  477. def my_view(request):
  478. ...
  479. :func:`~django.contrib.auth.decorators.user_passes_test` takes a required
  480. argument: a callable that takes a
  481. :class:`~django.contrib.auth.models.User` object and returns ``True`` if
  482. the user is allowed to view the page. Note that
  483. :func:`~django.contrib.auth.decorators.user_passes_test` does not
  484. automatically check that the :class:`~django.contrib.auth.models.User` is
  485. not anonymous.
  486. :func:`~django.contrib.auth.decorators.user_passes_test` takes two
  487. optional arguments:
  488. ``login_url``
  489. Lets you specify the URL that users who don't pass the test will be
  490. redirected to. It may be a login page and defaults to
  491. :setting:`settings.LOGIN_URL <LOGIN_URL>` if you don't specify one.
  492. ``redirect_field_name``
  493. Same as for :func:`~django.contrib.auth.decorators.login_required`.
  494. Setting it to ``None`` removes it from the URL, which you may want to do
  495. if you are redirecting users that don't pass the test to a non-login
  496. page where there's no "next page".
  497. For example::
  498. @user_passes_test(email_check, login_url='/login/')
  499. def my_view(request):
  500. ...
  501. .. currentmodule:: django.contrib.auth.mixins
  502. .. class:: UserPassesTestMixin
  503. When using :doc:`class-based views </topics/class-based-views/index>`, you
  504. can use the ``UserPassesTestMixin`` to do this.
  505. .. method:: test_func()
  506. You have to override the ``test_func()`` method of the class to
  507. provide the test that is performed. Furthermore, you can set any of the
  508. parameters of :class:`~django.contrib.auth.mixins.AccessMixin` to
  509. customize the handling of unauthorized users::
  510. from django.contrib.auth.mixins import UserPassesTestMixin
  511. class MyView(UserPassesTestMixin, View):
  512. def test_func(self):
  513. return self.request.user.email.endswith('@example.com')
  514. .. method:: get_test_func()
  515. You can also override the ``get_test_func()`` method to have the mixin
  516. use a differently named function for its checks (instead of
  517. :meth:`test_func`).
  518. .. admonition:: Stacking ``UserPassesTestMixin``
  519. Due to the way ``UserPassesTestMixin`` is implemented, you cannot stack
  520. them in your inheritance list. The following does NOT work::
  521. class TestMixin1(UserPassesTestMixin):
  522. def test_func(self):
  523. return self.request.user.email.endswith('@example.com')
  524. class TestMixin2(UserPassesTestMixin):
  525. def test_func(self):
  526. return self.request.user.username.startswith('django')
  527. class MyView(TestMixin1, TestMixin2, View):
  528. ...
  529. If ``TestMixin1`` would call ``super()`` and take that result into
  530. account, ``TestMixin1`` wouldn't work standalone anymore.
  531. .. currentmodule:: django.contrib.auth.decorators
  532. The ``permission_required`` decorator
  533. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  534. .. function:: permission_required(perm, login_url=None, raise_exception=False)
  535. It's a relatively common task to check whether a user has a particular
  536. permission. For that reason, Django provides a shortcut for that case: the
  537. :func:`~django.contrib.auth.decorators.permission_required()` decorator.::
  538. from django.contrib.auth.decorators import permission_required
  539. @permission_required('polls.can_vote')
  540. def my_view(request):
  541. ...
  542. Just like the :meth:`~django.contrib.auth.models.User.has_perm` method,
  543. permission names take the form ``"<app label>.<permission codename>"``
  544. (i.e. ``polls.can_vote`` for a permission on a model in the ``polls``
  545. application).
  546. The decorator may also take an iterable of permissions, in which case the
  547. user must have all of the permissions in order to access the view.
  548. Note that :func:`~django.contrib.auth.decorators.permission_required()`
  549. also takes an optional ``login_url`` parameter::
  550. from django.contrib.auth.decorators import permission_required
  551. @permission_required('polls.can_vote', login_url='/loginpage/')
  552. def my_view(request):
  553. ...
  554. As in the :func:`~django.contrib.auth.decorators.login_required` decorator,
  555. ``login_url`` defaults to :setting:`settings.LOGIN_URL <LOGIN_URL>`.
  556. If the ``raise_exception`` parameter is given, the decorator will raise
  557. :exc:`~django.core.exceptions.PermissionDenied`, prompting :ref:`the 403
  558. (HTTP Forbidden) view<http_forbidden_view>` instead of redirecting to the
  559. login page.
  560. If you want to use ``raise_exception`` but also give your users a chance to
  561. login first, you can add the
  562. :func:`~django.contrib.auth.decorators.login_required` decorator::
  563. from django.contrib.auth.decorators import login_required, permission_required
  564. @login_required
  565. @permission_required('polls.can_vote', raise_exception=True)
  566. def my_view(request):
  567. ...
  568. This also avoids a redirect loop when :class:`.LoginView`'s
  569. ``redirect_authenticated_user=True`` and the logged-in user doesn't have
  570. all of the required permissions.
  571. .. currentmodule:: django.contrib.auth.mixins
  572. The ``PermissionRequiredMixin`` mixin
  573. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  574. To apply permission checks to :doc:`class-based views
  575. </ref/class-based-views/index>`, you can use the ``PermissionRequiredMixin``:
  576. .. class:: PermissionRequiredMixin
  577. This mixin, just like the ``permission_required``
  578. decorator, checks whether the user accessing a view has all given
  579. permissions. You should specify the permission (or an iterable of
  580. permissions) using the ``permission_required`` parameter::
  581. from django.contrib.auth.mixins import PermissionRequiredMixin
  582. class MyView(PermissionRequiredMixin, View):
  583. permission_required = 'polls.can_vote'
  584. # Or multiple of permissions:
  585. permission_required = ('polls.can_open', 'polls.can_edit')
  586. You can set any of the parameters of
  587. :class:`~django.contrib.auth.mixins.AccessMixin` to customize the handling
  588. of unauthorized users.
  589. You may also override these methods:
  590. .. method:: get_permission_required()
  591. Returns an iterable of permission names used by the mixin. Defaults to
  592. the ``permission_required`` attribute, converted to a tuple if
  593. necessary.
  594. .. method:: has_permission()
  595. Returns a boolean denoting whether the current user has permission to
  596. execute the decorated view. By default, this returns the result of
  597. calling :meth:`~django.contrib.auth.models.User.has_perms()` with the
  598. list of permissions returned by :meth:`get_permission_required()`.
  599. Redirecting unauthorized requests in class-based views
  600. ------------------------------------------------------
  601. To ease the handling of access restrictions in :doc:`class-based views
  602. </ref/class-based-views/index>`, the ``AccessMixin`` can be used to configure
  603. the behavior of a view when access is denied. Authenticated users are denied
  604. access with an HTTP 403 Forbidden response. Anonymous users are redirected to
  605. the login page or shown an HTTP 403 Forbidden response, depending on the
  606. :attr:`~django.contrib.auth.mixins.AccessMixin.raise_exception` attribute.
  607. .. class:: AccessMixin
  608. .. attribute:: login_url
  609. Default return value for :meth:`get_login_url`. Defaults to ``None``
  610. in which case :meth:`get_login_url` falls back to
  611. :setting:`settings.LOGIN_URL <LOGIN_URL>`.
  612. .. attribute:: permission_denied_message
  613. Default return value for :meth:`get_permission_denied_message`.
  614. Defaults to an empty string.
  615. .. attribute:: redirect_field_name
  616. Default return value for :meth:`get_redirect_field_name`. Defaults to
  617. ``"next"``.
  618. .. attribute:: raise_exception
  619. If this attribute is set to ``True``, a
  620. :class:`~django.core.exceptions.PermissionDenied` exception is raised
  621. when the conditions are not met. When ``False`` (the default),
  622. anonymous users are redirected to the login page.
  623. .. method:: get_login_url()
  624. Returns the URL that users who don't pass the test will be redirected
  625. to. Returns :attr:`login_url` if set, or :setting:`settings.LOGIN_URL
  626. <LOGIN_URL>` otherwise.
  627. .. method:: get_permission_denied_message()
  628. When :attr:`raise_exception` is ``True``, this method can be used to
  629. control the error message passed to the error handler for display to
  630. the user. Returns the :attr:`permission_denied_message` attribute by
  631. default.
  632. .. method:: get_redirect_field_name()
  633. Returns the name of the query parameter that will contain the URL the
  634. user should be redirected to after a successful login. If you set this
  635. to ``None``, a query parameter won't be added. Returns the
  636. :attr:`redirect_field_name` attribute by default.
  637. .. method:: handle_no_permission()
  638. Depending on the value of ``raise_exception``, the method either raises
  639. a :exc:`~django.core.exceptions.PermissionDenied` exception or
  640. redirects the user to the ``login_url``, optionally including the
  641. ``redirect_field_name`` if it is set.
  642. .. currentmodule:: django.contrib.auth
  643. .. _session-invalidation-on-password-change:
  644. Session invalidation on password change
  645. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  646. If your :setting:`AUTH_USER_MODEL` inherits from
  647. :class:`~django.contrib.auth.models.AbstractBaseUser` or implements its own
  648. :meth:`~django.contrib.auth.models.AbstractBaseUser.get_session_auth_hash()`
  649. method, authenticated sessions will include the hash returned by this function.
  650. In the :class:`~django.contrib.auth.models.AbstractBaseUser` case, this is an
  651. HMAC of the password field. Django verifies that the hash in the session for
  652. each request matches the one that's computed during the request. This allows a
  653. user to log out all of their sessions by changing their password.
  654. The default password change views included with Django,
  655. :class:`~django.contrib.auth.views.PasswordChangeView` and the
  656. ``user_change_password`` view in the :mod:`django.contrib.auth` admin, update
  657. the session with the new password hash so that a user changing their own
  658. password won't log themselves out. If you have a custom password change view
  659. and wish to have similar behavior, use the :func:`update_session_auth_hash`
  660. function.
  661. .. function:: update_session_auth_hash(request, user)
  662. This function takes the current request and the updated user object from
  663. which the new session hash will be derived and updates the session hash
  664. appropriately. It also rotates the session key so that a stolen session
  665. cookie will be invalidated.
  666. Example usage::
  667. from django.contrib.auth import update_session_auth_hash
  668. def password_change(request):
  669. if request.method == 'POST':
  670. form = PasswordChangeForm(user=request.user, data=request.POST)
  671. if form.is_valid():
  672. form.save()
  673. update_session_auth_hash(request, form.user)
  674. else:
  675. ...
  676. .. note::
  677. Since
  678. :meth:`~django.contrib.auth.models.AbstractBaseUser.get_session_auth_hash()`
  679. is based on :setting:`SECRET_KEY`, updating your site to use a new secret
  680. will invalidate all existing sessions.
  681. .. _built-in-auth-views:
  682. Authentication Views
  683. --------------------
  684. .. module:: django.contrib.auth.views
  685. Django provides several views that you can use for handling login, logout, and
  686. password management. These make use of the :ref:`stock auth forms
  687. <built-in-auth-forms>` but you can pass in your own forms as well.
  688. Django provides no default template for the authentication views. You should
  689. create your own templates for the views you want to use. The template context
  690. is documented in each view, see :ref:`all-authentication-views`.
  691. .. _using-the-views:
  692. Using the views
  693. ~~~~~~~~~~~~~~~
  694. There are different methods to implement these views in your project. The
  695. easiest way is to include the provided URLconf in ``django.contrib.auth.urls``
  696. in your own URLconf, for example::
  697. urlpatterns = [
  698. path('accounts/', include('django.contrib.auth.urls')),
  699. ]
  700. This will include the following URL patterns::
  701. accounts/login/ [name='login']
  702. accounts/logout/ [name='logout']
  703. accounts/password_change/ [name='password_change']
  704. accounts/password_change/done/ [name='password_change_done']
  705. accounts/password_reset/ [name='password_reset']
  706. accounts/password_reset/done/ [name='password_reset_done']
  707. accounts/reset/<uidb64>/<token>/ [name='password_reset_confirm']
  708. accounts/reset/done/ [name='password_reset_complete']
  709. The views provide a URL name for easier reference. See :doc:`the URL
  710. documentation </topics/http/urls>` for details on using named URL patterns.
  711. If you want more control over your URLs, you can reference a specific view in
  712. your URLconf::
  713. from django.contrib.auth import views as auth_views
  714. urlpatterns = [
  715. path('change-password/', auth_views.PasswordChangeView.as_view()),
  716. ]
  717. The views have optional arguments you can use to alter the behavior of the
  718. view. For example, if you want to change the template name a view uses, you can
  719. provide the ``template_name`` argument. A way to do this is to provide keyword
  720. arguments in the URLconf, these will be passed on to the view. For example::
  721. urlpatterns = [
  722. path(
  723. 'change-password/',
  724. auth_views.PasswordChangeView.as_view(template_name='change-password.html'),
  725. ),
  726. ]
  727. All views are :doc:`class-based </topics/class-based-views/index>`, which allows
  728. you to easily customize them by subclassing.
  729. .. _all-authentication-views:
  730. All authentication views
  731. ~~~~~~~~~~~~~~~~~~~~~~~~
  732. This is a list with all the views ``django.contrib.auth`` provides. For
  733. implementation details see :ref:`using-the-views`.
  734. .. class:: LoginView
  735. **URL name:** ``login``
  736. See :doc:`the URL documentation </topics/http/urls>` for details on using
  737. named URL patterns.
  738. **Attributes:**
  739. * ``template_name``: The name of a template to display for the view used to
  740. log the user in. Defaults to :file:`registration/login.html`.
  741. * ``redirect_field_name``: The name of a ``GET`` field containing the
  742. URL to redirect to after login. Defaults to ``next``.
  743. * ``authentication_form``: A callable (typically just a form class) to
  744. use for authentication. Defaults to
  745. :class:`~django.contrib.auth.forms.AuthenticationForm`.
  746. * ``extra_context``: A dictionary of context data that will be added to the
  747. default context data passed to the template.
  748. * ``redirect_authenticated_user``: A boolean that controls whether or not
  749. authenticated users accessing the login page will be redirected as if
  750. they had just successfully logged in. Defaults to ``False``.
  751. .. warning::
  752. If you enable ``redirect_authenticated_user``, other websites will be
  753. able to determine if their visitors are authenticated on your site by
  754. requesting redirect URLs to image files on your website. To avoid
  755. this "`social media fingerprinting
  756. <https://robinlinus.github.io/socialmedia-leak/>`_" information
  757. leakage, host all images and your favicon on a separate domain.
  758. Enabling ``redirect_authenticated_user`` can also result in a redirect
  759. loop when using the :func:`.permission_required` decorator
  760. unless the ``raise_exception`` parameter is used.
  761. * ``success_url_allowed_hosts``: A :class:`set` of hosts, in addition to
  762. :meth:`request.get_host() <django.http.HttpRequest.get_host>`, that are
  763. safe for redirecting after login. Defaults to an empty :class:`set`.
  764. Here's what ``LoginView`` does:
  765. * If called via ``GET``, it displays a login form that POSTs to the
  766. same URL. More on this in a bit.
  767. * If called via ``POST`` with user submitted credentials, it tries to log
  768. the user in. If login is successful, the view redirects to the URL
  769. specified in ``next``. If ``next`` isn't provided, it redirects to
  770. :setting:`settings.LOGIN_REDIRECT_URL <LOGIN_REDIRECT_URL>` (which
  771. defaults to ``/accounts/profile/``). If login isn't successful, it
  772. redisplays the login form.
  773. It's your responsibility to provide the html for the login template
  774. , called ``registration/login.html`` by default. This template gets passed
  775. four template context variables:
  776. * ``form``: A :class:`~django.forms.Form` object representing the
  777. :class:`~django.contrib.auth.forms.AuthenticationForm`.
  778. * ``next``: The URL to redirect to after successful login. This may
  779. contain a query string, too.
  780. * ``site``: The current :class:`~django.contrib.sites.models.Site`,
  781. according to the :setting:`SITE_ID` setting. If you don't have the
  782. site framework installed, this will be set to an instance of
  783. :class:`~django.contrib.sites.requests.RequestSite`, which derives the
  784. site name and domain from the current
  785. :class:`~django.http.HttpRequest`.
  786. * ``site_name``: An alias for ``site.name``. If you don't have the site
  787. framework installed, this will be set to the value of
  788. :attr:`request.META['SERVER_NAME'] <django.http.HttpRequest.META>`.
  789. For more on sites, see :doc:`/ref/contrib/sites`.
  790. If you'd prefer not to call the template :file:`registration/login.html`,
  791. you can pass the ``template_name`` parameter via the extra arguments to
  792. the ``as_view`` method in your URLconf. For example, this URLconf line would
  793. use :file:`myapp/login.html` instead::
  794. path('accounts/login/', auth_views.LoginView.as_view(template_name='myapp/login.html')),
  795. You can also specify the name of the ``GET`` field which contains the URL
  796. to redirect to after login using ``redirect_field_name``. By default, the
  797. field is called ``next``.
  798. Here's a sample :file:`registration/login.html` template you can use as a
  799. starting point. It assumes you have a :file:`base.html` template that
  800. defines a ``content`` block:
  801. .. code-block:: html+django
  802. {% extends "base.html" %}
  803. {% block content %}
  804. {% if form.errors %}
  805. <p>Your username and password didn't match. Please try again.</p>
  806. {% endif %}
  807. {% if next %}
  808. {% if user.is_authenticated %}
  809. <p>Your account doesn't have access to this page. To proceed,
  810. please login with an account that has access.</p>
  811. {% else %}
  812. <p>Please login to see this page.</p>
  813. {% endif %}
  814. {% endif %}
  815. <form method="post" action="{% url 'login' %}">
  816. {% csrf_token %}
  817. <table>
  818. <tr>
  819. <td>{{ form.username.label_tag }}</td>
  820. <td>{{ form.username }}</td>
  821. </tr>
  822. <tr>
  823. <td>{{ form.password.label_tag }}</td>
  824. <td>{{ form.password }}</td>
  825. </tr>
  826. </table>
  827. <input type="submit" value="login">
  828. <input type="hidden" name="next" value="{{ next }}">
  829. </form>
  830. {# Assumes you setup the password_reset view in your URLconf #}
  831. <p><a href="{% url 'password_reset' %}">Lost password?</a></p>
  832. {% endblock %}
  833. If you have customized authentication (see :doc:`Customizing Authentication
  834. </topics/auth/customizing>`) you can use a custom authentication form by
  835. setting the ``authentication_form`` attribute. This form must accept a
  836. ``request`` keyword argument in its ``__init__()`` method and provide a
  837. ``get_user()`` method which returns the authenticated user object (this
  838. method is only ever called after successful form validation).
  839. .. class:: LogoutView
  840. Logs a user out.
  841. **URL name:** ``logout``
  842. **Attributes:**
  843. * ``next_page``: The URL to redirect to after logout. Defaults to
  844. :setting:`settings.LOGOUT_REDIRECT_URL <LOGOUT_REDIRECT_URL>`.
  845. * ``template_name``: The full name of a template to display after
  846. logging the user out. Defaults to :file:`registration/logged_out.html`.
  847. * ``redirect_field_name``: The name of a ``GET`` field containing the
  848. URL to redirect to after log out. Defaults to ``next``. Overrides the
  849. ``next_page`` URL if the given ``GET`` parameter is passed.
  850. * ``extra_context``: A dictionary of context data that will be added to the
  851. default context data passed to the template.
  852. * ``success_url_allowed_hosts``: A :class:`set` of hosts, in addition to
  853. :meth:`request.get_host() <django.http.HttpRequest.get_host>`, that are
  854. safe for redirecting after logout. Defaults to an empty :class:`set`.
  855. **Template context:**
  856. * ``title``: The string "Logged out", localized.
  857. * ``site``: The current :class:`~django.contrib.sites.models.Site`,
  858. according to the :setting:`SITE_ID` setting. If you don't have the
  859. site framework installed, this will be set to an instance of
  860. :class:`~django.contrib.sites.requests.RequestSite`, which derives the
  861. site name and domain from the current
  862. :class:`~django.http.HttpRequest`.
  863. * ``site_name``: An alias for ``site.name``. If you don't have the site
  864. framework installed, this will be set to the value of
  865. :attr:`request.META['SERVER_NAME'] <django.http.HttpRequest.META>`.
  866. For more on sites, see :doc:`/ref/contrib/sites`.
  867. .. function:: logout_then_login(request, login_url=None)
  868. Logs a user out, then redirects to the login page.
  869. **URL name:** No default URL provided
  870. **Optional arguments:**
  871. * ``login_url``: The URL of the login page to redirect to.
  872. Defaults to :setting:`settings.LOGIN_URL <LOGIN_URL>` if not supplied.
  873. .. class:: PasswordChangeView
  874. **URL name:** ``password_change``
  875. Allows a user to change their password.
  876. **Attributes:**
  877. * ``template_name``: The full name of a template to use for
  878. displaying the password change form. Defaults to
  879. :file:`registration/password_change_form.html` if not supplied.
  880. * ``success_url``: The URL to redirect to after a successful password
  881. change.
  882. * ``form_class``: A custom "change password" form which must accept a
  883. ``user`` keyword argument. The form is responsible for actually changing
  884. the user's password. Defaults to
  885. :class:`~django.contrib.auth.forms.PasswordChangeForm`.
  886. * ``extra_context``: A dictionary of context data that will be added to the
  887. default context data passed to the template.
  888. **Template context:**
  889. * ``form``: The password change form (see ``form_class`` above).
  890. .. class:: PasswordChangeDoneView
  891. **URL name:** ``password_change_done``
  892. The page shown after a user has changed their password.
  893. **Attributes:**
  894. * ``template_name``: The full name of a template to use.
  895. Defaults to :file:`registration/password_change_done.html` if not
  896. supplied.
  897. * ``extra_context``: A dictionary of context data that will be added to the
  898. default context data passed to the template.
  899. .. class:: PasswordResetView
  900. **URL name:** ``password_reset``
  901. Allows a user to reset their password by generating a one-time use link
  902. that can be used to reset the password, and sending that link to the
  903. user's registered email address.
  904. If the email address provided does not exist in the system, this view
  905. won't send an email, but the user won't receive any error message either.
  906. This prevents information leaking to potential attackers. If you want to
  907. provide an error message in this case, you can subclass
  908. :class:`~django.contrib.auth.forms.PasswordResetForm` and use the
  909. ``form_class`` attribute.
  910. Users flagged with an unusable password (see
  911. :meth:`~django.contrib.auth.models.User.set_unusable_password()` aren't
  912. allowed to request a password reset to prevent misuse when using an
  913. external authentication source like LDAP. Note that they won't receive any
  914. error message since this would expose their account's existence but no
  915. mail will be sent either.
  916. **Attributes:**
  917. * ``template_name``: The full name of a template to use for
  918. displaying the password reset form. Defaults to
  919. :file:`registration/password_reset_form.html` if not supplied.
  920. * ``form_class``: Form that will be used to get the email of
  921. the user to reset the password for. Defaults to
  922. :class:`~django.contrib.auth.forms.PasswordResetForm`.
  923. * ``email_template_name``: The full name of a template to use for
  924. generating the email with the reset password link. Defaults to
  925. :file:`registration/password_reset_email.html` if not supplied.
  926. * ``subject_template_name``: The full name of a template to use for
  927. the subject of the email with the reset password link. Defaults
  928. to :file:`registration/password_reset_subject.txt` if not supplied.
  929. * ``token_generator``: Instance of the class to check the one time link.
  930. This will default to ``default_token_generator``, it's an instance of
  931. ``django.contrib.auth.tokens.PasswordResetTokenGenerator``.
  932. * ``success_url``: The URL to redirect to after a successful password reset
  933. request.
  934. * ``from_email``: A valid email address. By default Django uses
  935. the :setting:`DEFAULT_FROM_EMAIL`.
  936. * ``extra_context``: A dictionary of context data that will be added to the
  937. default context data passed to the template.
  938. * ``html_email_template_name``: The full name of a template to use
  939. for generating a ``text/html`` multipart email with the password reset
  940. link. By default, HTML email is not sent.
  941. * ``extra_email_context``: A dictionary of context data that will be
  942. available in the email template.
  943. **Template context:**
  944. * ``form``: The form (see ``form_class`` above) for resetting the user's
  945. password.
  946. **Email template context:**
  947. * ``email``: An alias for ``user.email``
  948. * ``user``: The current :class:`~django.contrib.auth.models.User`,
  949. according to the ``email`` form field. Only active users are able to
  950. reset their passwords (``User.is_active is True``).
  951. * ``site_name``: An alias for ``site.name``. If you don't have the site
  952. framework installed, this will be set to the value of
  953. :attr:`request.META['SERVER_NAME'] <django.http.HttpRequest.META>`.
  954. For more on sites, see :doc:`/ref/contrib/sites`.
  955. * ``domain``: An alias for ``site.domain``. If you don't have the site
  956. framework installed, this will be set to the value of
  957. ``request.get_host()``.
  958. * ``protocol``: http or https
  959. * ``uid``: The user's primary key encoded in base 64.
  960. * ``token``: Token to check that the reset link is valid.
  961. Sample ``registration/password_reset_email.html`` (email body template):
  962. .. code-block:: html+django
  963. Someone asked for password reset for email {{ email }}. Follow the link below:
  964. {{ protocol}}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}
  965. The same template context is used for subject template. Subject must be
  966. single line plain text string.
  967. .. class:: PasswordResetDoneView
  968. **URL name:** ``password_reset_done``
  969. The page shown after a user has been emailed a link to reset their
  970. password. This view is called by default if the :class:`PasswordResetView`
  971. doesn't have an explicit ``success_url`` URL set.
  972. .. note::
  973. If the email address provided does not exist in the system, the user is
  974. inactive, or has an unusable password, the user will still be
  975. redirected to this view but no email will be sent.
  976. **Attributes:**
  977. * ``template_name``: The full name of a template to use.
  978. Defaults to :file:`registration/password_reset_done.html` if not
  979. supplied.
  980. * ``extra_context``: A dictionary of context data that will be added to the
  981. default context data passed to the template.
  982. .. class:: PasswordResetConfirmView
  983. **URL name:** ``password_reset_confirm``
  984. Presents a form for entering a new password.
  985. **Keyword arguments from the URL:**
  986. * ``uidb64``: The user's id encoded in base 64.
  987. * ``token``: Token to check that the password is valid.
  988. **Attributes:**
  989. * ``template_name``: The full name of a template to display the confirm
  990. password view. Default value is
  991. :file:`registration/password_reset_confirm.html`.
  992. * ``token_generator``: Instance of the class to check the password. This
  993. will default to ``default_token_generator``, it's an instance of
  994. ``django.contrib.auth.tokens.PasswordResetTokenGenerator``.
  995. * ``post_reset_login``: A boolean indicating if the user should be
  996. automatically authenticated after a successful password reset. Defaults
  997. to ``False``.
  998. * ``post_reset_login_backend``: A dotted path to the authentication
  999. backend to use when authenticating a user if ``post_reset_login`` is
  1000. ``True``. Required only if you have multiple
  1001. :setting:`AUTHENTICATION_BACKENDS` configured. Defaults to ``None``.
  1002. * ``form_class``: Form that will be used to set the password. Defaults to
  1003. :class:`~django.contrib.auth.forms.SetPasswordForm`.
  1004. * ``success_url``: URL to redirect after the password reset done. Defaults
  1005. to ``'password_reset_complete'``.
  1006. * ``extra_context``: A dictionary of context data that will be added to the
  1007. default context data passed to the template.
  1008. * ``reset_url_token``: Token parameter displayed as a component of password
  1009. reset URLs. Defaults to ``'set-password'``.
  1010. .. versionchanged:: 3.0
  1011. The ``reset_url_token`` class attribute was added.
  1012. **Template context:**
  1013. * ``form``: The form (see ``form_class`` above) for setting the new user's
  1014. password.
  1015. * ``validlink``: Boolean, True if the link (combination of ``uidb64`` and
  1016. ``token``) is valid or unused yet.
  1017. .. class:: PasswordResetCompleteView
  1018. **URL name:** ``password_reset_complete``
  1019. Presents a view which informs the user that the password has been
  1020. successfully changed.
  1021. **Attributes:**
  1022. * ``template_name``: The full name of a template to display the view.
  1023. Defaults to :file:`registration/password_reset_complete.html`.
  1024. * ``extra_context``: A dictionary of context data that will be added to the
  1025. default context data passed to the template.
  1026. Helper functions
  1027. ----------------
  1028. .. currentmodule:: django.contrib.auth.views
  1029. .. function:: redirect_to_login(next, login_url=None, redirect_field_name='next')
  1030. Redirects to the login page, and then back to another URL after a
  1031. successful login.
  1032. **Required arguments:**
  1033. * ``next``: The URL to redirect to after a successful login.
  1034. **Optional arguments:**
  1035. * ``login_url``: The URL of the login page to redirect to.
  1036. Defaults to :setting:`settings.LOGIN_URL <LOGIN_URL>` if not supplied.
  1037. * ``redirect_field_name``: The name of a ``GET`` field containing the
  1038. URL to redirect to after log out. Overrides ``next`` if the given
  1039. ``GET`` parameter is passed.
  1040. .. _built-in-auth-forms:
  1041. Built-in forms
  1042. --------------
  1043. .. module:: django.contrib.auth.forms
  1044. If you don't want to use the built-in views, but want the convenience of not
  1045. having to write forms for this functionality, the authentication system
  1046. provides several built-in forms located in :mod:`django.contrib.auth.forms`:
  1047. .. note::
  1048. The built-in authentication forms make certain assumptions about the user
  1049. model that they are working with. If you're using a :ref:`custom user model
  1050. <auth-custom-user>`, it may be necessary to define your own forms for the
  1051. authentication system. For more information, refer to the documentation
  1052. about :ref:`using the built-in authentication forms with custom user models
  1053. <custom-users-and-the-built-in-auth-forms>`.
  1054. .. class:: AdminPasswordChangeForm
  1055. A form used in the admin interface to change a user's password.
  1056. Takes the ``user`` as the first positional argument.
  1057. .. class:: AuthenticationForm
  1058. A form for logging a user in.
  1059. Takes ``request`` as its first positional argument, which is stored on the
  1060. form instance for use by sub-classes.
  1061. .. method:: confirm_login_allowed(user)
  1062. By default, ``AuthenticationForm`` rejects users whose ``is_active``
  1063. flag is set to ``False``. You may override this behavior with a custom
  1064. policy to determine which users can log in. Do this with a custom form
  1065. that subclasses ``AuthenticationForm`` and overrides the
  1066. ``confirm_login_allowed()`` method. This method should raise a
  1067. :exc:`~django.core.exceptions.ValidationError` if the given user may
  1068. not log in.
  1069. For example, to allow all users to log in regardless of "active"
  1070. status::
  1071. from django.contrib.auth.forms import AuthenticationForm
  1072. class AuthenticationFormWithInactiveUsersOkay(AuthenticationForm):
  1073. def confirm_login_allowed(self, user):
  1074. pass
  1075. (In this case, you'll also need to use an authentication backend that
  1076. allows inactive users, such as
  1077. :class:`~django.contrib.auth.backends.AllowAllUsersModelBackend`.)
  1078. Or to allow only some active users to log in::
  1079. class PickyAuthenticationForm(AuthenticationForm):
  1080. def confirm_login_allowed(self, user):
  1081. if not user.is_active:
  1082. raise forms.ValidationError(
  1083. _("This account is inactive."),
  1084. code='inactive',
  1085. )
  1086. if user.username.startswith('b'):
  1087. raise forms.ValidationError(
  1088. _("Sorry, accounts starting with 'b' aren't welcome here."),
  1089. code='no_b_users',
  1090. )
  1091. .. class:: PasswordChangeForm
  1092. A form for allowing a user to change their password.
  1093. .. class:: PasswordResetForm
  1094. A form for generating and emailing a one-time use link to reset a
  1095. user's password.
  1096. .. method:: send_mail(subject_template_name, email_template_name, context, from_email, to_email, html_email_template_name=None)
  1097. Uses the arguments to send an ``EmailMultiAlternatives``.
  1098. Can be overridden to customize how the email is sent to the user.
  1099. :param subject_template_name: the template for the subject.
  1100. :param email_template_name: the template for the email body.
  1101. :param context: context passed to the ``subject_template``,
  1102. ``email_template``, and ``html_email_template`` (if it is not
  1103. ``None``).
  1104. :param from_email: the sender's email.
  1105. :param to_email: the email of the requester.
  1106. :param html_email_template_name: the template for the HTML body;
  1107. defaults to ``None``, in which case a plain text email is sent.
  1108. By default, ``save()`` populates the ``context`` with the
  1109. same variables that
  1110. :class:`~django.contrib.auth.views.PasswordResetView` passes to its
  1111. email context.
  1112. .. class:: SetPasswordForm
  1113. A form that lets a user change their password without entering the old
  1114. password.
  1115. .. class:: UserChangeForm
  1116. A form used in the admin interface to change a user's information and
  1117. permissions.
  1118. .. class:: UserCreationForm
  1119. A :class:`~django.forms.ModelForm` for creating a new user.
  1120. It has three fields: ``username`` (from the user model), ``password1``,
  1121. and ``password2``. It verifies that ``password1`` and ``password2`` match,
  1122. validates the password using
  1123. :func:`~django.contrib.auth.password_validation.validate_password`, and
  1124. sets the user's password using
  1125. :meth:`~django.contrib.auth.models.User.set_password()`.
  1126. .. currentmodule:: django.contrib.auth
  1127. Authentication data in templates
  1128. --------------------------------
  1129. The currently logged-in user and their permissions are made available in the
  1130. :doc:`template context </ref/templates/api>` when you use
  1131. :class:`~django.template.RequestContext`.
  1132. .. admonition:: Technicality
  1133. Technically, these variables are only made available in the template
  1134. context if you use :class:`~django.template.RequestContext` and the
  1135. ``'django.contrib.auth.context_processors.auth'`` context processor is
  1136. enabled. It is in the default generated settings file. For more, see the
  1137. :ref:`RequestContext docs <subclassing-context-requestcontext>`.
  1138. Users
  1139. ~~~~~
  1140. When rendering a template :class:`~django.template.RequestContext`, the
  1141. currently logged-in user, either a :class:`~django.contrib.auth.models.User`
  1142. instance or an :class:`~django.contrib.auth.models.AnonymousUser` instance, is
  1143. stored in the template variable ``{{ user }}``:
  1144. .. code-block:: html+django
  1145. {% if user.is_authenticated %}
  1146. <p>Welcome, {{ user.username }}. Thanks for logging in.</p>
  1147. {% else %}
  1148. <p>Welcome, new user. Please log in.</p>
  1149. {% endif %}
  1150. This template context variable is not available if a ``RequestContext`` is not
  1151. being used.
  1152. Permissions
  1153. ~~~~~~~~~~~
  1154. The currently logged-in user's permissions are stored in the template variable
  1155. ``{{ perms }}``. This is an instance of
  1156. ``django.contrib.auth.context_processors.PermWrapper``, which is a
  1157. template-friendly proxy of permissions.
  1158. Evaluating a single-attribute lookup of ``{{ perms }}`` as a boolean is a proxy
  1159. to :meth:`User.has_module_perms()
  1160. <django.contrib.auth.models.User.has_module_perms>`. For example, to check if
  1161. the logged-in user has any permissions in the ``foo`` app::
  1162. {% if perms.foo %}
  1163. Evaluating a two-level-attribute lookup as a boolean is a proxy to
  1164. :meth:`User.has_perm() <django.contrib.auth.models.User.has_perm>`. For example,
  1165. to check if the logged-in user has the permission ``foo.can_vote``::
  1166. {% if perms.foo.can_vote %}
  1167. Here's a more complete example of checking permissions in a template:
  1168. .. code-block:: html+django
  1169. {% if perms.foo %}
  1170. <p>You have permission to do something in the foo app.</p>
  1171. {% if perms.foo.can_vote %}
  1172. <p>You can vote!</p>
  1173. {% endif %}
  1174. {% if perms.foo.can_drive %}
  1175. <p>You can drive!</p>
  1176. {% endif %}
  1177. {% else %}
  1178. <p>You don't have permission to do anything in the foo app.</p>
  1179. {% endif %}
  1180. It is possible to also look permissions up by ``{% if in %}`` statements.
  1181. For example:
  1182. .. code-block:: html+django
  1183. {% if 'foo' in perms %}
  1184. {% if 'foo.can_vote' in perms %}
  1185. <p>In lookup works, too.</p>
  1186. {% endif %}
  1187. {% endif %}
  1188. .. _auth-admin:
  1189. Managing users in the admin
  1190. ===========================
  1191. When you have both ``django.contrib.admin`` and ``django.contrib.auth``
  1192. installed, the admin provides a convenient way to view and manage users,
  1193. groups, and permissions. Users can be created and deleted like any Django
  1194. model. Groups can be created, and permissions can be assigned to users or
  1195. groups. A log of user edits to models made within the admin is also stored and
  1196. displayed.
  1197. Creating users
  1198. --------------
  1199. You should see a link to "Users" in the "Auth"
  1200. section of the main admin index page. The "Add user" admin page is different
  1201. than standard admin pages in that it requires you to choose a username and
  1202. password before allowing you to edit the rest of the user's fields.
  1203. Also note: if you want a user account to be able to create users using the
  1204. Django admin site, you'll need to give them permission to add users *and*
  1205. change users (i.e., the "Add user" and "Change user" permissions). If an
  1206. account has permission to add users but not to change them, that account won't
  1207. be able to add users. Why? Because if you have permission to add users, you
  1208. have the power to create superusers, which can then, in turn, change other
  1209. users. So Django requires add *and* change permissions as a slight security
  1210. measure.
  1211. Be thoughtful about how you allow users to manage permissions. If you give a
  1212. non-superuser the ability to edit users, this is ultimately the same as giving
  1213. them superuser status because they will be able to elevate permissions of
  1214. users including themselves!
  1215. Changing passwords
  1216. ------------------
  1217. User passwords are not displayed in the admin (nor stored in the database), but
  1218. the :doc:`password storage details </topics/auth/passwords>` are displayed.
  1219. Included in the display of this information is a link to
  1220. a password change form that allows admins to change user passwords.