slidge.plugins.facebook.gateway#

Module Contents#

Classes#

Gateway

Must be subclassed by a plugin to set up various aspects of the XMPP

class slidge.plugins.facebook.gateway.Gateway[source]#

Bases: slidge.BaseGateway

Must be subclassed by a plugin to set up various aspects of the XMPP component behaviour, such as its display name or its registration process.

On slidge launch, a singleton is instantiated, and it will be made available to public classes such LegacyContact or BaseSession as the .xmpp attribute. Since it inherits from slixmpp.componentxmpp.ComponentXMPP, this gives you a hand on low-level XMPP interactions via slixmpp plugins, e.g.:

self.send_presence(
    pfrom="somebody@component.example.com",
    pto="someonwelse@anotherexample.com",
)

However, you should not need to do so often since the classes of the plugin API provides higher level abstractions around most commonly needed use-cases, such as sending messages, or displaying a custom status.

REGISTRATION_INSTRUCTIONS = 'Enter facebook credentials'[source]#
REGISTRATION_FIELDS[source]#
REGISTRATION_MULTISTEP = True[source]#
REGISTRATION_TYPE[source]#
ROSTER_GROUP = 'Facebook'[source]#
COMPONENT_NAME = 'Facebook (slidge)'[source]#
COMPONENT_TYPE = 'facebook'[source]#
COMPONENT_AVATAR = 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Facebook_Messenger_logo_2018.svg/480px-...'[source]#
SEARCH_TITLE = 'Search in your facebook friends'[source]#
SEARCH_INSTRUCTIONS = 'Enter something that can be used to search for one of your friends, eg, a first name'[source]#
SEARCH_FIELDS[source]#
async validate(user_jid, registration_form)[source]#

Validate a registration form from a user.

Since XEP-0077 is pretty limited in terms of validation, it is OK to validate anything that looks good here and continue the legacy auth process via direct messages to the user (using BaseGateway.input() for instance).

Parameters:
async validate_two_factor_code(user, code)[source]#

Called when the user enters their 2FA code.

Should raise the appropriate XMPPError if the login fails

Parameters:
  • user (slidge.GatewayUser) – The gateway user whose registration is pending Use their .bare_jid and/or``.registration_form`` attributes to get what you need

  • code – The code they entered, either via “chatbot” message or adhoc command