2009-12-26 11:44:21 +08:00
|
|
|
==========
|
|
|
|
Middleware
|
|
|
|
==========
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
.. module:: django.middleware
|
|
|
|
:synopsis: Django's built-in middleware classes.
|
|
|
|
|
|
|
|
This document explains all middleware components that come with Django. For
|
2011-06-20 03:40:18 +08:00
|
|
|
information on how to use them and how to write your own middleware, see
|
2010-08-20 03:27:44 +08:00
|
|
|
the :doc:`middleware usage guide </topics/http/middleware>`.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
Available middleware
|
|
|
|
====================
|
|
|
|
|
|
|
|
Cache middleware
|
|
|
|
----------------
|
|
|
|
|
|
|
|
.. module:: django.middleware.cache
|
2009-02-15 13:46:00 +08:00
|
|
|
:synopsis: Middleware for the site-wide cache.
|
|
|
|
|
2010-11-28 05:58:20 +08:00
|
|
|
.. class:: UpdateCacheMiddleware
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-11-28 05:58:20 +08:00
|
|
|
.. class:: FetchFromCacheMiddleware
|
2008-09-01 17:42:15 +08:00
|
|
|
|
|
|
|
Enable the site-wide cache. If these are enabled, each Django-powered page will
|
2008-08-24 06:25:40 +08:00
|
|
|
be cached for as long as the :setting:`CACHE_MIDDLEWARE_SECONDS` setting
|
2010-08-20 03:27:44 +08:00
|
|
|
defines. See the :doc:`cache documentation </topics/cache>`.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
"Common" middleware
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
.. module:: django.middleware.common
|
|
|
|
:synopsis: Middleware adding "common" conveniences for perfectionists.
|
2009-02-15 13:46:00 +08:00
|
|
|
|
2010-11-28 05:58:20 +08:00
|
|
|
.. class:: CommonMiddleware
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
Adds a few conveniences for perfectionists:
|
|
|
|
|
2011-10-14 08:12:01 +08:00
|
|
|
* Forbids access to user agents in the :setting:`DISALLOWED_USER_AGENTS`
|
|
|
|
setting, which should be a list of strings.
|
|
|
|
|
|
|
|
* Performs URL rewriting based on the :setting:`APPEND_SLASH` and
|
|
|
|
:setting:`PREPEND_WWW` settings.
|
|
|
|
|
|
|
|
If :setting:`APPEND_SLASH` is ``True`` and the initial URL doesn't end
|
|
|
|
with a slash, and it is not found in the URLconf, then a new URL is
|
|
|
|
formed by appending a slash at the end. If this new URL is found in the
|
|
|
|
URLconf, then Django redirects the request to this new URL. Otherwise,
|
|
|
|
the initial URL is processed as usual.
|
|
|
|
|
|
|
|
For example, ``foo.com/bar`` will be redirected to ``foo.com/bar/`` if
|
|
|
|
you don't have a valid URL pattern for ``foo.com/bar`` but *do* have a
|
|
|
|
valid pattern for ``foo.com/bar/``.
|
|
|
|
|
|
|
|
If :setting:`PREPEND_WWW` is ``True``, URLs that lack a leading "www."
|
|
|
|
will be redirected to the same URL with a leading "www."
|
|
|
|
|
|
|
|
Both of these options are meant to normalize URLs. The philosophy is that
|
|
|
|
each URL should exist in one, and only one, place. Technically a URL
|
|
|
|
``foo.com/bar`` is distinct from ``foo.com/bar/`` -- a search-engine
|
|
|
|
indexer would treat them as separate URLs -- so it's best practice to
|
|
|
|
normalize URLs.
|
|
|
|
|
|
|
|
* Handles ETags based on the :setting:`USE_ETAGS` setting. If
|
|
|
|
:setting:`USE_ETAGS` is set to ``True``, Django will calculate an ETag
|
|
|
|
for each request by MD5-hashing the page content, and it'll take care of
|
|
|
|
sending ``Not Modified`` responses, if appropriate.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2013-01-02 05:28:48 +08:00
|
|
|
.. class:: BrokenLinkEmailsMiddleware
|
|
|
|
|
|
|
|
* Sends broken link notification emails to :setting:`MANAGERS` (see
|
|
|
|
:doc:`/howto/error-reporting`).
|
|
|
|
|
2012-01-10 05:42:03 +08:00
|
|
|
GZip middleware
|
2008-08-24 06:25:40 +08:00
|
|
|
---------------
|
|
|
|
|
|
|
|
.. module:: django.middleware.gzip
|
2012-01-10 05:42:03 +08:00
|
|
|
:synopsis: Middleware to serve GZipped content for performance.
|
2009-02-15 13:46:00 +08:00
|
|
|
|
2010-11-28 05:58:20 +08:00
|
|
|
.. class:: GZipMiddleware
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2012-01-10 05:42:03 +08:00
|
|
|
Compresses content for browsers that understand GZip compression (all modern
|
2008-08-24 06:25:40 +08:00
|
|
|
browsers).
|
|
|
|
|
2012-10-17 19:03:40 +08:00
|
|
|
This middleware should be placed before any other middleware that need to
|
|
|
|
read or write the response body so that compression happens afterward.
|
2012-01-10 05:42:03 +08:00
|
|
|
|
2012-02-04 04:45:45 +08:00
|
|
|
It will NOT compress content if any of the following are true:
|
2012-01-10 05:42:03 +08:00
|
|
|
|
2012-02-04 04:45:45 +08:00
|
|
|
* The content body is less than 200 bytes long.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2012-02-04 04:45:45 +08:00
|
|
|
* The response has already set the ``Content-Encoding`` header.
|
|
|
|
|
|
|
|
* The request (the browser) hasn't sent an ``Accept-Encoding`` header
|
|
|
|
containing ``gzip``.
|
|
|
|
|
|
|
|
* The request is from Internet Explorer and the ``Content-Type`` header
|
|
|
|
contains ``javascript`` or starts with anything other than ``text/``.
|
|
|
|
We do this to avoid a bug in early versions of IE that caused decompression
|
|
|
|
not to be performed on certain content types.
|
|
|
|
|
|
|
|
You can apply GZip compression to individual views using the
|
2013-01-01 21:12:42 +08:00
|
|
|
:func:`~django.views.decorators.gzip.gzip_page()` decorator.
|
2010-12-27 21:27:26 +08:00
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
Conditional GET middleware
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
.. module:: django.middleware.http
|
|
|
|
:synopsis: Middleware handling advanced HTTP features.
|
|
|
|
|
2010-11-28 05:58:20 +08:00
|
|
|
.. class:: ConditionalGetMiddleware
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
Handles conditional GET operations. If the response has a ``ETag`` or
|
|
|
|
``Last-Modified`` header, and the request has ``If-None-Match`` or
|
|
|
|
``If-Modified-Since``, the response is replaced by an
|
2013-01-01 21:12:42 +08:00
|
|
|
:class:`~django.http.HttpResponseNotModified`.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
Also sets the ``Date`` and ``Content-Length`` response-headers.
|
|
|
|
|
|
|
|
Reverse proxy middleware
|
|
|
|
------------------------
|
|
|
|
|
2010-11-28 05:58:20 +08:00
|
|
|
.. class:: SetRemoteAddrFromForwardedFor
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2009-07-29 13:35:51 +08:00
|
|
|
This middleware was removed in Django 1.1. See :ref:`the release notes
|
|
|
|
<removed-setremoteaddrfromforwardedfor-middleware>` for details.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
Locale middleware
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
.. module:: django.middleware.locale
|
|
|
|
:synopsis: Middleware to enable language selection based on the request.
|
2009-02-15 13:46:00 +08:00
|
|
|
|
2010-11-28 05:58:20 +08:00
|
|
|
.. class:: LocaleMiddleware
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2009-02-15 13:46:00 +08:00
|
|
|
Enables language selection based on data from the request. It customizes
|
2010-08-20 03:27:44 +08:00
|
|
|
content for each user. See the :doc:`internationalization documentation
|
2012-07-29 01:31:41 +08:00
|
|
|
</topics/i18n/translation>`.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2009-12-10 00:57:23 +08:00
|
|
|
Message middleware
|
|
|
|
------------------
|
|
|
|
|
|
|
|
.. module:: django.contrib.messages.middleware
|
|
|
|
:synopsis: Message middleware.
|
|
|
|
|
2010-11-28 05:58:20 +08:00
|
|
|
.. class:: MessageMiddleware
|
2009-12-10 00:57:23 +08:00
|
|
|
|
2009-12-26 11:44:21 +08:00
|
|
|
Enables cookie- and session-based message support. See the
|
2010-08-20 03:27:44 +08:00
|
|
|
:doc:`messages documentation </ref/contrib/messages>`.
|
2009-12-10 00:57:23 +08:00
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
Session middleware
|
|
|
|
------------------
|
|
|
|
|
|
|
|
.. module:: django.contrib.sessions.middleware
|
|
|
|
:synopsis: Session middleware.
|
|
|
|
|
2010-11-28 05:58:20 +08:00
|
|
|
.. class:: SessionMiddleware
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
Enables session support. See the :doc:`session documentation
|
|
|
|
</topics/http/sessions>`.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
Authentication middleware
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
.. module:: django.contrib.auth.middleware
|
2009-02-15 13:46:00 +08:00
|
|
|
:synopsis: Authentication middleware.
|
|
|
|
|
2010-11-28 05:58:20 +08:00
|
|
|
.. class:: AuthenticationMiddleware
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2009-02-15 13:46:00 +08:00
|
|
|
Adds the ``user`` attribute, representing the currently-logged-in user, to
|
2012-12-29 03:00:11 +08:00
|
|
|
every incoming ``HttpRequest`` object. See :ref:`Authentication in Web requests
|
|
|
|
<auth-web-requests>`.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
CSRF protection middleware
|
|
|
|
--------------------------
|
|
|
|
|
2009-10-27 08:36:34 +08:00
|
|
|
.. module:: django.middleware.csrf
|
2009-02-15 13:46:00 +08:00
|
|
|
:synopsis: Middleware adding protection against Cross Site Request
|
|
|
|
Forgeries.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2011-11-13 01:37:29 +08:00
|
|
|
.. class:: CsrfViewMiddleware
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
Adds protection against Cross Site Request Forgeries by adding hidden form
|
|
|
|
fields to POST forms and checking requests for the correct value. See the
|
2010-08-20 03:27:44 +08:00
|
|
|
:doc:`Cross Site Request Forgery protection documentation </ref/contrib/csrf>`.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
Transaction middleware
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
.. module:: django.middleware.transaction
|
2010-10-09 16:12:50 +08:00
|
|
|
:synopsis: Middleware binding a database transaction to each Web request.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2010-11-28 05:58:20 +08:00
|
|
|
.. class:: TransactionMiddleware
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2013-03-06 18:12:24 +08:00
|
|
|
.. versionchanged:: 1.6
|
2013-03-25 13:53:48 +08:00
|
|
|
|
2013-03-06 18:12:24 +08:00
|
|
|
``TransactionMiddleware`` is deprecated. The documentation of transactions
|
|
|
|
contains :ref:`upgrade instructions <transactions-upgrading-from-1.5>`.
|
|
|
|
|
2012-10-11 18:47:29 +08:00
|
|
|
Binds commit and rollback of the default database to the request/response
|
|
|
|
phase. If a view function runs successfully, a commit is done. If it fails with
|
|
|
|
an exception, a rollback is done.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
The order of this middleware in the stack is important: middleware modules
|
|
|
|
running outside of it run with commit-on-save - the default Django behavior.
|
|
|
|
Middleware modules running inside it (coming later in the stack) will be under
|
|
|
|
the same transaction control as the view functions.
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`transaction management documentation </topics/db/transactions>`.
|
2011-05-31 06:27:47 +08:00
|
|
|
|
|
|
|
X-Frame-Options middleware
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
.. module:: django.middleware.clickjacking
|
|
|
|
:synopsis: Clickjacking protection
|
|
|
|
|
|
|
|
.. class:: XFrameOptionsMiddleware
|
|
|
|
|
|
|
|
Simple :doc:`clickjacking protection via the X-Frame-Options header </ref/clickjacking/>`.
|