Added some tests to modeltests/many_to_one that demonstrate a post-queryset-refactor...
[fdr-django.git] / docs / authentication.txt
blob79eaf673e7b54062ee9ae480671dc3b073f190b2
1 =============================
2 User authentication in Django
3 =============================
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.
9 Overview
10 ========
12 The auth system consists of:
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.
21 Installation
22 ============
24 Authentication support is bundled as a Django application in
25 ``django.contrib.auth``. To install it, do the following:
27     1. Put ``'django.contrib.auth'`` in your ``INSTALLED_APPS`` setting.
28     2. Run the command ``manage.py syncdb``.
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.
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.
41 Once you've taken those steps, that's it.
43 Users
44 =====
46 Users are represented by a standard Django model, which lives in
47 `django/contrib/auth/models.py`_.
49 .. _django/contrib/auth/models.py: http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/models.py
51 API reference
52 -------------
54 Fields
55 ~~~~~~
57 ``User`` objects have the following fields:
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.
78 Methods
79 ~~~~~~~
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`_::
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()
94 In addition to those automatic API methods, ``User`` objects have the following
95 custom methods:
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.
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.
106     * ``get_full_name()`` -- Returns the ``first_name`` plus the ``last_name``,
107       with a space in between.
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.
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.)
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.
122       You may need this if authentication for your application takes place
123       against an existing external source such as an LDAP directory.
125     * ``has_usable_password()`` -- **New in Django development version.**
126       Returns ``False`` if ``set_unusable_password()`` has been called for this
127       user.
129     * ``get_group_permissions()`` -- Returns a list of permission strings that
130       the user has, through his/her groups.
132     * ``get_all_permissions()`` -- Returns a list of permission strings that
133       the user has, both through group and user permissions.
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``.
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``.
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``.
148     * ``get_and_delete_messages()`` -- Returns a list of ``Message`` objects in
149       the user's queue and deletes the messages from the queue.
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.
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.
161 .. _Django model: ../model-api/
162 .. _DEFAULT_FROM_EMAIL: ../settings/#default-from-email
163 .. _storing additional user information: #storing-additional-information-about-users
165 Manager functions
166 ~~~~~~~~~~~~~~~~~
168 The ``User`` model has a custom manager that has the following helper functions:
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``.
174       If no password is provided, ``set_unusable_password()`` will be called.
176       See `Creating users`_ for example usage.
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``).
184 Basic usage
185 -----------
187 Creating users
188 ~~~~~~~~~~~~~~
190 The most basic way to create users is to use the ``create_user`` helper
191 function that comes with Django::
193     >>> from django.contrib.auth.models import User
194     >>> user = User.objects.create_user('john', 'lennon@thebeatles.com', 'johnpassword')
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()
202 Changing passwords
203 ~~~~~~~~~~~~~~~~~~
205 Change a password with ``set_password()``::
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()
212 Don't set the ``password`` attribute directly unless you know what you're
213 doing. This is explained in the next section.
215 Passwords
216 ---------
218 The ``password`` attribute of a ``User`` object is a string in this format::
220     hashtype$salt$hash
222 That's hashtype, salt and hash, separated by the dollar-sign character.
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.
231 For example::
233     sha1$a1976$a36cc8cbf81742a8fb52e221aaeab48ed7f58ab4
235 The ``User.set_password()`` and ``User.check_password()`` functions handle
236 the setting and checking of these values behind the scenes.
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.
243 Anonymous users
244 ---------------
246 ``django.contrib.auth.models.AnonymousUser`` is a class that implements
247 the ``django.contrib.auth.models.User`` interface, with these differences:
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``.
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.
262 Creating superusers
263 -------------------
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::
270     python /path/to/django/contrib/auth/create_superuser.py
272 Make sure to substitute ``/path/to/`` with the path to the Django codebase on
273 your filesystem.
275 Storing additional information about users
276 ------------------------------------------
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.
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``.
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:
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).
297 2. The (normalized to lower-case) name of the model class.
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::
303     AUTH_PROFILE_MODULE = 'accounts.userprofile'
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``.
310 For more information, see `Chapter 12 of the Django book`_.
312 .. _Chapter 12 of the Django book: http://www.djangobook.com/en/1.0/chapter12/#cn222
314 Authentication in Web requests
315 ==============================
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`_.
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.
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::
331     if request.user.is_authenticated():
332         # Do something for authenticated users.
333     else:
334         # Do something for anonymous users.
336 .. _request objects: ../request_response/#httprequest-objects
337 .. _session documentation: ../sessions/
339 How to log a user in
340 --------------------
342 Django provides two functions in ``django.contrib.auth``: ``authenticate()``
343 and ``login()``.
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::
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."
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.
365 This example shows how you might use both ``authenticate()`` and ``login()``::
367     from django.contrib.auth import authenticate, login
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.
382 .. admonition:: Calling ``authenticate()`` first
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.
391 .. _backends documentation: #other-authentication-sources
393 Manually checking a user's password
394 -----------------------------------
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.
403 How to log a user out
404 ---------------------
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::
410     from django.contrib.auth import logout
412     def logout_view(request):
413         logout(request)
414         # Redirect to a success page.
416 Note that ``logout()`` doesn't throw any errors if the user wasn't logged in.
418 Limiting access to logged-in users
419 ----------------------------------
421 The raw way
422 ~~~~~~~~~~~
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::
427     from django.http import HttpResponseRedirect
429     def my_view(request):
430         if not request.user.is_authenticated():
431             return HttpResponseRedirect('/login/?next=%s' % request.path)
432         # ...
434 ...or display an error message::
436     def my_view(request):
437         if not request.user.is_authenticated():
438             return render_to_response('myapp/login_error.html')
439         # ...
441 The login_required decorator
442 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
444 As a shortcut, you can use the convenient ``login_required`` decorator::
446     from django.contrib.auth.decorators import login_required
448     def my_view(request):
449         # ...
450     my_view = login_required(my_view)
452 Here's an equivalent example, using the more compact decorator syntax
453 introduced in Python 2.4::
455     from django.contrib.auth.decorators import login_required
457     @login_required
458     def my_view(request):
459         # ...
461 In the Django development version, ``login_required`` also takes an optional
462 ``redirect_field_name`` parameter. Example::
464     from django.contrib.auth.decorators import login_required
466     def my_view(request):
467         # ...
468     my_view = login_required(redirect_field_name='redirect_to')(my_view)
470 Again, an equivalent example of the more compact decorator syntax introduced in Python 2.4::
472     from django.contrib.auth.decorators import login_required
474     @login_required(redirect_field_name='redirect_to')
475     def my_view(request):
476         # ...
478 ``login_required`` does the following:
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.
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::
491     (r'^accounts/login/$', 'django.contrib.auth.views.login'),
493 Here's what ``django.contrib.auth.views.login`` does:
495     * If called via ``GET``, it displays a login form that POSTs to the same
496       URL. More on this in a bit.
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.
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:
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`_.
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::
523     (r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'myapp/login.html'}),
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::
529     {% extends "base.html" %}
531     {% block content %}
533     {% if form.has_errors %}
534     <p>Your username and password didn't match. Please try again.</p>
535     {% endif %}
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>
543     <input type="submit" value="login" />
544     <input type="hidden" name="next" value="{{ next }}" />
545     </form>
547     {% endblock %}
549 .. _forms documentation: ../forms/
550 .. _site framework docs: ../sites/
552 Other built-in views
553 --------------------
555 In addition to the ``login`` view, the authentication system includes a
556 few other useful built-in views:
558 ``django.contrib.auth.views.logout``
559 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
561 **Description:**
563 Logs a user out.
565 **Optional arguments:**
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.
571 **Template context:**
573     * ``title``: The string "Logged out", localized.
575 ``django.contrib.auth.views.logout_then_login``
576 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
578 **Description:**
580 Logs a user out, then redirects to the login page.
582 **Optional arguments:**
584     * ``login_url``: The URL of the login page to redirect to. This
585       will default to ``settings.LOGIN_URL`` if not supplied.
587 ``django.contrib.auth.views.password_change``
588 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
590 **Description:**
592 Allows a user to change their password.
594 **Optional arguments:**
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.
600 **Template context:**
602     * ``form``: The password change form.
604 ``django.contrib.auth.views.password_change_done``
605 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
607 **Description:**
609 The page shown after a user has changed their password.
611 **Optional arguments:**
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.
617 ``django.contrib.auth.views.password_reset``
618 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
620 **Description:**
622 Allows a user to reset their password, and sends them the new password
623 in an email.
625 **Optional arguments:**
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.
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.
635 **Template context:**
637     * ``form``: The form for resetting the user's password.
639 ``django.contrib.auth.views.password_reset_done``
640 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
642 **Description:**
644 The page shown after a user has reset their password.
646 **Optional arguments:**
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.
652 ``django.contrib.auth.views.redirect_to_login``
653 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
655 **Description:**
657 Redirects to the login page, and then back to another URL after a
658 successful login.
660 **Required arguments:**
662     * ``next``: The URL to redirect to after a successful login.
664 **Optional arguments:**
666     * ``login_url``: The URL of the login page to redirect to. This
667       will default to ``settings.LOGIN_URL`` if not supplied.
669 Built-in manipulators
670 ---------------------
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:
676     * ``django.contrib.auth.forms.AdminPasswordChangeForm``: A
677       manipulator used in the admin interface to change a user's
678       password.
680     * ``django.contrib.auth.forms.AuthenticationForm``: A manipulator
681       for logging a user in.
683     * ``django.contrib.auth.forms.PasswordChangeForm``: A manipulator
684       for allowing a user to change their password.
686     * ``django.contrib.auth.forms.PasswordResetForm``: A manipulator
687       for resetting a user's password and emailing the new password to
688       them.
690     * ``django.contrib.auth.forms.UserCreationForm``: A manipulator
691       for creating a new user.
693 Limiting access to logged-in users that pass a test
694 ---------------------------------------------------
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.
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``::
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         # ...
708 As a shortcut, you can use the convenient ``user_passes_test`` decorator::
710     from django.contrib.auth.decorators import user_passes_test
712     def my_view(request):
713         # ...
714     my_view = user_passes_test(lambda u: u.has_perm('polls.can_vote'))(my_view)
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.
720 Here's the same thing, using Python 2.4's decorator syntax::
722     from django.contrib.auth.decorators import user_passes_test
724     @user_passes_test(lambda u: u.has_perm('polls.can_vote'))
725     def my_view(request):
726         # ...
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.
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).
736 Example in Python 2.3 syntax::
738     from django.contrib.auth.decorators import user_passes_test
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)
744 Example in Python 2.4 syntax::
746     from django.contrib.auth.decorators import user_passes_test
748     @user_passes_test(lambda u: u.has_perm('polls.can_vote'), login_url='/login/')
749     def my_view(request):
750         # ...
752 The permission_required decorator
753 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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::
760     from django.contrib.auth.decorators import permission_required
762     def my_view(request):
763         # ...
764     my_view = permission_required('polls.can_vote')(my_view)
766 Note that ``permission_required()`` also takes an optional ``login_url``
767 parameter. Example::
769     from django.contrib.auth.decorators import permission_required
771     def my_view(request):
772         # ...
773     my_view = permission_required('polls.can_vote', login_url='/loginpage/')(my_view)
775 As in the ``login_required`` decorator, ``login_url`` defaults to
776 ``settings.LOGIN_URL``.
778 Limiting access to generic views
779 --------------------------------
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::
785     from django.views.generic.date_based import object_detail
787     @login_required
788     def limited_object_detail(*args, **kwargs):
789         return object_detail(*args, **kwargs)
791 .. _generic view: ../generic_views/
793 Permissions
794 ===========
796 Django comes with a simple permissions system. It provides a way to assign
797 permissions to specific users and groups of users.
799 It's used by the Django admin site, but you're welcome to use it in your own
800 code.
802 The Django admin site uses permissions as follows:
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.
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.
819 Default permissions
820 -------------------
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.
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``.
834 Custom permissions
835 ------------------
837 To create custom permissions for a given model object, use the ``permissions``
838 `model Meta attribute`_.
840 This example model creates three custom permissions::
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             )
851 The only thing this does is create those extra permissions when you run
852 ``syncdb``.
854 .. _model Meta attribute: ../model-api/#meta-options
856 API reference
857 -------------
859 Just like users, permissions are implemented in a Django model that lives in
860 `django/contrib/auth/models.py`_.
862 .. _django/contrib/auth/models.py: http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/models.py
864 Fields
865 ~~~~~~
867 ``Permission`` objects have the following fields:
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'``.
874 Methods
875 ~~~~~~~
877 ``Permission`` objects have the standard data-access methods like any other
878 `Django model`_.
880 Authentication data in templates
881 ================================
883 The currently logged-in user and his/her permissions are made available in the
884 `template context`_ when you use ``RequestContext``.
886 .. admonition:: Technicality
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`_.
893    .. _RequestContext docs: ../templates_python/#subclassing-context-requestcontext
895 Users
896 -----
898 The currently logged-in user, either a ``User`` instance or an``AnonymousUser``
899 instance, is stored in the template variable ``{{ user }}``::
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 %}
907 Permissions
908 -----------
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.
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::
918     {{ perms.foo }}
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``::
923     {{ perms.foo.can_vote }}
925 Thus, you can check permissions in template ``{% if %}`` statements::
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 %}
939 .. _template context: ../templates_python/
941 Groups
942 ======
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.
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.
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.
957 Messages
958 ========
960 The message system is a lightweight way to queue messages for given users.
962 A message is associated with a ``User``. There's no concept of expiration or
963 timestamps.
965 Messages are used by the Django admin after successful actions. For example,
966 ``"The poll Foo was created successfully."`` is a message.
968 The API is simple:
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.
976 In this example view, the system saves a message for the user after creating
977 a playlist::
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))
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::
990     {% if messages %}
991     <ul>
992         {% for message in messages %}
993         <li>{{ message }}</li>
994         {% endfor %}
995     </ul>
996     {% endif %}
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.
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`_.
1004 .. _session framework: ../sessions/
1006 Other authentication sources
1007 ============================
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.
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.
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.
1023 Specifying authentication backends
1024 ----------------------------------
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.
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.
1038 By default, ``AUTHENTICATION_BACKENDS`` is set to::
1040     ('django.contrib.auth.backends.ModelBackend',)
1042 That's the basic authentication scheme that checks the Django users database.
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.
1048 Writing an authentication backend
1049 ---------------------------------
1051 An authentication backend is a class that implements two methods:
1052 ``get_user(user_id)`` and ``authenticate(**credentials)``.
1054 The ``get_user`` method takes a ``user_id`` -- which could be a username,
1055 database ID or whatever -- and returns a ``User`` object.
1057 The  ``authenticate`` method takes credentials as keyword arguments. Most of
1058 the time, it'll just look like this::
1060     class MyBackend:
1061         def authenticate(self, username=None, password=None):
1062             # Check the username/password and return a User.
1064 But it could also authenticate a token, like so::
1066     class MyBackend:
1067         def authenticate(self, token=None):
1068             # Check the token and return a User.
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``.
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.
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::
1085     from django.conf import settings
1086     from django.contrib.auth.models import User, check_password
1088     class SettingsBackend:
1089         """
1090         Authenticate against the settings ADMIN_LOGIN and ADMIN_PASSWORD.
1092         Use the login name, and a hash of the password. For example:
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
1114         def get_user(self, user_id):
1115             try:
1116                 return User.objects.get(pk=user_id)
1117             except User.DoesNotExist:
1118                 return None
1120 Handling authorization in custom backends
1121 -----------------------------------------
1123 Custom auth backends can provide their own permissions.
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.
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.
1134 The simple backend above could implement permissions for the magic admin fairly
1135 simply::
1137     class SettingsBackend:
1139         # ...
1141         def has_perm(self, user_obj, perm):
1142             if user_obj.username == settings.ADMIN_LOGIN:
1143                 return True
1144             else:
1145                 return False
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.
1151 A full authorization implementation can be found in
1152 ``django/contrib/auth/backends.py`` _, which is the default backend and queries
1153 the ``auth_permission`` table most of the time.
1155 .. _django/contrib/auth/backends.py: http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/backends.py