slidge.plugins.facebook.contact
#
Module Contents#
Classes#
Attributes#
- class slidge.plugins.facebook.contact.Contact(session, legacy_id, jid_username, participant=None)[source]#
Bases:
slidge.LegacyContact
[int
]This class centralizes actions in relation to a specific legacy contact.
You shouldn’t create instances of contacts manually, but rather rely on
LegacyRoster.by_legacy_id()
to ensure that contact instances are singletons. TheLegacyRoster
instance of a session is accessible through theBaseSession.contacts
attribute.Typically, your plugin should have methods hook to the legacy events and call appropriate methods here to transmit the “legacy action” to the xmpp user. This should look like this:
Use
carbon=True
as a keyword arg for methods to represent an action FROM the user TO the contact, typically when the user uses an official client to do an action such as sending a message or marking as message as read. This will use XEP-0363 to impersonate the XMPP user in order.- Parameters:
session (slidge.plugins.facebook.session.Session) – The session this contact is part of
legacy_id (int) – The contact’s legacy ID
jid_username (str) – User part of this contact’s ‘puppet’ JID. NB: case-insensitive, and some special characters are not allowed
participant (Optional[maufbapi.types.graphql.ParticipantNode]) –
- async _expire(last_seen)[source]#
- Parameters:
last_seen (datetime.datetime) –
- populate_from_participant(participant, update_avatar=True)[source]#
- Parameters:
participant (maufbapi.types.graphql.ParticipantNode) –
- async update_info(refresh=False)[source]#
Fetch information about this contact from the legacy network
This is awaited on Contact instantiation, and should be overridden to update the nickname, avatar, vcard [..] of this contact, by making “legacy API calls”.
- class slidge.plugins.facebook.contact.Roster(session)[source]#
Bases:
slidge.LegacyRoster
[int
,Contact
]Virtual roster of a gateway user, that allows to represent all of their contacts as singleton instances (if used properly and not too bugged).
Every
BaseSession
instance will have its ownLegacyRoster
instance accessible via theBaseSession.contacts
attribute.Typically, you will mostly use the
LegacyRoster.by_legacy_id()
function to retrieve a contact instance.You might need to override
LegacyRoster.legacy_id_to_jid_username()
and/orLegacyRoster.jid_username_to_legacy_id()
to incorporate some custom logic if you need some characters when translation JID user parts and legacy IDs.- Parameters:
session (slidge.core.session.BaseSession) –