Django

Code

root/django/trunk/docs/authentication.txt

Revision 7388, 42.3 kB (checked in by ubernostrum, 2 months ago)

Fixed #6927: Corrected documentation describing when and why the auth application creates default permissions

  • Property svn:eol-style set to native
Line 
1 =============================
2 User authentication in Django
3 =============================
4
5 Django comes with a user authentication system. It handles user accounts,
6 groups, permissions and cookie-based user sessions. This document explains how
7 things work.
8
9 Overview
10 ========
11
12 The auth system consists of:
13
14     * Users
15     * Permissions: Binary (yes/no) flags designating whether a user may perform
16       a certain task.
17     * Groups: A generic way of applying labels and permissions to more than one
18       user.
19     * Messages: A simple way to queue messages for given users.
20
21 Installation
22 ============
23
24 Authentication support is bundled as a Django application in
25 ``django.contrib.auth``. To install it, do the following:
26
27     1. Put ``'django.contrib.auth'`` in your ``INSTALLED_APPS`` setting.
28     2. Run the command ``manage.py syncdb``.
29
30 Note that the default ``settings.py`` file created by
31 ``django-admin.py startproject`` includes ``'django.contrib.auth'`` in
32 ``INSTALLED_APPS`` for convenience. If your ``INSTALLED_APPS`` already contains
33 ``'django.contrib.auth'``, feel free to run ``manage.py syncdb`` again; you
34 can run that command as many times as you'd like, and each time it'll only
35 install what's needed.
36
37 The ``syncdb`` command creates the necessary database tables, creates
38 permission objects for all installed apps that need 'em, and prompts you to
39 create a superuser account the first time you run it.
40
41 Once you've taken those steps, that's it.
42
43 Users
44 =====
45
46 Users are represented by a standard Django model, which lives in
47 `django/contrib/auth/models.py`_.
48
49 .. _django/contrib/auth/models.py: http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/models.py
50
51 API reference
52 -------------
53
54 Fields
55 ~~~~~~
56
57 ``User`` objects have the following fields:
58
59     * ``username`` -- Required. 30 characters or fewer. Alphanumeric characters
60       only (letters, digits and underscores).
61     * ``first_name`` -- Optional. 30 characters or fewer.
62     * ``last_name`` -- Optional. 30 characters or fewer.
63     * ``email`` -- Optional. E-mail address.
64     * ``password`` -- Required. A hash of, and metadata about, the password.
65       (Django doesn't store the raw password.) Raw passwords can be arbitrarily
66       long and can contain any character. See the "Passwords" section below.
67     * ``is_staff`` -- Boolean. Designates whether this user can access the
68       admin site.
69     * ``is_active`` -- Boolean. Designates whether this account can be used
70       to log in. Set this flag to ``False`` instead of deleting accounts.
71     * ``is_superuser`` -- Boolean. Designates that this user has all permissions
72       without explicitly assigning them.
73     * ``last_login`` -- A datetime of the user's last login. Is set to the
74       current date/time by default.
75     * ``date_joined`` -- A datetime designating when the account was created.
76       Is set to the current date/time by default when the account is created.
77
78 Methods
79 ~~~~~~~
80
81 ``User`` objects have two many-to-many fields: ``groups`` and
82 ``user_permissions``. ``User`` objects can access their related
83 objects in the same way as any other `Django model`_::
84
85     myuser.groups = [group_list]
86     myuser.groups.add(group, group, ...)
87     myuser.groups.remove(group, group, ...)
88     myuser.groups.clear()
89     myuser.user_permissions = [permission_list]
90     myuser.user_permissions.add(permission, permission, ...)
91     myuser.user_permissions.remove(permission, permission, ...)
92     myuser.user_permissions.clear()
93
94 In addition to those automatic API methods, ``User`` objects have the following
95 custom methods:
96
97     * ``is_anonymous()`` -- Always returns ``False``. This is a way of
98       differentiating ``User`` and ``AnonymousUser`` objects. Generally, you
99       should prefer using ``is_authenticated()`` to this method.
100
101     * ``is_authenticated()`` -- Always returns ``True``. This is a way to
102       tell if the user has been authenticated. This does not imply any
103       permissions, and doesn't check if the user is active - it only indicates
104       that the user has provided a valid username and password.
105
106     * ``get_full_name()`` -- Returns the ``first_name`` plus the ``last_name``,
107       with a space in between.
108
109     * ``set_password(raw_password)`` -- Sets the user's password to the given
110       raw string, taking care of the password hashing. Doesn't save the
111       ``User`` object.
112
113     * ``check_password(raw_password)`` -- Returns ``True`` if the given raw
114       string is the correct password for the user. (This takes care of the
115       password hashing in making the comparison.)
116
117     * ``set_unusable_password()`` -- **New in Django development version.**
118       Marks the user as having no password set.  This isn't the same as having
119       a blank string for a password. ``check_password()`` for this user will
120       never return ``True``. Doesn't save the ``User`` object.
121
122       You may need this if authentication for your application takes place
123       against an existing external source such as an LDAP directory.
124
125     * ``has_usable_password()`` -- **New in Django development version.**
126       Returns ``False`` if ``set_unusable_password()`` has been called for this
127       user.
128
129     * ``get_group_permissions()`` -- Returns a list of permission strings that
130       the user has, through his/her groups.
131
132     * ``get_all_permissions()`` -- Returns a list of permission strings that
133       the user has, both through group and user permissions.
134
135     * ``has_perm(perm)`` -- Returns ``True`` if the user has the specified
136       permission, where perm is in the format ``"package.codename"``.
137       If the user is inactive, this method will always return ``False``.
138
139     * ``has_perms(perm_list)`` -- Returns ``True`` if the user has each of the
140       specified permissions, where each perm is in the format
141       ``"package.codename"``. If the user is inactive, this method will
142       always return ``False``.
143
144     * ``has_module_perms(package_name)`` -- Returns ``True`` if the user has
145       any permissions in the given package (the Django app label).
146       If the user is inactive, this method will always return ``False``.
147
148     * ``get_and_delete_messages()`` -- Returns a list of ``Message`` objects in
149       the user's queue and deletes the messages from the queue.
150
151     * ``email_user(subject, message, from_email=None)`` -- Sends an e-mail to
152       the user. If ``from_email`` is ``None``, Django uses the
153       `DEFAULT_FROM_EMAIL`_ setting.
154
155     * ``get_profile()`` -- Returns a site-specific profile for this user.
156       Raises ``django.contrib.auth.models.SiteProfileNotAvailable`` if the current site
157       doesn't allow profiles. For information on how to define a
158       site-specific user profile, see the section on `storing additional
159       user information`_ below.
160
161 .. _Django model: ../model-api/
162 .. _DEFAULT_FROM_EMAIL: ../settings/#default-from-email
163 .. _storing additional user information: #storing-additional-information-about-users
164
165 Manager functions
166 ~~~~~~~~~~~~~~~~~
167
168 The ``User`` model has a custom manager that has the following helper functions:
169
170     * ``create_user(username, email, password=None)`` -- Creates, saves and
171       returns a ``User``. The ``username``, ``email`` and ``password`` are set
172       as given, and the ``User`` gets ``is_active=True``.
173
174       If no password is provided, ``set_unusable_password()`` will be called.
175
176       See `Creating users`_ for example usage.
177
178     * ``make_random_password(length=10, allowed_chars='abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789')``
179       Returns a random password with the given length and given string of
180       allowed characters. (Note that the default value of ``allowed_chars``
181       doesn't contain letters that can cause user confusion, including
182       ``1``, ``I`` and ``0``).
183
184 Basic usage
185 -----------
186
187 Creating users
188 ~~~~~~~~~~~~~~
189
190 The most basic way to create users is to use the ``create_user`` helper
191 function that comes with Django::
192
193     >>> from django.contrib.auth.models import User
194     >>> user = User.objects.create_user('john', 'lennon@thebeatles.com', 'johnpassword')
195
196     # At this point, user is a User object that has already been saved
197     # to the database. You can continue to change its attributes
198     # if you want to change other fields.
199     >>> user.is_staff = True
200     >>> user.save()
201
202 Changing passwords
203 ~~~~~~~~~~~~~~~~~~
204
205 Change a password with ``set_password()``::
206
207     >>> from django.contrib.auth.models import User
208     >>> u = User.objects.get(username__exact='john')
209     >>> u.set_password('new password')
210     >>> u.save()
211
212 Don't set the ``password`` attribute directly unless you know what you're
213 doing. This is explained in the next section.
214
215 Passwords
216 ---------
217
218 The ``password`` attribute of a ``User`` object is a string in this format::
219
220     hashtype$salt$hash
221
222 That's hashtype, salt and hash, separated by the dollar-sign character.
223
224 Hashtype is either ``sha1`` (default), ``md5`` or ``crypt`` -- the algorithm
225 used to perform a one-way hash of the password. Salt is a random string used
226 to salt the raw password to create the hash. Note that the ``crypt`` method is
227 only supported on platforms that have the standard Python ``crypt`` module
228 available, and ``crypt`` support is only available in the Django development
229 version.
230
231 For example::
232
233     sha1$a1976$a36cc8cbf81742a8fb52e221aaeab48ed7f58ab4
234
235 The ``User.set_password()`` and ``User.check_password()`` functions handle
236 the setting and checking of these values behind the scenes.
237
238 Previous Django versions, such as 0.90, used simple MD5 hashes without password
239 salts. For backwards compatibility, those are still supported; they'll be
240 converted automatically to the new style the first time ``User.check_password()``
241 works correctly for a given user.
242
243 Anonymous users
244 ---------------
245
246 ``django.contrib.auth.models.AnonymousUser`` is a class that implements
247 the ``django.contrib.auth.models.User`` interface, with these differences:
248
249     * ``id`` is always ``None``.
250     * ``is_staff`` and ``is_superuser`` are always ``False``.
251     * ``is_active`` is always ``False``.
252     * ``groups`` and ``user_permissions`` are always empty.
253     * ``is_anonymous()`` returns ``True`` instead of ``False``.
254     * ``is_authenticated()`` returns ``False`` instead of ``True``.
255     * ``has_perm()`` always returns ``False``.
256     * ``set_password()``, ``check_password()``, ``save()``, ``delete()``,
257       ``set_groups()`` and ``set_permissions()`` raise ``NotImplementedError``.
258
259 In practice, you probably won't need to use ``AnonymousUser`` objects on your
260 own, but they're used by Web requests, as explained in the next section.
261
262 Creating superusers
263 -------------------
264
265 ``manage.py syncdb`` prompts you to create a superuser the first time you run
266 it after adding ``'django.contrib.auth'`` to your ``INSTALLED_APPS``. But if
267 you need to create a superuser after that via the command line, you can use the
268 ``create_superuser.py`` utility. Just run this command::
269
270     python /path/to/django/contrib/auth/create_superuser.py
271
272 Make sure to substitute ``/path/to/`` with the path to the Django codebase on
273 your filesystem.
274
275 Storing additional information about users
276 ------------------------------------------
277
278 If you'd like to store additional information related to your users,
279 Django provides a method to specify a site-specific related model --
280 termed a "user profile" -- for this purpose.
281
282 To make use of this feature, define a model with fields for the
283 additional information you'd like to store, or additional methods
284 you'd like to have available, and also add a ``ForeignKey`` from your
285 model to the ``User`` model, specified with ``unique=True`` to ensure
286 only one instance of your model can be created for each ``User``.
287
288 To indicate that this model is the user profile model for a given
289 site, fill in the setting ``AUTH_PROFILE_MODULE`` with a string
290 consisting of the following items, separated by a dot:
291
292 1. The (normalized to lower-case) name of the application in which the
293    user profile model is defined (in other words, an all-lowercase
294    version of the name which was passed to ``manage.py startapp`` to
295    create the application).
296
297 2. The (normalized to lower-case) name of the model class.
298
299 For example, if the profile model was a class named ``UserProfile``
300 and was defined inside an application named ``accounts``, the
301 appropriate setting would be::
302
303     AUTH_PROFILE_MODULE = 'accounts.userprofile'
304
305 When a user profile model has been defined and specified in this
306 manner, each ``User`` object will have a method -- ``get_profile()``
307 -- which returns the instance of the user profile model associated
308 with that ``User``.
309
310 For more information, see `Chapter 12 of the Django book`_.
311
312 .. _Chapter 12 of the Django book: http://www.djangobook.com/en/1.0/chapter12/#cn222
313
314 Authentication in Web requests
315 ==============================
316
317 Until now, this document has dealt with the low-level APIs for manipulating
318 authentication-related objects. On a higher level, Django can hook this
319 authentication framework into its system of `request objects`_.
320
321 First, install the ``SessionMiddleware`` and ``AuthenticationMiddleware``
322 middlewares by adding them to your ``MIDDLEWARE_CLASSES`` setting. See the
323 `session documentation`_ for more information.
324
325 Once you have those middlewares installed, you'll be able to access
326 ``request.user`` in views. ``request.user`` will give you a ``User`` object
327 representing the currently logged-in user. If a user isn't currently logged in,
328 ``request.user`` will be set to an instance of ``AnonymousUser`` (see the
329 previous section). You can tell them apart with ``is_authenticated()``, like so::
330
331     if request.user.is_authenticated():
332         # Do something for authenticated users.
333     else:
334         # Do something for anonymous users.
335
336 .. _request objects: ../request_response/#httprequest-objects
337 .. _session documentation: ../sessions/
338
339 How to log a user in
340 --------------------
341
342 Django provides two functions in ``django.contrib.auth``: ``authenticate()``
343 and ``login()``.
344
345 To authenticate a given username and password, use ``authenticate()``. It
346 takes two keyword arguments, ``username`` and ``password``, and it returns
347 a ``User`` object if the password is valid for the given username. If the
348 password is invalid, ``authenticate()`` returns ``None``. Example::
349
350     from django.contrib.auth import authenticate
351     user = authenticate(username='john', password='secret')
352     if user is not None:
353         if user.is_active:
354             print "You provided a correct username and password!"
355         else:
356             print "Your account has been disabled!"
357     else:
358         print "Your username and password were incorrect."
359
360 To log a user in, in a view, use ``login()``. It takes an ``HttpRequest``
361 object and a ``User`` object. ``login()`` saves the user's ID in the session,
362 using Django's session framework, so, as mentioned above, you'll need to make
363 sure to have the session middleware installed.
364
365 This example shows how you might use both ``authenticate()`` and ``login()``::
366
367     from django.contrib.auth import authenticate, login
368
369     def my_view(request):
370         username = request.POST['username']
371         password = request.POST['password']
372         user = authenticate(username=username, password=password)
373         if user is not None:
374             if user.is_active:
375                 login(request, user)
376                 # Redirect to a success page.
377             else:
378                 # Return a 'disabled account' error message
379         else:
380             # Return an 'invalid login' error message.
381
382 .. admonition:: Calling ``authenticate()`` first
383
384     When you're manually logging a user in, you *must* call
385     ``authenticate()`` before you call ``login()``. ``authenticate()``
386     sets an attribute on the ``User`` noting which authentication
387     backend successfully authenticated that user (see the `backends
388     documentation`_ for details), and this information is needed later
389     during the login process.
390
391 .. _backends documentation: #other-authentication-sources
392
393 Manually checking a user's password
394 -----------------------------------
395
396 If you'd like to manually authenticate a user by comparing a
397 plain-text password to the hashed password in the database, use the
398 convenience function ``django.contrib.auth.models.check_password``. It
399 takes two arguments: the plain-text password to check, and the full
400 value of a user's ``password`` field in the database to check against,
401 and returns ``True`` if they match, ``False`` otherwise.
402
403 How to log a user out
404 ---------------------
405
406 To log out a user who has been logged in via ``django.contrib.auth.login()``,
407 use ``django.contrib.auth.logout()`` within your view. It takes an
408 ``HttpRequest`` object and has no return value. Example::
409
410     from django.contrib.auth import logout
411
412     def logout_view(request):
413         logout(request)
414         # Redirect to a success page.
415
416 Note that ``logout()`` doesn't throw any errors if the user wasn't logged in.
417
418 Limiting access to logged-in users
419 ----------------------------------
420
421 The raw way
422 ~~~~~~~~~~~
423
424 The simple, raw way to limit access to pages is to check
425 ``request.user.is_authenticated()`` and either redirect to a login page::
426
427     from django.http import HttpResponseRedirect
428
429     def my_view(request):
430         if not request.user.is_authenticated():
431             return HttpResponseRedirect('/login/?next=%s' % request.path)
432         # ...
433
434 ...or display an error message::
435
436     def my_view(request):
437         if not request.user.is_authenticated():
438             return render_to_response('myapp/login_error.html')
439         # ...
440
441 The login_required decorator
442 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
443
444 As a shortcut, you can use the convenient ``login_required`` decorator::
445
446     from django.contrib.auth.decorators import login_required
447
448     def my_view(request):
449         # ...
450     my_view = login_required(my_view)
451
452 Here's an equivalent example, using the more compact decorator syntax
453 introduced in Python 2.4::
454
455     from django.contrib.auth.decorators import login_required
456
457     @login_required
458     def my_view(request):
459         # ...
460
461 In the Django development version, ``login_required`` also takes an optional
462 ``redirect_field_name`` parameter. Example::
463
464     from django.contrib.auth.decorators import login_required
465
466     def my_view(request):
467         # ...
468     my_view = login_required(redirect_field_name='redirect_to')(my_view)
469
470 Again, an equivalent example of the more compact decorator syntax introduced in Python 2.4::
471
472     from django.contrib.auth.decorators import login_required
473
474     @login_required(redirect_field_name='redirect_to')
475     def my_view(request):
476         # ...
477
478 ``login_required`` does the following:
479
480     * If the user isn't logged in, redirect to ``settings.LOGIN_URL``
481       (``/accounts/login/`` by default), passing the current absolute URL
482       in the query string as ``next`` or the value of ``redirect_field_name``.
483       For example:
484       ``/accounts/login/?next=/polls/3/``.
485     * If the user is logged in, execute the view normally. The view code is
486       free to assume the user is logged in.
487
488 Note that you'll need to map the appropriate Django view to ``settings.LOGIN_URL``.
489 For example, using the defaults, add the following line to your URLconf::
490
491     (r'^accounts/login/$', 'django.contrib.auth.views.login'),
492
493 Here's what ``django.contrib.auth.views.login`` does:
494
495     * If called via ``GET``, it displays a login form that POSTs to the same
496       URL. More on this in a bit.
497
498     * If called via ``POST``, it tries to log the user in. If login is
499       successful, the view redirects to the URL specified in ``next``. If
500       ``next`` isn't provided, it redirects to ``settings.LOGIN_REDIRECT_URL``
501       (which defaults to ``/accounts/profile/``). If login isn't successful,
502       it redisplays the login form.
503
504 It's your responsibility to provide the login form in a template called
505 ``registration/login.html`` by default. This template gets passed three
506 template context variables:
507
508     * ``form``: A ``FormWrapper`` object representing the login form. See the
509       `forms documentation`_ for more on ``FormWrapper`` objects.
510     * ``next``: The URL to redirect to after successful login. This may contain
511       a query string, too.
512     * ``site_name``: The name of the current ``Site``, according to the
513       ``SITE_ID`` setting. If you're using the Django development version and
514       you don't have the site framework installed, this will be set to the
515       value of ``request.META['SERVER_NAME']``. For more on sites, see the
516       `site framework docs`_.
517
518 If you'd prefer not to call the template ``registration/login.html``, you can
519 pass the ``template_name`` parameter via the extra arguments to the view in
520 your URLconf. For example, this URLconf line would use ``myapp/login.html``
521 instead::
522
523     (r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'myapp/login.html'}),
524
525 Here's a sample ``registration/login.html`` template you can use as a starting
526 point. It assumes you have a ``base.html`` template that defines a ``content``
527 block::
528
529     {% extends "base.html" %}
530
531     {% block content %}
532
533     {% if form.has_errors %}
534     <p>Your username and password didn't match. Please try again.</p>
535     {% endif %}
536
537     <form method="post" action=".">
538     <table>
539     <tr><td><label for="id_username">Username:</label></td><td>{{ form.username }}</td></tr>
540     <tr><td><label for="id_password">Password:</label></td><td>{{ form.password }}</td></tr>
541     </table>
542
543     <input type="submit" value="login" />
544     <input type="hidden" name="next" value="{{ next }}" />
545     </form>
546
547     {% endblock %}
548
549 .. _forms documentation: ../forms/
550 .. _site framework docs: ../sites/
551
552 Other built-in views
553 --------------------
554
555 In addition to the ``login`` view, the authentication system includes a
556 few other useful built-in views:
557
558 ``django.contrib.auth.views.logout``
559 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
560
561 **Description:**
562
563 Logs a user out.
564
565 **Optional arguments:**
566
567     * ``template_name``: The full name of a template to display after
568       logging the user out. This will default to
569       ``registration/logged_out.html`` if no argument is supplied.
570
571 **Template context:**
572
573     * ``title``: The string "Logged out", localized.
574
575 ``django.contrib.auth.views.logout_then_login``
576 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
577
578 **Description:**
579
580 Logs a user out, then redirects to the login page.
581
582 **Optional arguments:**
583
584     * ``login_url``: The URL of the login page to redirect to. This
585       will default to ``settings.LOGIN_URL`` if not supplied.
586
587 ``django.contrib.auth.views.password_change``
588 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
589
590 **Description:**
591
592 Allows a user to change their password.
593
594 **Optional arguments:**
595
596     * ``template_name``: The full name of a template to use for
597       displaying the password change form. This will default to
598       ``registration/password_change_form.html`` if not supplied.
599
600 **Template context:**
601
602     * ``form``: The password change form.
603
604 ``django.contrib.auth.views.password_change_done``
605 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
606
607 **Description:**
608
609 The page shown after a user has changed their password.
610
611 **Optional arguments:**
612
613     * ``template_name``: The full name of a template to use. This will
614       default to ``registration/password_change_done.html`` if not
615       supplied.
616
617 ``django.contrib.auth.views.password_reset``
618 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
619
620 **Description:**
621
622 Allows a user to reset their password, and sends them the new password
623 in an email.
624
625 **Optional arguments:**
626
627     * ``template_name``: The full name of a template to use for
628       displaying the password reset form. This will default to
629       ``registration/password_reset_form.html`` if not supplied.
630
631     * ``email_template_name``: The full name of a template to use for
632       generating the email with the new password. This will default to
633       ``registration/password_reset_email.html`` if not supplied.
634
635 **Template context:**
636
637     * ``form``: The form for resetting the user's password.
638
639 ``django.contrib.auth.views.password_reset_done``
640 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
641
642 **Description:**
643
644 The page shown after a user has reset their password.
645
646 **Optional arguments:**
647
648     * ``template_name``: The full name of a template to use. This will
649       default to ``registration/password_reset_done.html`` if not
650       supplied.
651
652 ``django.contrib.auth.views.redirect_to_login``
653 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
654
655 **Description:**
656
657 Redirects to the login page, and then back to another URL after a
658 successful login.
659
660 **Required arguments:**
661
662     * ``next``: The URL to redirect to after a successful login.
663
664 **Optional arguments:**
665
666     * ``login_url``: The URL of the login page to redirect to. This
667       will default to ``settings.LOGIN_URL`` if not supplied.
668
669 Built-in manipulators
670 ---------------------
671
672 If you don't want to use the built-in views, but want the convenience
673 of not having to write manipulators for this functionality, the
674 authentication system provides several built-in manipulators:
675
676     * ``django.contrib.auth.forms.AdminPasswordChangeForm``: A
677       manipulator used in the admin interface to change a user's
678       password.
679
680     * ``django.contrib.auth.forms.AuthenticationForm``: A manipulator
681       for logging a user in.
682
683     * ``django.contrib.auth.forms.PasswordChangeForm``: A manipulator
684       for allowing a user to change their password.
685
686     * ``django.contrib.auth.forms.PasswordResetForm``: A manipulator
687       for resetting a user's password and emailing the new password to
688       them.
689
690     * ``django.contrib.auth.forms.UserCreationForm``: A manipulator
691       for creating a new user.
692
693 Limiting access to logged-in users that pass a test
694 ---------------------------------------------------
695
696 To limit access based on certain permissions or some other test, you'd do
697 essentially the same thing as described in the previous section.
698
699 The simple way is to run your test on ``request.user`` in the view directly.
700 For example, this view checks to make sure the user is logged in and has the
701 permission ``polls.can_vote``::
702
703     def my_view(request):
704         if not (request.user.is_authenticated() and request.user.has_perm('polls.can_vote')):
705             return HttpResponse("You can't vote in this poll.")
706         # ...
707
708 As a shortcut, you can use the convenient ``user_passes_test`` decorator::
709
710     from django.contrib.auth.decorators import user_passes_test
711
712     def my_view(request):
713         # ...
714     my_view = user_passes_test(lambda u: u.has_perm('polls.can_vote'))(my_view)
715
716 We're using this particular test as a relatively simple example. However, if
717 you just want to test whether a permission is available to a user, you can use
718 the ``permission_required()`` decorator, described later in this document.
719
720 Here's the same thing, using Python 2.4's decorator syntax::
721
722     from django.contrib.auth.decorators import user_passes_test
723
724     @user_passes_test(lambda u: u.has_perm('polls.can_vote'))
725     def my_view(request):
726         # ...
727
728 ``user_passes_test`` takes a required argument: a callable that takes a
729 ``User`` object and returns ``True`` if the user is allowed to view the page.
730 Note that ``user_passes_test`` does not automatically check that the ``User``
731 is not anonymous.
732
733 ``user_passes_test()`` takes an optional ``login_url`` argument, which lets you
734 specify the URL for your login page (``settings.LOGIN_URL`` by default).
735
736 Example in Python 2.3 syntax::
737
738     from django.contrib.auth.decorators import user_passes_test
739
740     def my_view(request):
741         # ...
742     my_view = user_passes_test(lambda u: u.has_perm('polls.can_vote'), login_url='/login/')(my_view)
743
744 Example in Python 2.4 syntax::
745
746     from django.contrib.auth.decorators import user_passes_test
747
748     @user_passes_test(lambda u: u.has_perm('polls.can_vote'), login_url='/login/')
749     def my_view(request):
750         # ...
751
752 The permission_required decorator
753 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
754
755 It's a relatively common task to check whether a user has a particular
756 permission. For that reason, Django provides a shortcut for that case: the
757 ``permission_required()`` decorator. Using this decorator, the earlier example
758 can be written as::
759
760     from django.contrib.auth.decorators import permission_required
761
762     def my_view(request):
763         # ...
764     my_view = permission_required('polls.can_vote')(my_view)
765
766 Note that ``permission_required()`` also takes an optional ``login_url``
767 parameter. Example::
768
769     from django.contrib.auth.decorators import permission_required
770
771     def my_view(request):
772         # ...
773     my_view = permission_required('polls.can_vote', login_url='/loginpage/')(my_view)
774
775 As in the ``login_required`` decorator, ``login_url`` defaults to
776 ``settings.LOGIN_URL``.
777
778 Limiting access to generic views
779 --------------------------------
780
781 To limit access to a `generic view`_, write a thin wrapper around the view,
782 and point your URLconf to your wrapper instead of the generic view itself.
783 For example::
784
785     from django.views.generic.date_based import object_detail
786
787     @login_required
788     def limited_object_detail(*args, **kwargs):
789         return object_detail(*args, **kwargs)
790
791 .. _generic view: ../generic_views/
792
793 Permissions
794 ===========
795
796 Django comes with a simple permissions system. It provides a way to assign
797 permissions to specific users and groups of users.
798
799 It's used by the Django admin site, but you're welcome to use it in your own
800 code.
801
802 The Django admin site uses permissions as follows:
803
804     * Access to view the "add" form and add an object is limited to users with
805       the "add" permission for that type of object.
806     * Access to view the change list, view the "change" form and change an
807       object is limited to users with the "change" permission for that type of
808       object.
809     * Access to delete an object is limited to users with the "delete"
810       permission for that type of object.
811
812 Permissions are set globally per type of object, not per specific object
813 instance. For example, it's possible to say "Mary may change news stories," but
814 it's not currently possible to say "Mary may change news stories, but only the
815 ones she created herself" or "Mary may only change news stories that have a
816 certain status, publication date or ID." The latter functionality is something
817 Django developers are currently discussing.
818
819 Default permissions
820 -------------------
821
822 When ``django.contrib.auth`` is listed in your ``INSTALLED_APPS``
823 setting, it will ensure that three default permissions -- add, change
824 and delete -- are created for each Django model defined in one of your
825 installed applications.
826
827 These permissions will be created when you run ``manage.py syncdb``;
828 the first time you run ``syncdb`` after adding ``django.contrib.auth``
829 to ``INSTALLED_APPS``, the default permissions will be created for all
830 previously-installed models, as well as for any new models being
831 installed at that time. Afterward, it will create default permissions
832 for new models each time you run ``manage.py syncdb``.
833
834 Custom permissions
835 ------------------
836
837 To create custom permissions for a given model object, use the ``permissions``
838 `model Meta attribute`_.
839
840 This example model creates three custom permissions::
841
842     class USCitizen(models.Model):
843         # ...
844         class Meta:
845             permissions = (
846                 ("can_drive", "Can drive"),
847                 ("can_vote", "Can vote in elections"),
848                 ("can_drink", "Can drink alcohol"),
849             )
850
851 The only thing this does is create those extra permissions when you run
852 ``syncdb``.
853
854 .. _model Meta attribute: ../model-api/#meta-options
855
856 API reference
857 -------------
858
859 Just like users, permissions are implemented in a Django model that lives in
860 `django/contrib/auth/models.py`_.
861
862 .. _django/contrib/auth/models.py: http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/models.py
863
864 Fields
865 ~~~~~~
866
867 ``Permission`` objects have the following fields:
868
869     * ``name`` -- Required. 50 characters or fewer. Example: ``'Can vote'``.
870     * ``content_type`` -- Required. A reference to the ``django_content_type``
871       database table, which contains a record for each installed Django model.
872     * ``codename`` -- Required. 100 characters or fewer. Example: ``'can_vote'``.
873
874 Methods
875 ~~~~~~~
876
877 ``Permission`` objects have the standard data-access methods like any other
878 `Django model`_.
879
880 Authentication data in templates
881 ================================
882
883 The currently logged-in user and his/her permissions are made available in the
884 `template context`_ when you use ``RequestContext``.
885
886 .. admonition:: Technicality
887
888    Technically, these variables are only made available in the template context
889    if you use ``RequestContext`` *and* your ``TEMPLATE_CONTEXT_PROCESSORS``
890    setting contains ``"django.core.context_processors.auth"``, which is default.
891    For more, see the `RequestContext docs`_.
892
893    .. _RequestContext docs: ../templates_python/#subclassing-context-requestcontext
894
895 Users
896 -----
897
898 The currently logged-in user, either a ``User`` instance or an``AnonymousUser``
899 instance, is stored in the template variable ``{{ user }}``::
900
901     {% if user.is_authenticated %}
902         <p>Welcome, {{ user.username }}. Thanks for logging in.</p>
903     {% else %}
904         <p>Welcome, new user. Please log in.</p>
905     {% endif %}
906
907 Permissions
908 -----------
909
910 The currently logged-in user's permissions are stored in the template variable
911 ``{{ perms }}``. This is an instance of ``django.core.context_processors.PermWrapper``,
912 which is a template-friendly proxy of permissions.
913
914 In the ``{{ perms }}`` object, single-attribute lookup is a proxy to
915 ``User.has_module_perms``. This example would display ``True`` if the logged-in
916 user had any permissions in the ``foo`` app::
917
918     {{ perms.foo }}
919
920 Two-level-attribute lookup is a proxy to ``User.has_perm``. This example would
921 display ``True`` if the logged-in user had the permission ``foo.can_vote``::
922
923     {{ perms.foo.can_vote }}
924
925 Thus, you can check permissions in template ``{% if %}`` statements::
926
927     {% if perms.foo %}
928         <p>You have permission to do something in the foo app.</p>
929         {% if perms.foo.can_vote %}
930             <p>You can vote!</p>
931         {% endif %}
932         {% if perms.foo.can_drive %}
933             <p>You can drive!</p>
934         {% endif %}
935     {% else %}
936         <p>You don't have permission to do anything in the foo app.</p>
937     {% endif %}
938
939 .. _template context: ../templates_python/
940
941 Groups
942 ======
943
944 Groups are a generic way of categorizing users so you can apply permissions, or
945 some other label, to those users. A user can belong to any number of groups.
946
947 A user in a group automatically has the permissions granted to that group. For
948 example, if the group ``Site editors`` has the permission
949 ``can_edit_home_page``, any user in that group will have that permission.
950
951 Beyond permissions, groups are a convenient way to categorize users to give
952 them some label, or extended functionality. For example, you could create a
953 group ``'Special users'``, and you could write code that could, say, give them
954 access to a members-only portion of your site, or send them members-only e-mail
955 messages.
956
957 Messages
958 ========
959
960 The message system is a lightweight way to queue messages for given users.
961
962 A message is associated with a ``User``. There's no concept of expiration or
963 timestamps.
964
965 Messages are used by the Django admin after successful actions. For example,
966 ``"The poll Foo was created successfully."`` is a message.
967
968 The API is simple:
969
970     * To create a new message, use
971       ``user_obj.message_set.create(message='message_text')``.
972     * To retrieve/delete messages, use ``user_obj.get_and_delete_messages()``,
973       which returns a list of ``Message`` objects in the user's queue (if any)
974       and deletes the messages from the queue.
975
976 In this example view, the system saves a message for the user after creating
977 a playlist::
978
979     def create_playlist(request, songs):
980         # Create the playlist with the given songs.
981         # ...
982         request.user.message_set.create(message="Your playlist was added successfully.")
983         return render_to_response("playlists/create.html",
984             context_instance=RequestContext(request))
985
986 When you use ``RequestContext``, the currently logged-in user and his/her
987 messages are made available in the `template context`_ as the template variable
988 ``{{ messages }}``. Here's an example of template code that displays messages::
989
990     {% if messages %}
991     <ul>
992         {% for message in messages %}
993         <li>{{ message }}</li>
994         {% endfor %}
995     </ul>
996     {% endif %}
997
998 Note that ``RequestContext`` calls ``get_and_delete_messages`` behind the
999 scenes, so any messages will be deleted even if you don't display them.
1000
1001 Finally, note that this messages framework only works with users in the user
1002 database. To send messages to anonymous users, use the `session framework`_.
1003
1004 .. _session framework: ../sessions/
1005
1006 Other authentication sources
1007 ============================
1008
1009 The authentication that comes with Django is good enough for most common cases,
1010 but you may have the need to hook into another authentication source -- that
1011 is, another source of usernames and passwords or authentication methods.
1012
1013 For example, your company may already have an LDAP setup that stores a username
1014 and password for every employee. It'd be a hassle for both the network
1015 administrator and the users themselves if users had separate accounts in LDAP
1016 and the Django-based applications.
1017
1018 So, to handle situations like this, the Django authentication system lets you
1019 plug in another authentication sources. You can override Django's default
1020 database-based scheme, or you can use the default system in tandem with other
1021 systems.
1022
1023 Specifying authentication backends
1024 ----------------------------------
1025
1026 Behind the scenes, Django maintains a list of "authentication backends" that it
1027 checks for authentication. When somebody calls
1028 ``django.contrib.auth.authenticate()`` -- as described in "How to log a user in"
1029 above -- Django tries authenticating across all of its authentication backends.
1030 If the first authentication method fails, Django tries the second one, and so
1031 on, until all backends have been attempted.
1032
1033 The list of authentication backends to use is specified in the
1034 ``AUTHENTICATION_BACKENDS`` setting. This should be a tuple of Python path
1035 names that point to Python classes that know how to authenticate. These classes
1036 can be anywhere on your Python path.
1037
1038 By default, ``AUTHENTICATION_BACKENDS`` is set to::
1039
1040     ('django.contrib.auth.backends.ModelBackend',)
1041
1042 That's the basic authentication scheme that checks the Django users database.
1043
1044 The order of ``AUTHENTICATION_BACKENDS`` matters, so if the same username and
1045 password is valid in multiple backends, Django will stop processing at the
1046 first positive match.
1047
1048 Writing an authentication backend
1049 ---------------------------------
1050
1051 An authentication backend is a class that implements two methods:
1052 ``get_user(user_id)`` and ``authenticate(**credentials)``.
1053
1054 The ``get_user`` method takes a ``user_id`` -- which could be a username,
1055 database ID or whatever -- and returns a ``User`` object.
1056
1057 The  ``authenticate`` method takes credentials as keyword arguments. Most of
1058 the time, it'll just look like this::
1059
1060     class MyBackend:
1061         def authenticate(self, username=None, password=None):
1062             # Check the username/password and return a User.
1063
1064 But it could also authenticate a token, like so::
1065
1066     class MyBackend:
1067         def authenticate(self, token=None):
1068             # Check the token and return a User.
1069
1070 Either way, ``authenticate`` should check the credentials it gets, and it
1071 should return a ``User`` object that matches those credentials, if the
1072 credentials are valid. If they're not valid, it should return ``None``.
1073
1074 The Django admin system is tightly coupled to the Django ``User`` object
1075 described at the beginning of this document. For now, the best way to deal with
1076 this is to create a Django ``User`` object for each user that exists for your
1077 backend (e.g., in your LDAP directory, your external SQL database, etc.) You
1078 can either write a script to do this in advance, or your ``authenticate``
1079 method can do it the first time a user logs in.
1080
1081 Here's an example backend that authenticates against a username and password
1082 variable defined in your ``settings.py`` file and creates a Django ``User``
1083 object the first time a user authenticates::
1084
1085     from django.conf import settings
1086     from django.contrib.auth.models import User, check_password
1087
1088     class SettingsBackend:
1089         """
1090         Authenticate against the settings ADMIN_LOGIN and ADMIN_PASSWORD.
1091
1092         Use the login name, and a hash of the password. For example:
1093
1094         ADMIN_LOGIN = 'admin'
1095         ADMIN_PASSWORD = 'sha1$4e987$afbcf42e21bd417fb71db8c66b321e9fc33051de'
1096         """
1097         def authenticate(self, username=None, password=None):
1098             login_valid = (settings.ADMIN_LOGIN == username)
1099             pwd_valid = check_password(password, settings.ADMIN_PASSWORD)
1100             if login_valid and pwd_valid:
1101                 try:
1102                     user = User.objects.get(username=username)
1103                 except User.DoesNotExist:
1104                     # Create a new user. Note that we can set password
1105                     # to anything, because it won't be checked; the password
1106                     # from settings.py will.
1107                     user = User(username=username, password='get from settings.py')
1108                     user.is_staff = True
1109                     user.is_superuser = True
1110                     user.save()
1111                 return user
1112             return None
1113
1114         def get_user(self, user_id):
1115             try:
1116                 return User.objects.get(pk=user_id)
1117             except User.DoesNotExist:
1118                 return None
1119
1120 Handling authorization in custom backends
1121 -----------------------------------------
1122
1123 Custom auth backends can provide their own permissions.
1124
1125 The user model will delegate permission lookup functions
1126 (``get_group_permissions()``, ``get_all_permissions()``, ``has_perm()``, and
1127 ``has_module_perms()``) to any authentication backend that implements these
1128 functions.
1129
1130 The permissions given to the user will be the superset of all permissions
1131 returned by all backends. That is, Django grants a permission to a user that any
1132 one backend grants.
1133
1134 The simple backend above could implement permissions for the magic admin fairly
1135 simply::
1136
1137     class SettingsBackend:
1138
1139         # ...
1140
1141         def has_perm(self, user_obj, perm):
1142             if user_obj.username == settings.ADMIN_LOGIN:
1143                 return True
1144             else:
1145                 return False
1146
1147 This gives full permissions to the user granted access in the above example. Notice
1148 that the backend auth functions all take the user object as an argument, and
1149 they also accept the same arguments given to the associated ``User`` functions.
1150
1151 A full authorization implementation can be found in
1152 ``django/contrib/auth/backends.py`` _, which is the default backend