slixmpp/docs/event_index.rst

276 lines
8.9 KiB
ReStructuredText
Raw Normal View History

2011-08-13 00:33:32 +00:00
Event Index
===========
.. glossary::
:sorted:
connected
- **Data:** ``{}``
2014-07-17 12:19:04 +00:00
- **Source:** :py:class:`~slixmpp.xmlstream.XMLstream`
2011-08-13 00:33:32 +00:00
Signal that a connection has been made with the XMPP server, but a session
has not yet been established.
2013-03-28 18:09:02 +00:00
connection_failed
- **Data:** ``{}`` or ``Failure Stanza`` if available
2014-07-17 12:19:04 +00:00
- **Source:** :py:class:`~slixmpp.xmlstream.XMLstream`
2013-03-28 18:09:02 +00:00
Signal that a connection can not be established after number of attempts.
2011-08-13 00:33:32 +00:00
changed_status
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.roster.item.RosterItem`
2011-08-13 00:33:32 +00:00
Triggered when a presence stanza is received from a JID with a show type
different than the last presence stanza from the same JID.
changed_subscription
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.BaseXMPP`
2011-08-13 00:33:32 +00:00
Triggered whenever a presence stanza with a type of ``subscribe``,
``subscribed``, ``unsubscribe``, or ``unsubscribed`` is received.
Note that if the values ``xmpp.auto_authorize`` and ``xmpp.auto_subscribe``
2014-07-17 12:19:04 +00:00
are set to ``True`` or ``False``, and not ``None``, then Slixmpp will
2011-08-13 00:33:32 +00:00
either accept or reject all subscription requests before your event handlers
are called. Set these values to ``None`` if you wish to make more complex
subscription decisions.
chatstate_active
- **Data:**
- **Source:**
chatstate_composing
- **Data:**
- **Source:**
chatstate_gone
- **Data:**
- **Source:**
chatstate_inactive
- **Data:**
- **Source:**
chatstate_paused
- **Data:**
- **Source:**
disco_info
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.plugins.xep_0030.stanza.DiscoInfo`
- **Source:** :py:class:`~slixmpp.plugins.xep_0030.disco.xep_0030`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
Triggered whenever a ``disco#info`` result stanza is received.
disco_items
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.plugins.xep_0030.stanza.DiscoItems`
- **Source:** :py:class:`~slixmpp.plugins.xep_0030.disco.xep_0030`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
Triggered whenever a ``disco#items`` result stanza is received.
disconnected
- **Data:** ``{}``
2014-07-17 12:19:04 +00:00
- **Source:** :py:class:`~slixmpp.xmlstream.XMLstream`
2013-03-28 18:09:02 +00:00
2011-08-13 00:33:32 +00:00
Signal that the connection with the XMPP server has been lost.
entity_time
- **Data:**
- **Source:**
failed_auth
- **Data:** ``{}``
2014-07-17 12:19:04 +00:00
- **Source:** :py:class:`~slixmpp.ClientXMPP`, :py:class:`~slixmpp.plugins.xep_0078.xep_0078`
2011-08-13 00:33:32 +00:00
Signal that the server has rejected the provided login credentials.
gmail_notify
- **Data:** ``{}``
2014-07-17 12:19:04 +00:00
- **Source:** :py:class:`~slixmpp.plugins.gmail_notify.gmail_notify`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
Signal that there are unread emails for the Gmail account associated with the current XMPP account.
gmail_messages
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Iq`
- **Source:** :py:class:`~slixmpp.plugins.gmail_notify.gmail_notify`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
Signal that there are unread emails for the Gmail account associated with the current XMPP account.
got_online
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.roster.item.RosterItem`
2013-03-28 18:09:02 +00:00
2011-08-13 00:33:32 +00:00
If a presence stanza is received from a JID which was previously marked as
offline, and the presence has a show type of '``chat``', '``dnd``', '``away``',
or '``xa``', then this event is triggered as well.
got_offline
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.roster.item.RosterItem`
2013-03-28 18:09:02 +00:00
2011-08-13 00:33:32 +00:00
Signal that an unavailable presence stanza has been received from a JID.
groupchat_invite
- **Data:**
- **Source:**
groupchat_direct_invite
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Message`
- **Source:** :py:class:`~slixmpp.plugins.xep_0249.direct`
2011-08-13 00:33:32 +00:00
groupchat_message
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Message`
- **Source:** :py:class:`~slixmpp.plugins.xep_0045.xep_0045`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
Triggered whenever a message is received from a multi-user chat room.
groupchat_presence
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.plugins.xep_0045.xep_0045`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
Triggered whenever a presence stanza is received from a user in a multi-user chat room.
groupchat_subject
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Message`
- **Source:** :py:class:`~slixmpp.plugins.xep_0045.xep_0045`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
Triggered whenever the subject of a multi-user chat room is changed, or announced when joining a room.
killed
- **Data:**
- **Source:**
last_activity
- **Data:**
- **Source:**
message
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Message`
- **Source:** :py:class:`BaseXMPP <slixmpp.BaseXMPP>`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
Makes the contents of message stanzas available whenever one is received. Be
sure to check the message type in order to handle error messages.
message_form
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.plugins.xep_0004.Form`
- **Source:** :py:class:`~slixmpp.plugins.xep_0004.xep_0004`
2013-03-28 18:09:02 +00:00
2011-08-13 00:33:32 +00:00
Currently the same as :term:`message_xform`.
message_xform
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.plugins.xep_0004.Form`
- **Source:** :py:class:`~slixmpp.plugins.xep_0004.xep_0004`
2013-03-28 18:09:02 +00:00
2011-08-13 00:33:32 +00:00
Triggered whenever a data form is received inside a message.
2013-03-28 18:09:02 +00:00
muc::[room]::got_offline
2011-08-13 00:33:32 +00:00
- **Data:**
- **Source:**
muc::[room]::got_online
- **Data:**
- **Source:**
muc::[room]::message
- **Data:**
- **Source:**
muc::[room]::presence
- **Data:**
- **Source:**
presence_available
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.BaseXMPP`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
A presence stanza with a type of '``available``' is received.
presence_error
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.BaseXMPP`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
A presence stanza with a type of '``error``' is received.
presence_form
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.plugins.xep_0004.Form`
- **Source:** :py:class:`~slixmpp.plugins.xep_0004.xep_0004`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
This event is present in the XEP-0004 plugin code, but is currently not used.
presence_probe
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.BaseXMPP`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
A presence stanza with a type of '``probe``' is received.
presence_subscribe
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.BaseXMPP`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
A presence stanza with a type of '``subscribe``' is received.
presence_subscribed
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.BaseXMPP`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
A presence stanza with a type of '``subscribed``' is received.
presence_unavailable
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.BaseXMPP`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
A presence stanza with a type of '``unavailable``' is received.
presence_unsubscribe
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.BaseXMPP`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
A presence stanza with a type of '``unsubscribe``' is received.
presence_unsubscribed
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.Presence`
- **Source:** :py:class:`~slixmpp.BaseXMPP`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
A presence stanza with a type of '``unsubscribed``' is received.
roster_update
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.stanza.Roster`
- **Source:** :py:class:`~slixmpp.ClientXMPP`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
An IQ result containing roster entries is received.
sent_presence
- **Data:** ``{}``
2014-07-17 12:19:04 +00:00
- **Source:** :py:class:`~slixmpp.roster.multi.Roster`
2014-08-17 19:53:34 +00:00
2011-08-13 00:33:32 +00:00
Signal that an initial presence stanza has been written to the XML stream.
session_end
- **Data:** ``{}``
2014-07-17 12:19:04 +00:00
- **Source:** :py:class:`~slixmpp.xmlstream.XMLstream`
2011-08-13 00:33:32 +00:00
Signal that a connection to the XMPP server has been lost and the current
stream session has ended. Currently equivalent to :term:`disconnected`, but
future implementation of `XEP-0198: Stream Management <http://xmpp.org/extensions/xep-0198.html>`_
will distinguish the two events.
Plugins that maintain session-based state should clear themselves when
this event is fired.
session_start
- **Data:** ``{}``
2014-07-17 12:19:04 +00:00
- **Source:** :py:class:`ClientXMPP <slixmpp.ClientXMPP>`,
:py:class:`ComponentXMPP <slixmpp.ComponentXMPP>`
:py:class:`XEP-0078 <slixmpp.plugins.xep_0078>`
2011-08-13 00:33:32 +00:00
Signal that a connection to the XMPP server has been made and a session has been established.
socket_error
2013-03-28 18:09:02 +00:00
- **Data:** ``Socket`` exception object
2014-07-17 12:19:04 +00:00
- **Source:** :py:class:`~slixmpp.xmlstream.XMLstream`
2011-08-13 00:33:32 +00:00
stream_error
2014-07-17 12:19:04 +00:00
- **Data:** :py:class:`~slixmpp.stanza.StreamError`
- **Source:** :py:class:`~slixmpp.BaseXMPP`