request-response.txt 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857
  1. ============================
  2. Request and response objects
  3. ============================
  4. .. module:: django.http
  5. :synopsis: Classes dealing with HTTP requests and responses.
  6. Quick overview
  7. ==============
  8. Django uses request and response objects to pass state through the system.
  9. When a page is requested, Django creates an :class:`HttpRequest` object that
  10. contains metadata about the request. Then Django loads the appropriate view,
  11. passing the :class:`HttpRequest` as the first argument to the view function.
  12. Each view is responsible for returning an :class:`HttpResponse` object.
  13. This document explains the APIs for :class:`HttpRequest` and
  14. :class:`HttpResponse` objects, which are defined in the :mod:`django.http`
  15. module.
  16. HttpRequest objects
  17. ===================
  18. .. class:: HttpRequest
  19. .. _httprequest-attributes:
  20. Attributes
  21. ----------
  22. All attributes should be considered read-only, unless stated otherwise below.
  23. ``session`` is a notable exception.
  24. .. attribute:: HttpRequest.body
  25. The raw HTTP request body as a byte string. This is useful for processing
  26. data in different ways than conventional HTML forms: binary images,
  27. XML payload etc. For processing conventional form data, use ``HttpRequest.POST``.
  28. You can also read from an HttpRequest using a file-like interface. See
  29. :meth:`HttpRequest.read()`.
  30. .. attribute:: HttpRequest.path
  31. A string representing the full path to the requested page, not including
  32. the domain.
  33. Example: ``"/music/bands/the_beatles/"``
  34. .. attribute:: HttpRequest.path_info
  35. Under some Web server configurations, the portion of the URL after the
  36. host name is split up into a script prefix portion and a path info
  37. portion. The ``path_info`` attribute always contains the path info portion
  38. of the path, no matter what Web server is being used. Using this instead
  39. of :attr:`~HttpRequest.path` can make your code easier to move between
  40. test and deployment servers.
  41. For example, if the ``WSGIScriptAlias`` for your application is set to
  42. ``"/minfo"``, then ``path`` might be ``"/minfo/music/bands/the_beatles/"``
  43. and ``path_info`` would be ``"/music/bands/the_beatles/"``.
  44. .. attribute:: HttpRequest.method
  45. A string representing the HTTP method used in the request. This is
  46. guaranteed to be uppercase. Example::
  47. if request.method == 'GET':
  48. do_something()
  49. elif request.method == 'POST':
  50. do_something_else()
  51. .. attribute:: HttpRequest.encoding
  52. A string representing the current encoding used to decode form submission
  53. data (or ``None``, which means the :setting:`DEFAULT_CHARSET` setting is
  54. used). You can write to this attribute to change the encoding used when
  55. accessing the form data. Any subsequent attribute accesses (such as reading
  56. from ``GET`` or ``POST``) will use the new ``encoding`` value. Useful if
  57. you know the form data is not in the :setting:`DEFAULT_CHARSET` encoding.
  58. .. attribute:: HttpRequest.GET
  59. A dictionary-like object containing all given HTTP GET parameters. See the
  60. :class:`QueryDict` documentation below.
  61. .. attribute:: HttpRequest.POST
  62. A dictionary-like object containing all given HTTP POST parameters,
  63. providing that the request contains form data. See the
  64. :class:`QueryDict` documentation below. If you need to access raw or
  65. non-form data posted in the request, access this through the
  66. :attr:`HttpRequest.body` attribute instead.
  67. .. versionchanged:: 1.5
  68. Before Django 1.5, HttpRequest.POST contained non-form data.
  69. It's possible that a request can come in via POST with an empty ``POST``
  70. dictionary -- if, say, a form is requested via the POST HTTP method but
  71. does not include form data. Therefore, you shouldn't use ``if request.POST``
  72. to check for use of the POST method; instead, use ``if request.method ==
  73. "POST"`` (see above).
  74. Note: ``POST`` does *not* include file-upload information. See ``FILES``.
  75. .. attribute:: HttpRequest.REQUEST
  76. For convenience, a dictionary-like object that searches ``POST`` first,
  77. then ``GET``. Inspired by PHP's ``$_REQUEST``.
  78. For example, if ``GET = {"name": "john"}`` and ``POST = {"age": '34'}``,
  79. ``REQUEST["name"]`` would be ``"john"``, and ``REQUEST["age"]`` would be
  80. ``"34"``.
  81. It's strongly suggested that you use ``GET`` and ``POST`` instead of
  82. ``REQUEST``, because the former are more explicit.
  83. .. attribute:: HttpRequest.COOKIES
  84. A standard Python dictionary containing all cookies. Keys and values are
  85. strings.
  86. .. attribute:: HttpRequest.FILES
  87. A dictionary-like object containing all uploaded files. Each key in
  88. ``FILES`` is the ``name`` from the ``<input type="file" name="" />``. Each
  89. value in ``FILES`` is an :class:`UploadedFile` as described below.
  90. See :doc:`/topics/files` for more information.
  91. Note that ``FILES`` will only contain data if the request method was POST
  92. and the ``<form>`` that posted to the request had
  93. ``enctype="multipart/form-data"``. Otherwise, ``FILES`` will be a blank
  94. dictionary-like object.
  95. .. attribute:: HttpRequest.META
  96. A standard Python dictionary containing all available HTTP headers.
  97. Available headers depend on the client and server, but here are some
  98. examples:
  99. * ``CONTENT_LENGTH`` -- the length of the request body (as a string).
  100. * ``CONTENT_TYPE`` -- the MIME type of the request body.
  101. * ``HTTP_ACCEPT_ENCODING`` -- Acceptable encodings for the response.
  102. * ``HTTP_ACCEPT_LANGUAGE`` -- Acceptable languages for the response.
  103. * ``HTTP_HOST`` -- The HTTP Host header sent by the client.
  104. * ``HTTP_REFERER`` -- The referring page, if any.
  105. * ``HTTP_USER_AGENT`` -- The client's user-agent string.
  106. * ``QUERY_STRING`` -- The query string, as a single (unparsed) string.
  107. * ``REMOTE_ADDR`` -- The IP address of the client.
  108. * ``REMOTE_HOST`` -- The hostname of the client.
  109. * ``REMOTE_USER`` -- The user authenticated by the Web server, if any.
  110. * ``REQUEST_METHOD`` -- A string such as ``"GET"`` or ``"POST"``.
  111. * ``SERVER_NAME`` -- The hostname of the server.
  112. * ``SERVER_PORT`` -- The port of the server (as a string).
  113. With the exception of ``CONTENT_LENGTH`` and ``CONTENT_TYPE``, as given
  114. above, any HTTP headers in the request are converted to ``META`` keys by
  115. converting all characters to uppercase, replacing any hyphens with
  116. underscores and adding an ``HTTP_`` prefix to the name. So, for example, a
  117. header called ``X-Bender`` would be mapped to the ``META`` key
  118. ``HTTP_X_BENDER``.
  119. .. attribute:: HttpRequest.user
  120. A ``django.contrib.auth.models.User`` object representing the currently
  121. logged-in user. If the user isn't currently logged in, ``user`` will be set
  122. to an instance of ``django.contrib.auth.models.AnonymousUser``. You
  123. can tell them apart with ``is_authenticated()``, like so::
  124. if request.user.is_authenticated():
  125. # Do something for logged-in users.
  126. else:
  127. # Do something for anonymous users.
  128. ``user`` is only available if your Django installation has the
  129. ``AuthenticationMiddleware`` activated. For more, see
  130. :doc:`/topics/auth/index`.
  131. .. attribute:: HttpRequest.session
  132. A readable-and-writable, dictionary-like object that represents the current
  133. session. This is only available if your Django installation has session
  134. support activated. See the :doc:`session documentation
  135. </topics/http/sessions>` for full details.
  136. .. attribute:: HttpRequest.urlconf
  137. Not defined by Django itself, but will be read if other code (e.g., a custom
  138. middleware class) sets it. When present, this will be used as the root
  139. URLconf for the current request, overriding the :setting:`ROOT_URLCONF`
  140. setting. See :ref:`how-django-processes-a-request` for details.
  141. .. attribute:: HttpRequest.resolver_match
  142. .. versionadded:: 1.5
  143. An instance of :class:`~django.core.urlresolvers.ResolverMatch` representing
  144. the resolved url. This attribute is only set after url resolving took place,
  145. which means it's available in all views but not in middleware methods which
  146. are executed before url resolving takes place (like ``process_request``, you
  147. can use ``process_view`` instead).
  148. Methods
  149. -------
  150. .. method:: HttpRequest.get_host()
  151. Returns the originating host of the request using information from the
  152. ``HTTP_X_FORWARDED_HOST`` (if :setting:`USE_X_FORWARDED_HOST` is enabled)
  153. and ``HTTP_HOST`` headers, in that order. If they don't provide a value,
  154. the method uses a combination of ``SERVER_NAME`` and ``SERVER_PORT`` as
  155. detailed in :pep:`3333`.
  156. Example: ``"127.0.0.1:8000"``
  157. .. note:: The :meth:`~HttpRequest.get_host()` method fails when the host is
  158. behind multiple proxies. One solution is to use middleware to rewrite
  159. the proxy headers, as in the following example::
  160. class MultipleProxyMiddleware(object):
  161. FORWARDED_FOR_FIELDS = [
  162. 'HTTP_X_FORWARDED_FOR',
  163. 'HTTP_X_FORWARDED_HOST',
  164. 'HTTP_X_FORWARDED_SERVER',
  165. ]
  166. def process_request(self, request):
  167. """
  168. Rewrites the proxy headers so that only the most
  169. recent proxy is used.
  170. """
  171. for field in self.FORWARDED_FOR_FIELDS:
  172. if field in request.META:
  173. if ',' in request.META[field]:
  174. parts = request.META[field].split(',')
  175. request.META[field] = parts[-1].strip()
  176. This middleware should be positioned before any other middleware that
  177. relies on the value of :meth:`~HttpRequest.get_host()` -- for instance,
  178. :class:`~django.middleware.common.CommonMiddleware` or
  179. :class:`~django.middleware.csrf.CsrfViewMiddleware`.
  180. .. method:: HttpRequest.get_full_path()
  181. Returns the ``path``, plus an appended query string, if applicable.
  182. Example: ``"/music/bands/the_beatles/?print=true"``
  183. .. method:: HttpRequest.build_absolute_uri(location)
  184. Returns the absolute URI form of ``location``. If no location is provided,
  185. the location will be set to ``request.get_full_path()``.
  186. If the location is already an absolute URI, it will not be altered.
  187. Otherwise the absolute URI is built using the server variables available in
  188. this request.
  189. Example: ``"http://example.com/music/bands/the_beatles/?print=true"``
  190. .. method:: HttpRequest.get_signed_cookie(key, default=RAISE_ERROR, salt='', max_age=None)
  191. Returns a cookie value for a signed cookie, or raises a
  192. ``django.core.signing.BadSignature`` exception if the signature is
  193. no longer valid. If you provide the ``default`` argument the exception
  194. will be suppressed and that default value will be returned instead.
  195. The optional ``salt`` argument can be used to provide extra protection
  196. against brute force attacks on your secret key. If supplied, the
  197. ``max_age`` argument will be checked against the signed timestamp
  198. attached to the cookie value to ensure the cookie is not older than
  199. ``max_age`` seconds.
  200. For example::
  201. >>> request.get_signed_cookie('name')
  202. 'Tony'
  203. >>> request.get_signed_cookie('name', salt='name-salt')
  204. 'Tony' # assuming cookie was set using the same salt
  205. >>> request.get_signed_cookie('non-existing-cookie')
  206. ...
  207. KeyError: 'non-existing-cookie'
  208. >>> request.get_signed_cookie('non-existing-cookie', False)
  209. False
  210. >>> request.get_signed_cookie('cookie-that-was-tampered-with')
  211. ...
  212. BadSignature: ...
  213. >>> request.get_signed_cookie('name', max_age=60)
  214. ...
  215. SignatureExpired: Signature age 1677.3839159 > 60 seconds
  216. >>> request.get_signed_cookie('name', False, max_age=60)
  217. False
  218. See :doc:`cryptographic signing </topics/signing>` for more information.
  219. .. method:: HttpRequest.is_secure()
  220. Returns ``True`` if the request is secure; that is, if it was made with
  221. HTTPS.
  222. .. method:: HttpRequest.is_ajax()
  223. Returns ``True`` if the request was made via an ``XMLHttpRequest``, by
  224. checking the ``HTTP_X_REQUESTED_WITH`` header for the string
  225. ``'XMLHttpRequest'``. Most modern JavaScript libraries send this header.
  226. If you write your own XMLHttpRequest call (on the browser side), you'll
  227. have to set this header manually if you want ``is_ajax()`` to work.
  228. .. method:: HttpRequest.read(size=None)
  229. .. method:: HttpRequest.readline()
  230. .. method:: HttpRequest.readlines()
  231. .. method:: HttpRequest.xreadlines()
  232. .. method:: HttpRequest.__iter__()
  233. Methods implementing a file-like interface for reading from an
  234. HttpRequest instance. This makes it possible to consume an incoming
  235. request in a streaming fashion. A common use-case would be to process a
  236. big XML payload with iterative parser without constructing a whole
  237. XML tree in memory.
  238. Given this standard interface, an HttpRequest instance can be
  239. passed directly to an XML parser such as ElementTree::
  240. import xml.etree.ElementTree as ET
  241. for element in ET.iterparse(request):
  242. process(element)
  243. UploadedFile objects
  244. ====================
  245. .. class:: UploadedFile
  246. Attributes
  247. ----------
  248. .. attribute:: UploadedFile.name
  249. The name of the uploaded file.
  250. .. attribute:: UploadedFile.size
  251. The size, in bytes, of the uploaded file.
  252. Methods
  253. ----------
  254. .. method:: UploadedFile.chunks(chunk_size=None)
  255. Returns a generator that yields sequential chunks of data.
  256. .. method:: UploadedFile.read(num_bytes=None)
  257. Read a number of bytes from the file.
  258. QueryDict objects
  259. =================
  260. .. class:: QueryDict
  261. In an :class:`HttpRequest` object, the ``GET`` and ``POST`` attributes are instances
  262. of ``django.http.QueryDict``. :class:`QueryDict` is a dictionary-like
  263. class customized to deal with multiple values for the same key. This is
  264. necessary because some HTML form elements, notably
  265. ``<select multiple="multiple">``, pass multiple values for the same key.
  266. ``QueryDict`` instances are immutable, unless you create a ``copy()`` of them.
  267. That means you can't change attributes of ``request.POST`` and ``request.GET``
  268. directly.
  269. Methods
  270. -------
  271. :class:`QueryDict` implements all the standard dictionary methods, because it's
  272. a subclass of dictionary. Exceptions are outlined here:
  273. .. method:: QueryDict.__getitem__(key)
  274. Returns the value for the given key. If the key has more than one value,
  275. ``__getitem__()`` returns the last value. Raises
  276. ``django.utils.datastructures.MultiValueDictKeyError`` if the key does not
  277. exist. (This is a subclass of Python's standard ``KeyError``, so you can
  278. stick to catching ``KeyError``.)
  279. .. method:: QueryDict.__setitem__(key, value)
  280. Sets the given key to ``[value]`` (a Python list whose single element is
  281. ``value``). Note that this, as other dictionary functions that have side
  282. effects, can only be called on a mutable ``QueryDict`` (one that was created
  283. via ``copy()``).
  284. .. method:: QueryDict.__contains__(key)
  285. Returns ``True`` if the given key is set. This lets you do, e.g., ``if "foo"
  286. in request.GET``.
  287. .. method:: QueryDict.get(key, default)
  288. Uses the same logic as ``__getitem__()`` above, with a hook for returning a
  289. default value if the key doesn't exist.
  290. .. method:: QueryDict.setdefault(key, default)
  291. Just like the standard dictionary ``setdefault()`` method, except it uses
  292. ``__setitem__()`` internally.
  293. .. method:: QueryDict.update(other_dict)
  294. Takes either a ``QueryDict`` or standard dictionary. Just like the standard
  295. dictionary ``update()`` method, except it *appends* to the current
  296. dictionary items rather than replacing them. For example::
  297. >>> q = QueryDict('a=1')
  298. >>> q = q.copy() # to make it mutable
  299. >>> q.update({'a': '2'})
  300. >>> q.getlist('a')
  301. [u'1', u'2']
  302. >>> q['a'] # returns the last
  303. [u'2']
  304. .. method:: QueryDict.items()
  305. Just like the standard dictionary ``items()`` method, except this uses the
  306. same last-value logic as ``__getitem__()``. For example::
  307. >>> q = QueryDict('a=1&a=2&a=3')
  308. >>> q.items()
  309. [(u'a', u'3')]
  310. .. method:: QueryDict.iteritems()
  311. Just like the standard dictionary ``iteritems()`` method. Like
  312. :meth:`QueryDict.items()` this uses the same last-value logic as
  313. :meth:`QueryDict.__getitem__()`.
  314. .. method:: QueryDict.iterlists()
  315. Like :meth:`QueryDict.iteritems()` except it includes all values, as a list,
  316. for each member of the dictionary.
  317. .. method:: QueryDict.values()
  318. Just like the standard dictionary ``values()`` method, except this uses the
  319. same last-value logic as ``__getitem__()``. For example::
  320. >>> q = QueryDict('a=1&a=2&a=3')
  321. >>> q.values()
  322. [u'3']
  323. .. method:: QueryDict.itervalues()
  324. Just like :meth:`QueryDict.values()`, except an iterator.
  325. In addition, ``QueryDict`` has the following methods:
  326. .. method:: QueryDict.copy()
  327. Returns a copy of the object, using ``copy.deepcopy()`` from the Python
  328. standard library. The copy will be mutable -- that is, you can change its
  329. values.
  330. .. method:: QueryDict.getlist(key, default)
  331. Returns the data with the requested key, as a Python list. Returns an
  332. empty list if the key doesn't exist and no default value was provided.
  333. It's guaranteed to return a list of some sort unless the default value
  334. was no list.
  335. .. method:: QueryDict.setlist(key, list_)
  336. Sets the given key to ``list_`` (unlike ``__setitem__()``).
  337. .. method:: QueryDict.appendlist(key, item)
  338. Appends an item to the internal list associated with key.
  339. .. method:: QueryDict.setlistdefault(key, default_list)
  340. Just like ``setdefault``, except it takes a list of values instead of a
  341. single value.
  342. .. method:: QueryDict.lists()
  343. Like :meth:`items()`, except it includes all values, as a list, for each
  344. member of the dictionary. For example::
  345. >>> q = QueryDict('a=1&a=2&a=3')
  346. >>> q.lists()
  347. [(u'a', [u'1', u'2', u'3'])]
  348. .. method:: QueryDict.dict()
  349. Returns ``dict`` representation of ``QueryDict``. For every (key, list)
  350. pair in ``QueryDict``, ``dict`` will have (key, item), where item is one
  351. element of the list, using same logic as :meth:`QueryDict.__getitem__()`::
  352. >>> q = QueryDict('a=1&a=3&a=5')
  353. >>> q.dict()
  354. {u'a': u'5'}
  355. .. method:: QueryDict.urlencode([safe])
  356. Returns a string of the data in query-string format. Example::
  357. >>> q = QueryDict('a=2&b=3&b=5')
  358. >>> q.urlencode()
  359. 'a=2&b=3&b=5'
  360. Optionally, urlencode can be passed characters which
  361. do not require encoding. For example::
  362. >>> q = QueryDict('', mutable=True)
  363. >>> q['next'] = '/a&b/'
  364. >>> q.urlencode(safe='/')
  365. 'next=/a%26b/'
  366. HttpResponse objects
  367. ====================
  368. .. class:: HttpResponse
  369. In contrast to :class:`HttpRequest` objects, which are created automatically by
  370. Django, :class:`HttpResponse` objects are your responsibility. Each view you
  371. write is responsible for instantiating, populating and returning an
  372. :class:`HttpResponse`.
  373. The :class:`HttpResponse` class lives in the :mod:`django.http` module.
  374. Usage
  375. -----
  376. Passing strings
  377. ~~~~~~~~~~~~~~~
  378. Typical usage is to pass the contents of the page, as a string, to the
  379. :class:`HttpResponse` constructor::
  380. >>> from django.http import HttpResponse
  381. >>> response = HttpResponse("Here's the text of the Web page.")
  382. >>> response = HttpResponse("Text only, please.", content_type="text/plain")
  383. But if you want to add content incrementally, you can use ``response`` as a
  384. file-like object::
  385. >>> response = HttpResponse()
  386. >>> response.write("<p>Here's the text of the Web page.</p>")
  387. >>> response.write("<p>Here's another paragraph.</p>")
  388. Passing iterators
  389. ~~~~~~~~~~~~~~~~~
  390. Finally, you can pass ``HttpResponse`` an iterator rather than strings. If you
  391. use this technique, the iterator should return strings.
  392. Passing an iterator as content to :class:`HttpResponse` creates a
  393. streaming response if (and only if) no middleware accesses the
  394. :attr:`HttpResponse.content` attribute before the response is returned.
  395. .. versionchanged:: 1.5
  396. This technique is fragile and was deprecated in Django 1.5. If you need the
  397. response to be streamed from the iterator to the client, you should use the
  398. :class:`StreamingHttpResponse` class instead.
  399. As of Django 1.7, when :class:`HttpResponse` is instantiated with an
  400. iterator, it will consume it immediately, store the response content as a
  401. string, and discard the iterator.
  402. .. versionchanged:: 1.5
  403. You can now use :class:`HttpResponse` as a file-like object even if it was
  404. instantiated with an iterator. Django will consume and save the content of
  405. the iterator on first access.
  406. Setting headers
  407. ~~~~~~~~~~~~~~~
  408. To set or remove a header in your response, treat it like a dictionary::
  409. >>> response = HttpResponse()
  410. >>> response['Cache-Control'] = 'no-cache'
  411. >>> del response['Cache-Control']
  412. Note that unlike a dictionary, ``del`` doesn't raise ``KeyError`` if the header
  413. doesn't exist.
  414. HTTP headers cannot contain newlines. An attempt to set a header containing a
  415. newline character (CR or LF) will raise ``BadHeaderError``
  416. Telling the browser to treat the response as a file attachment
  417. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  418. To tell the browser to treat the response as a file attachment, use the
  419. ``content_type`` argument and set the ``Content-Disposition`` header. For example,
  420. this is how you might return a Microsoft Excel spreadsheet::
  421. >>> response = HttpResponse(my_data, content_type='application/vnd.ms-excel')
  422. >>> response['Content-Disposition'] = 'attachment; filename="foo.xls"'
  423. There's nothing Django-specific about the ``Content-Disposition`` header, but
  424. it's easy to forget the syntax, so we've included it here.
  425. Attributes
  426. ----------
  427. .. attribute:: HttpResponse.content
  428. A string representing the content, encoded from a Unicode
  429. object if necessary.
  430. .. attribute:: HttpResponse.status_code
  431. The `HTTP Status code`_ for the response.
  432. .. attribute:: HttpResponse.streaming
  433. This is always ``False``.
  434. This attribute exists so middleware can treat streaming responses
  435. differently from regular responses.
  436. Methods
  437. -------
  438. .. method:: HttpResponse.__init__(content='', content_type=None, status=200)
  439. Instantiates an ``HttpResponse`` object with the given page content and
  440. content type.
  441. ``content`` should be an iterator or a string. If it's an
  442. iterator, it should return strings, and those strings will be
  443. joined together to form the content of the response. If it is not
  444. an iterator or a string, it will be converted to a string when
  445. accessed.
  446. ``content_type`` is the MIME type optionally completed by a character set
  447. encoding and is used to fill the HTTP ``Content-Type`` header. If not
  448. specified, it is formed by the :setting:`DEFAULT_CONTENT_TYPE` and
  449. :setting:`DEFAULT_CHARSET` settings, by default: "`text/html; charset=utf-8`".
  450. Historically, this parameter was called ``mimetype`` (now deprecated).
  451. ``status`` is the `HTTP Status code`_ for the response.
  452. .. method:: HttpResponse.__setitem__(header, value)
  453. Sets the given header name to the given value. Both ``header`` and
  454. ``value`` should be strings.
  455. .. method:: HttpResponse.__delitem__(header)
  456. Deletes the header with the given name. Fails silently if the header
  457. doesn't exist. Case-insensitive.
  458. .. method:: HttpResponse.__getitem__(header)
  459. Returns the value for the given header name. Case-insensitive.
  460. .. method:: HttpResponse.has_header(header)
  461. Returns ``True`` or ``False`` based on a case-insensitive check for a
  462. header with the given name.
  463. .. method:: HttpResponse.set_cookie(key, value='', max_age=None, expires=None, path='/', domain=None, secure=None, httponly=False)
  464. Sets a cookie. The parameters are the same as in the :class:`Cookie.Morsel`
  465. object in the Python standard library.
  466. * ``max_age`` should be a number of seconds, or ``None`` (default) if
  467. the cookie should last only as long as the client's browser session.
  468. If ``expires`` is not specified, it will be calculated.
  469. * ``expires`` should either be a string in the format
  470. ``"Wdy, DD-Mon-YY HH:MM:SS GMT"`` or a ``datetime.datetime`` object
  471. in UTC. If ``expires`` is a ``datetime`` object, the ``max_age``
  472. will be calculated.
  473. * Use ``domain`` if you want to set a cross-domain cookie. For example,
  474. ``domain=".lawrence.com"`` will set a cookie that is readable by
  475. the domains www.lawrence.com, blogs.lawrence.com and
  476. calendars.lawrence.com. Otherwise, a cookie will only be readable by
  477. the domain that set it.
  478. * Use ``httponly=True`` if you want to prevent client-side
  479. JavaScript from having access to the cookie.
  480. HTTPOnly_ is a flag included in a Set-Cookie HTTP response
  481. header. It is not part of the :rfc:`2109` standard for cookies,
  482. and it isn't honored consistently by all browsers. However,
  483. when it is honored, it can be a useful way to mitigate the
  484. risk of client side script accessing the protected cookie
  485. data.
  486. .. _HTTPOnly: https://www.owasp.org/index.php/HTTPOnly
  487. .. method:: HttpResponse.set_signed_cookie(key, value='', salt='', max_age=None, expires=None, path='/', domain=None, secure=None, httponly=True)
  488. Like :meth:`~HttpResponse.set_cookie()`, but
  489. :doc:`cryptographic signing </topics/signing>` the cookie before setting
  490. it. Use in conjunction with :meth:`HttpRequest.get_signed_cookie`.
  491. You can use the optional ``salt`` argument for added key strength, but
  492. you will need to remember to pass it to the corresponding
  493. :meth:`HttpRequest.get_signed_cookie` call.
  494. .. method:: HttpResponse.delete_cookie(key, path='/', domain=None)
  495. Deletes the cookie with the given key. Fails silently if the key doesn't
  496. exist.
  497. Due to the way cookies work, ``path`` and ``domain`` should be the same
  498. values you used in ``set_cookie()`` -- otherwise the cookie may not be
  499. deleted.
  500. .. method:: HttpResponse.write(content)
  501. This method makes an :class:`HttpResponse` instance a file-like object.
  502. .. method:: HttpResponse.flush()
  503. This method makes an :class:`HttpResponse` instance a file-like object.
  504. .. method:: HttpResponse.tell()
  505. This method makes an :class:`HttpResponse` instance a file-like object.
  506. .. _HTTP Status code: http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10
  507. .. _ref-httpresponse-subclasses:
  508. HttpResponse subclasses
  509. -----------------------
  510. Django includes a number of ``HttpResponse`` subclasses that handle different
  511. types of HTTP responses. Like ``HttpResponse``, these subclasses live in
  512. :mod:`django.http`.
  513. .. class:: HttpResponseRedirect
  514. The first argument to the constructor is required -- the path to redirect
  515. to. This can be a fully qualified URL
  516. (e.g. ``'http://www.yahoo.com/search/'``) or an absolute path with no
  517. domain (e.g. ``'/search/'``). See :class:`HttpResponse` for other optional
  518. constructor arguments. Note that this returns an HTTP status code 302.
  519. .. attribute:: HttpResponseRedirect.url
  520. .. versionadded:: 1.6
  521. This read-only attribute represents the URL the response will redirect
  522. to (equivalent to the ``Location`` response header).
  523. .. class:: HttpResponsePermanentRedirect
  524. Like :class:`HttpResponseRedirect`, but it returns a permanent redirect
  525. (HTTP status code 301) instead of a "found" redirect (status code 302).
  526. .. class:: HttpResponseNotModified
  527. The constructor doesn't take any arguments and no content should be added
  528. to this response. Use this to designate that a page hasn't been modified
  529. since the user's last request (status code 304).
  530. .. class:: HttpResponseBadRequest
  531. Acts just like :class:`HttpResponse` but uses a 400 status code.
  532. .. class:: HttpResponseNotFound
  533. Acts just like :class:`HttpResponse` but uses a 404 status code.
  534. .. class:: HttpResponseForbidden
  535. Acts just like :class:`HttpResponse` but uses a 403 status code.
  536. .. class:: HttpResponseNotAllowed
  537. Like :class:`HttpResponse`, but uses a 405 status code. The first argument
  538. to the constructor is required: a list of permitted methods (e.g.
  539. ``['GET', 'POST']``).
  540. .. class:: HttpResponseGone
  541. Acts just like :class:`HttpResponse` but uses a 410 status code.
  542. .. class:: HttpResponseServerError
  543. Acts just like :class:`HttpResponse` but uses a 500 status code.
  544. .. note::
  545. If a custom subclass of :class:`HttpResponse` implements a ``render``
  546. method, Django will treat it as emulating a
  547. :class:`~django.template.response.SimpleTemplateResponse`, and the
  548. ``render`` method must itself return a valid response object.
  549. .. _httpresponse-streaming:
  550. StreamingHttpResponse objects
  551. =============================
  552. .. versionadded:: 1.5
  553. .. class:: StreamingHttpResponse
  554. The :class:`StreamingHttpResponse` class is used to stream a response from
  555. Django to the browser. You might want to do this if generating the response
  556. takes too long or uses too much memory. For instance, it's useful for
  557. generating large CSV files.
  558. .. admonition:: Performance considerations
  559. Django is designed for short-lived requests. Streaming responses will tie
  560. a worker process for the entire duration of the response. This may result
  561. in poor performance.
  562. Generally speaking, you should perform expensive tasks outside of the
  563. request-response cycle, rather than resorting to a streamed response.
  564. The :class:`StreamingHttpResponse` is not a subclass of :class:`HttpResponse`,
  565. because it features a slightly different API. However, it is almost identical,
  566. with the following notable differences:
  567. * It should be given an iterator that yields strings as content.
  568. * You cannot access its content, except by iterating the response object
  569. itself. This should only occur when the response is returned to the client.
  570. * It has no ``content`` attribute. Instead, it has a
  571. :attr:`~StreamingHttpResponse.streaming_content` attribute.
  572. * You cannot use the file-like object ``tell()`` or ``write()`` methods.
  573. Doing so will raise an exception.
  574. :class:`StreamingHttpResponse` should only be used in situations where it is
  575. absolutely required that the whole content isn't iterated before transferring
  576. the data to the client. Because the content can't be accessed, many
  577. middlewares can't function normally. For example the ``ETag`` and ``Content-
  578. Length`` headers can't be generated for streaming responses.
  579. Attributes
  580. ----------
  581. .. attribute:: StreamingHttpResponse.streaming_content
  582. An iterator of strings representing the content.
  583. .. attribute:: HttpResponse.status_code
  584. The `HTTP Status code`_ for the response.
  585. .. attribute:: HttpResponse.streaming
  586. This is always ``True``.