2
0

request-response.txt 28 KB

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