default.txt 66 KB

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