slidcord.contact¶
Classes¶
Module Contents¶
- class slidcord.contact.Contact(*a, **k)[source]¶
Bases:
slidcord.util.StatusMixin
,slidcord.util.MessageMixin
,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 – The session this contact is part of
legacy_id – The contact’s legacy ID
jid_username – User part of this contact’s ‘puppet’ JID. NB: case-insensitive, and some special characters are not allowed
- session: slidcord.session.Session[source]¶
- participants: set[slidcord.group.Participant][source]¶
- async update_info()[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”.
To take advantage of the slidge avatar cache, you can check the .avatar property to retrieve the “legacy file ID” of the cached avatar. If there is no change, you should not call
slidge.core.mixins.avatar.AvatarMixin.set_avatar()
or attempt to modify the.avatar
property.
- async fetch_vcard()[source]¶
It the legacy network doesn’t like that you fetch too many profiles on startup, it’s also possible to fetch it here, which will be called when XMPP clients of the user request the vcard, if it hasn’t been fetched before :return:
- async on_friend_accept()[source]¶
Called when receiving a “subscribed” presence, ie, “I accept to be your/confirm that you are my friend” from the user to this contact.
In XMPP terms: “You will receive my presence updates”.
- async on_friend_delete(text='')[source]¶
Called when receiving an “unsubscribed” presence, ie, “I would like to remove you to my contacts/friends” or “I refuse your friend request” from the user to this contact.
In XMPP terms: “You won’t receive my presence updates anymore (or you never have)”.
- async on_friend_request(text='')[source]¶
Called when receiving a “subscribe” presence, ie, “I would like to add you to my contacts/friends”, from the user to this contact.
In XMPP terms: “I would like to receive your presence updates”
This is only called if self.is_friend = False. If self.is_friend = True, slidge will automatically “accept the friend request”, ie, reply with a “subscribed” presence.
When called, a ‘friend request event’ should be sent to the legacy service, and when the contact responds, you should either call self.accept_subscription() or self.reject_subscription()
- class slidcord.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)
- session: slidcord.session.Session[source]¶
- async jid_username_to_legacy_id(username)[source]¶
Convert a JID user part to a legacy ID.
Should be overridden in case legacy IDs are not strings, or more generally for any case where the username part of a JID (unescaped with to the mapping defined by XEP-0106) is not enough to identify a contact on the legacy network.
Default implementation is an identity operation
- Parameters:
jid_username – User part of a JID, ie “user” in “user@example.com”
username (str)
- Returns:
An identifier for the user on the legacy network.
- async legacy_id_to_jid_username(discord_user_id)[source]¶
Convert a legacy ID to a valid ‘user’ part of a JID
Should be overridden for cases where the str conversion of the legacy_id is not enough, e.g., if it is case-sensitive or contains forbidden characters not covered by XEP-0106.
- async fill()[source]¶
Populate slidge’s “virtual roster”.
This should yield contacts that are meant to be added to the user’s roster, typically by using
await self.by_legacy_id(contact_id)
. Setting the contact nicknames, avatar, etc. should be inLegacyContact.update_info()
It’s not mandatory to override this method, but it is recommended way to populate “friends” of the user. Calling
await (await self.by_legacy_id(contact_id)).add_to_roster()
accomplishes the same thing, but doing it in here allows to batch DB queries and is better performance-wise.