diff options
author | mathieui <mathieui@mathieui.net> | 2021-02-18 20:24:37 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-02-26 00:08:56 +0100 |
commit | 504067d5a814b943e1b2d1a875f232b226b48105 (patch) | |
tree | 8452dfe1fa5733b5433430cc046872987a49064f /docs | |
parent | 0b3233a6e80ab350319334e90743246553b5e181 (diff) | |
download | slixmpp-504067d5a814b943e1b2d1a875f232b226b48105.tar.gz slixmpp-504067d5a814b943e1b2d1a875f232b226b48105.tar.bz2 slixmpp-504067d5a814b943e1b2d1a875f232b226b48105.tar.xz slixmpp-504067d5a814b943e1b2d1a875f232b226b48105.zip |
XEP-0077: API changes
Diffstat (limited to 'docs')
-rw-r--r-- | docs/api/plugins/xep_0077.rst | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/docs/api/plugins/xep_0077.rst b/docs/api/plugins/xep_0077.rst index 725c16b0..33c433e0 100644 --- a/docs/api/plugins/xep_0077.rst +++ b/docs/api/plugins/xep_0077.rst @@ -8,6 +8,53 @@ XEP-0077: In-Band Registration :members: :exclude-members: session_bind, plugin_init, plugin_end +Internal APi methods +-------------------- + +The API here is made to allow components to manage registered users. +The default handlers make use of the plugin options and store users +in memory. + +.. glossary:: + + user_get + - **jid**: unused + - **node**: unused + - **ifrom**: who the request is coming from + - **args**: :class:`~.Iq` registration request. + - **returns**: ``dict`` containing user data or None. + + Get user data for a user. + + user_validate + - **jid**: unused + - **node**: unused + - **ifrom**: who the request is coming from + - **args**: :class:`~.Iq` registration request, 'register' payload. + - **raises**: ValueError if some fields are invalid + + Validate form fields and save user data. + + user_remove + - **jid**: unused + - **node**: unused + - **ifrom**: who the request is coming from + - **args**: :class:`~.Iq` registration removal request. + - **raises**: KeyError if the user is not found. + + Remove a user from the store. + + make_registration_form + - **jid**: unused + - **node**: unused + - **ifrom**: who the request is coming from + - **args**: :class:`~.Iq` registration request. + - **raises**: KeyError if the user is not found. + + Return an :class:`~.Iq` reply for the request, with a form and + options set. By default, use ``form_fields`` and ``form_instructions`` + plugin config options. + Stanza elements --------------- |