signals.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626
  1. =======
  2. Signals
  3. =======
  4. A list of all the signals that Django sends.
  5. .. seealso::
  6. See the documentation on the :doc:`signal dispatcher </topics/signals>` for
  7. information regarding how to register for and receive signals.
  8. The :doc:`comment framework </ref/contrib/comments/index>` sends a :doc:`set
  9. of comment-related signals </ref/contrib/comments/signals>`.
  10. The :doc:`authentication framework </topics/auth/index>` sends :ref:`signals when
  11. a user is logged in / out <topics-auth-signals>`.
  12. Model signals
  13. =============
  14. .. module:: django.db.models.signals
  15. :synopsis: Signals sent by the model system.
  16. The :mod:`django.db.models.signals` module defines a set of signals sent by the
  17. module system.
  18. .. warning::
  19. Many of these signals are sent by various model methods like
  20. ``__init__()`` or :meth:`~django.db.models.Model.save` that you can
  21. override in your own code.
  22. If you override these methods on your model, you must call the parent class'
  23. methods for this signals to be sent.
  24. Note also that Django stores signal handlers as weak references by default,
  25. so if your handler is a local function, it may be garbage collected. To
  26. prevent this, pass ``weak=False`` when you call the signal's :meth:`~django.dispatch.Signal.connect`.
  27. pre_init
  28. --------
  29. .. attribute:: django.db.models.signals.pre_init
  30. :module:
  31. .. ^^^^^^^ this :module: hack keeps Sphinx from prepending the module.
  32. Whenever you instantiate a Django model, this signal is sent at the beginning
  33. of the model's ``__init__()`` method.
  34. Arguments sent with this signal:
  35. ``sender``
  36. The model class that just had an instance created.
  37. ``args``
  38. A list of positional arguments passed to ``__init__()``:
  39. ``kwargs``
  40. A dictionary of keyword arguments passed to ``__init__()``:
  41. For example, the :doc:`tutorial </intro/tutorial01>` has this line::
  42. p = Poll(question="What's up?", pub_date=datetime.now())
  43. The arguments sent to a :data:`pre_init` handler would be:
  44. ========== ===============================================================
  45. Argument Value
  46. ========== ===============================================================
  47. ``sender`` ``Poll`` (the class itself)
  48. ``args`` ``[]`` (an empty list because there were no positional
  49. arguments passed to ``__init__()``.)
  50. ``kwargs`` ``{'question': "What's up?", 'pub_date': datetime.now()}``
  51. ========== ===============================================================
  52. post_init
  53. ---------
  54. .. data:: django.db.models.signals.post_init
  55. :module:
  56. Like pre_init, but this one is sent when the ``__init__()`` method finishes.
  57. Arguments sent with this signal:
  58. ``sender``
  59. As above: the model class that just had an instance created.
  60. ``instance``
  61. The actual instance of the model that's just been created.
  62. pre_save
  63. --------
  64. .. data:: django.db.models.signals.pre_save
  65. :module:
  66. This is sent at the beginning of a model's :meth:`~django.db.models.Model.save`
  67. method.
  68. Arguments sent with this signal:
  69. ``sender``
  70. The model class.
  71. ``instance``
  72. The actual instance being saved.
  73. ``raw``
  74. A boolean; ``True`` if the model is saved exactly as presented
  75. (i.e. when loading a fixture). One should not query/modify other
  76. records in the database as the database might not be in a
  77. consistent state yet.
  78. ``using``
  79. The database alias being used.
  80. .. versionadded:: 1.5
  81. ``update_fields``
  82. The set of fields to update explicitly specified in the ``save()`` method.
  83. ``None`` if this argument was not used in the ``save()`` call.
  84. post_save
  85. ---------
  86. .. data:: django.db.models.signals.post_save
  87. :module:
  88. Like :data:`pre_save`, but sent at the end of the
  89. :meth:`~django.db.models.Model.save` method.
  90. Arguments sent with this signal:
  91. ``sender``
  92. The model class.
  93. ``instance``
  94. The actual instance being saved.
  95. ``created``
  96. A boolean; ``True`` if a new record was created.
  97. ``raw``
  98. A boolean; ``True`` if the model is saved exactly as presented
  99. (i.e. when loading a fixture). One should not query/modify other
  100. records in the database as the database might not be in a
  101. consistent state yet.
  102. ``using``
  103. The database alias being used.
  104. .. versionadded:: 1.5
  105. ``update_fields``
  106. The set of fields to update explicitly specified in the ``save()`` method.
  107. ``None`` if this argument was not used in the ``save()`` call.
  108. pre_delete
  109. ----------
  110. .. data:: django.db.models.signals.pre_delete
  111. :module:
  112. Sent at the beginning of a model's :meth:`~django.db.models.Model.delete`
  113. method and a queryset's :meth:`~django.db.models.query.QuerySet.delete` method.
  114. Arguments sent with this signal:
  115. ``sender``
  116. The model class.
  117. ``instance``
  118. The actual instance being deleted.
  119. ``using``
  120. The database alias being used.
  121. post_delete
  122. -----------
  123. .. data:: django.db.models.signals.post_delete
  124. :module:
  125. Like :data:`pre_delete`, but sent at the end of a model's
  126. :meth:`~django.db.models.Model.delete` method and a queryset's
  127. :meth:`~django.db.models.query.QuerySet.delete` method.
  128. Arguments sent with this signal:
  129. ``sender``
  130. The model class.
  131. ``instance``
  132. The actual instance being deleted.
  133. Note that the object will no longer be in the database, so be very
  134. careful what you do with this instance.
  135. ``using``
  136. The database alias being used.
  137. m2m_changed
  138. -----------
  139. .. data:: django.db.models.signals.m2m_changed
  140. :module:
  141. Sent when a :class:`~django.db.models.ManyToManyField` is changed on a model
  142. instance. Strictly speaking, this is not a model signal since it is sent by the
  143. :class:`~django.db.models.ManyToManyField`, but since it complements the
  144. :data:`pre_save`/:data:`post_save` and :data:`pre_delete`/:data:`post_delete`
  145. when it comes to tracking changes to models, it is included here.
  146. Arguments sent with this signal:
  147. ``sender``
  148. The intermediate model class describing the
  149. :class:`~django.db.models.ManyToManyField`. This class is automatically
  150. created when a many-to-many field is defined; you can access it using the
  151. ``through`` attribute on the many-to-many field.
  152. ``instance``
  153. The instance whose many-to-many relation is updated. This can be an
  154. instance of the ``sender``, or of the class the
  155. :class:`~django.db.models.ManyToManyField` is related to.
  156. ``action``
  157. A string indicating the type of update that is done on the relation.
  158. This can be one of the following:
  159. ``"pre_add"``
  160. Sent *before* one or more objects are added to the relation.
  161. ``"post_add"``
  162. Sent *after* one or more objects are added to the relation.
  163. ``"pre_remove"``
  164. Sent *before* one or more objects are removed from the relation.
  165. ``"post_remove"``
  166. Sent *after* one or more objects are removed from the relation.
  167. ``"pre_clear"``
  168. Sent *before* the relation is cleared.
  169. ``"post_clear"``
  170. Sent *after* the relation is cleared.
  171. ``reverse``
  172. Indicates which side of the relation is updated (i.e., if it is the
  173. forward or reverse relation that is being modified).
  174. ``model``
  175. The class of the objects that are added to, removed from or cleared
  176. from the relation.
  177. ``pk_set``
  178. For the ``pre_add``, ``post_add``, ``pre_remove`` and ``post_remove``
  179. actions, this is a set of primary key values that have been added to
  180. or removed from the relation.
  181. For the ``pre_clear`` and ``post_clear`` actions, this is ``None``.
  182. ``using``
  183. The database alias being used.
  184. For example, if a ``Pizza`` can have multiple ``Topping`` objects, modeled
  185. like this::
  186. class Topping(models.Model):
  187. # ...
  188. pass
  189. class Pizza(models.Model):
  190. # ...
  191. toppings = models.ManyToManyField(Topping)
  192. If we connected a handler like this::
  193. def toppings_changed(sender, **kwargs):
  194. # Do something
  195. pass
  196. m2m_changed.connect(toppings_changed, sender=Pizza.toppings.through)
  197. and then did something like this::
  198. >>> p = Pizza.objects.create(...)
  199. >>> t = Topping.objects.create(...)
  200. >>> p.toppings.add(t)
  201. the arguments sent to a :data:`m2m_changed` handler (``topppings_changed`` in
  202. the example above) would be:
  203. ============== ============================================================
  204. Argument Value
  205. ============== ============================================================
  206. ``sender`` ``Pizza.toppings.through`` (the intermediate m2m class)
  207. ``instance`` ``p`` (the ``Pizza`` instance being modified)
  208. ``action`` ``"pre_add"`` (followed by a separate signal with ``"post_add"``)
  209. ``reverse`` ``False`` (``Pizza`` contains the
  210. :class:`~django.db.models.ManyToManyField`, so this call
  211. modifies the forward relation)
  212. ``model`` ``Topping`` (the class of the objects added to the
  213. ``Pizza``)
  214. ``pk_set`` ``set([t.id])`` (since only ``Topping t`` was added to the relation)
  215. ``using`` ``"default"`` (since the default router sends writes here)
  216. ============== ============================================================
  217. And if we would then do something like this::
  218. >>> t.pizza_set.remove(p)
  219. the arguments sent to a :data:`m2m_changed` handler would be:
  220. ============== ============================================================
  221. Argument Value
  222. ============== ============================================================
  223. ``sender`` ``Pizza.toppings.through`` (the intermediate m2m class)
  224. ``instance`` ``t`` (the ``Topping`` instance being modified)
  225. ``action`` ``"pre_remove"`` (followed by a separate signal with ``"post_remove"``)
  226. ``reverse`` ``True`` (``Pizza`` contains the
  227. :class:`~django.db.models.ManyToManyField`, so this call
  228. modifies the reverse relation)
  229. ``model`` ``Pizza`` (the class of the objects removed from the
  230. ``Topping``)
  231. ``pk_set`` ``set([p.id])`` (since only ``Pizza p`` was removed from the
  232. relation)
  233. ``using`` ``"default"`` (since the default router sends writes here)
  234. ============== ============================================================
  235. class_prepared
  236. --------------
  237. .. data:: django.db.models.signals.class_prepared
  238. :module:
  239. Sent whenever a model class has been "prepared" -- that is, once model has
  240. been defined and registered with Django's model system. Django uses this
  241. signal internally; it's not generally used in third-party applications.
  242. Arguments that are sent with this signal:
  243. ``sender``
  244. The model class which was just prepared.
  245. Management signals
  246. ==================
  247. Signals sent by :doc:`django-admin </ref/django-admin>`.
  248. pre_syncdb
  249. ----------
  250. .. data:: django.db.models.signals.pre_syncdb
  251. :module:
  252. Sent by the :djadmin:`syncdb` command before it starts to install an
  253. application.
  254. Any handlers that listen to this signal need to be written in a particular
  255. place: a ``management`` module in one of your :setting:`INSTALLED_APPS`. If
  256. handlers are registered anywhere else they may not be loaded by
  257. :djadmin:`syncdb`.
  258. Arguments sent with this signal:
  259. ``sender``
  260. The ``models`` module that was just installed. That is, if
  261. :djadmin:`syncdb` just installed an app called ``"foo.bar.myapp"``,
  262. ``sender`` will be the ``foo.bar.myapp.models`` module.
  263. ``app``
  264. Same as ``sender``.
  265. ``create_models``
  266. A list of the model classes from any app which :djadmin:`syncdb` plans to
  267. create.
  268. ``verbosity``
  269. Indicates how much information manage.py is printing on screen. See
  270. the :djadminopt:`--verbosity` flag for details.
  271. Functions which listen for :data:`pre_syncdb` should adjust what they
  272. output to the screen based on the value of this argument.
  273. ``interactive``
  274. If ``interactive`` is ``True``, it's safe to prompt the user to input
  275. things on the command line. If ``interactive`` is ``False``, functions
  276. which listen for this signal should not try to prompt for anything.
  277. For example, the :mod:`django.contrib.auth` app only prompts to create a
  278. superuser when ``interactive`` is ``True``.
  279. ``db``
  280. The alias of database on which a command will operate.
  281. post_syncdb
  282. -----------
  283. .. data:: django.db.models.signals.post_syncdb
  284. :module:
  285. Sent by the :djadmin:`syncdb` command after it installs an application, and the
  286. :djadmin:`flush` command.
  287. Any handlers that listen to this signal need to be written in a particular
  288. place: a ``management`` module in one of your :setting:`INSTALLED_APPS`. If
  289. handlers are registered anywhere else they may not be loaded by
  290. :djadmin:`syncdb`. It is important that handlers of this signal perform
  291. idempotent changes (e.g. no database alterations) as this may cause the
  292. :djadmin:`flush` management command to fail if it also ran during the
  293. :djadmin:`syncdb` command.
  294. Arguments sent with this signal:
  295. ``sender``
  296. The ``models`` module that was just installed. That is, if
  297. :djadmin:`syncdb` just installed an app called ``"foo.bar.myapp"``,
  298. ``sender`` will be the ``foo.bar.myapp.models`` module.
  299. ``app``
  300. Same as ``sender``.
  301. ``created_models``
  302. A list of the model classes from any app which :djadmin:`syncdb` has
  303. created so far.
  304. ``verbosity``
  305. Indicates how much information manage.py is printing on screen. See
  306. the :djadminopt:`--verbosity` flag for details.
  307. Functions which listen for :data:`post_syncdb` should adjust what they
  308. output to the screen based on the value of this argument.
  309. ``interactive``
  310. If ``interactive`` is ``True``, it's safe to prompt the user to input
  311. things on the command line. If ``interactive`` is ``False``, functions
  312. which listen for this signal should not try to prompt for anything.
  313. For example, the :mod:`django.contrib.auth` app only prompts to create a
  314. superuser when ``interactive`` is ``True``.
  315. ``db``
  316. The database alias used for synchronization. Defaults to the ``default``
  317. database.
  318. For example, ``yourapp/management/__init__.py`` could be written like::
  319. from django.db.models.signals import post_syncdb
  320. import yourapp.models
  321. def my_callback(sender, **kwargs):
  322. # Your specific logic here
  323. pass
  324. post_syncdb.connect(my_callback, sender=yourapp.models)
  325. Request/response signals
  326. ========================
  327. .. module:: django.core.signals
  328. :synopsis: Core signals sent by the request/response system.
  329. Signals sent by the core framework when processing a request.
  330. request_started
  331. ---------------
  332. .. data:: django.core.signals.request_started
  333. :module:
  334. Sent when Django begins processing an HTTP request.
  335. Arguments sent with this signal:
  336. ``sender``
  337. The handler class -- e.g. ``django.core.handlers.wsgi.WsgiHandler`` -- that
  338. handled the request.
  339. request_finished
  340. ----------------
  341. .. data:: django.core.signals.request_finished
  342. :module:
  343. Sent when Django finishes processing an HTTP request.
  344. .. versionchanged:: 1.5
  345. Before Django 1.5, this signal was sent before delivering content to the
  346. client. In order to accommodate :ref:`streaming responses
  347. <httpresponse-streaming>`, it is now sent after the response has been fully
  348. delivered to the client.
  349. .. note::
  350. Some WSGI servers and middleware do not always call ``close`` on the
  351. response object after handling a request, most notably uWSGI prior to 1.2.6
  352. and Sentry's error reporting middleware up to 2.0.7. In those cases this
  353. signal isn't sent at all. This can result in idle connections to database
  354. and memcache servers.
  355. Arguments sent with this signal:
  356. ``sender``
  357. The handler class, as above.
  358. got_request_exception
  359. ---------------------
  360. .. data:: django.core.signals.got_request_exception
  361. :module:
  362. This signal is sent whenever Django encounters an exception while processing an incoming HTTP request.
  363. Arguments sent with this signal:
  364. ``sender``
  365. The handler class, as above.
  366. ``request``
  367. The :class:`~django.http.HttpRequest` object.
  368. Test signals
  369. ============
  370. .. module:: django.test.signals
  371. :synopsis: Signals sent during testing.
  372. Signals only sent when :ref:`running tests <running-tests>`.
  373. setting_changed
  374. ---------------
  375. .. data:: django.test.signals.setting_changed
  376. :module:
  377. This signal is sent when the value of a setting is changed through the
  378. ``django.test.TestCase.settings()`` context manager or the
  379. :func:`django.test.utils.override_settings` decorator/context manager.
  380. It's actually sent twice: when the new value is applied ("setup") and when the
  381. original value is restored ("teardown"). Use the ``enter`` argument to
  382. distinguish between the two.
  383. Arguments sent with this signal:
  384. ``sender``
  385. The settings handler.
  386. ``setting``
  387. The name of the setting.
  388. ``value``
  389. The value of the setting after the change. For settings that initially
  390. don't exist, in the "teardown" phase, ``value`` is ``None``.
  391. ``enter``
  392. .. versionadded:: 1.7
  393. A boolean; ``True`` if the setting is applied, ``False`` if restored.
  394. template_rendered
  395. -----------------
  396. .. data:: django.test.signals.template_rendered
  397. :module:
  398. Sent when the test system renders a template. This signal is not emitted during
  399. normal operation of a Django server -- it is only available during testing.
  400. Arguments sent with this signal:
  401. ``sender``
  402. The :class:`~django.template.Template` object which was rendered.
  403. ``template``
  404. Same as sender
  405. ``context``
  406. The :class:`~django.template.Context` with which the template was
  407. rendered.
  408. Database Wrappers
  409. =================
  410. .. module:: django.db.backends
  411. :synopsis: Core signals sent by the database wrapper.
  412. Signals sent by the database wrapper when a database connection is
  413. initiated.
  414. connection_created
  415. ------------------
  416. .. data:: django.db.backends.signals.connection_created
  417. :module:
  418. Sent when the database wrapper makes the initial connection to the
  419. database. This is particularly useful if you'd like to send any post
  420. connection commands to the SQL backend.
  421. Arguments sent with this signal:
  422. ``sender``
  423. The database wrapper class -- i.e.
  424. ``django.db.backends.postgresql_psycopg2.DatabaseWrapper`` or
  425. ``django.db.backends.mysql.DatabaseWrapper``, etc.
  426. ``connection``
  427. The database connection that was opened. This can be used in a
  428. multiple-database configuration to differentiate connection signals
  429. from different databases.