slidge.command
#
This module implements an unified API to define adhoc
or chatbot commands. Just subclass a Command
,
and make sures it is imported in your legacy module’s __init__.py
.
Submodules#
Package Contents#
Classes#
Abstract base class to implement gateway commands (chatbot and ad-hoc) |
|
Defines who can access a given Command |
|
A confirmation 'dialog' |
|
A form, to request user input |
|
Represents a field of the form that a user will see when registering to the gateway |
|
Results of the search command (search for contacts via Jabber Search) |
|
Structured data as the result of a command |
Attributes#
|
- class slidge.command.Command(xmpp)#
Abstract base class to implement gateway commands (chatbot and ad-hoc)
- Parameters:
xmpp (slidge.core.gateway.BaseGateway) –
- ACCESS: CommandAccess#
Who can use this command
- async run(session, ifrom, *args)#
Entry point of the command
- Parameters:
session (Optional[BaseSession[Any, Any]]) – If triggered by a registered user, its slidge Session
ifrom (slixmpp.JID) – JID of the command-triggering entity
args (str) – When triggered via chatbot type message, additional words after the CHAT_COMMAND string was passed
- Returns:
Either a TableResult, a Form, a Confirmation, a text, or None
- Return type:
CommandResponseType
- raise_if_not_authorized(jid)#
Raise an appropriate error is jid is not authorized to use the command
- Parameters:
jid (slixmpp.JID) – jid of the entity trying to access the command
- Return type:
Optional[BaseSession[Any, Any]]
:return:session of JID if it exists
- class slidge.command.CommandAccess#
Defines who can access a given Command
Initialize self. See help(type(self)) for accurate signature.
- class slidge.command.Confirmation#
A confirmation ‘dialog’
- handler: ConfirmationHandlerType#
An async function that should return a ResponseType
- handler_args: Iterable[Any]#
arguments passed to the handler
- get_form()#
Get the slixmpp form
- Returns:
some xml
- Return type:
slixmpp.plugins.xep_0004.Form
- class slidge.command.Form#
A form, to request user input
- get_values(slix_form)#
Parse form submission
- get_xml()#
Get the slixmpp “form”
- Returns:
some XML
- Return type:
slixmpp.plugins.xep_0004.Form
- class slidge.command.FormField#
Represents a field of the form that a user will see when registering to the gateway via their XMPP client.
- var: str = ''#
Internal name of the field, will be used to retrieve via
slidge.GatewayUser.registration_form
- private: bool = False#
For sensitive info that should not be displayed on screen while the user types. Forces field_type to “text-private”
- value: str = ''#
Pre-filled value. Will be automatically pre-filled if a registered user modifies their subscription
- validate(value)#
Raise appropriate XMPPError if a given value is valid for this field
- get_xml()#
Get the field in slixmpp format
- Returns:
some XML
- Return type:
slixmpp.plugins.xep_0004.FormField
- class slidge.command.SearchResult#
Results of the search command (search for contacts via Jabber Search)
Return type of
BaseSession.search()
.- items: Collection[dict[str, str | slixmpp.JID]]#
The rows of the table. Each row is a dict where keys are the fields
var
attribute.
- get_xml()#
Get a slixmpp “form” (with <reported> header)to represent the data
- Returns:
some XML
- Return type:
slixmpp.plugins.xep_0004.Form
- class slidge.command.TableResult#
Structured data as the result of a command
- items: Collection[dict[str, str | slixmpp.JID]]#
The rows of the table. Each row is a dict where keys are the fields
var
attribute.
- get_xml()#
Get a slixmpp “form” (with <reported> header)to represent the data
- Returns:
some XML
- Return type:
slixmpp.plugins.xep_0004.Form