Abstract: | This document defines a protocol and URI scheme for user invitation in order to allow a third party to register on a server. The goal of this is to make onboarding for XMPP IM newcomers as easy as possible. |
Author: | Marc Schink |
Copyright: | © 1999 – 2017 XMPP Standards Foundation. SEE LEGAL NOTICES. |
Status: | Experimental |
Type: | Standards Track |
Version: | 0.2.0 |
Last Updated: | 2018-02-11 |
WARNING: This Standards-Track document is Experimental. Publication as an XMPP Extension Protocol does not imply approval of this proposal by the XMPP Standards Foundation. Implementation of the protocol described herein is encouraged in exploratory implementations, but production systems are advised to carefully consider whether it is appropriate to deploy implementations of this protocol before it advances to a status of Draft.
1. Introduction
1.1. User Invitation
1.2. Account Creation
2. Requirements
3. Discovery
4. Glossary
5. Use Cases
5.1. Creating a User Invitation
5.2. Landing Page
5.3. Redeeming a User Invitation
5.3.1. Pre-Configured Account
5.3.2. No Configured Account
5.4. Initiating Account Creation
5.5. Pre-Authenticated In-Band Registration
6. Business Rules
6.1. Fallback to Client-Side PARS
6.2. Account Creation
7. Implementation Notes
7.1. XMPP Server Suggestion for Invitees
8. Accessibility Considerations
9. Internationalization Considerations
10. Security Considerations
11. IANA Considerations
12. XMPP Registrar Considerations
13. XML Schema
Appendices
A: Document Information
B: Author Information
C: Legal Notices
D: Relation to XMPP
E: Discussion Venue
F: Requirements Conformance
G: Notes
H: Revision History
Romeo is an active XMPP IM (Instant Messaging) user or the operator of an XMPP server. He convinces Juliet (who may not have an XMPP account yet) to install a client but she may still need to choose an XMPP server, create an account, and add Romeo as a contact. This specification defines two ways for Romeo to simplify this process for Juliet:
If Romeo is an XMPP user, he can create an out-of-band link (URI) which allows Juliet to:
The process is designed to automatically skip steps that Juliet already completed, to make the overall experience as smooth as possible.
If Romeo is an administrator of an XMPP server, he can create an out-of-band link (URI) which allows Juliet to:
This specification makes use of XMPP URIs. The basic URI scheme for XMPP is defined in RFC 5122 [1] and extended in XMPP URI Query Components (XEP-0147) [2] and Pre-Authenticated Roster Subscription (XEP-0379) [3]. Furthermore, this heavily builds upon the blocks provided in XEP-0379 for landing page and roster subscription.
To create out-of-band invitation links, Romeo's server needs to implement the Ad-Hoc Commands (XEP-0050) [4] commands specified in the following section, and his client must be able to execute them.
Furthermore, Romeo's server SHOULD provide a HTTPS service hosting the landing page.
Romeo can query his server for the availability of "User Invitation" and "Account Creation" commands:
<iq type='get' from='romeo@example.com' to='example.com' id='disco'> <query xmlns='http://jabber.org/protocol/disco#items' node='http://jabber.org/protocol/commands'/> </iq>
TODO: use appropriate node namespace.
<iq type='result' to='romeo@example.com' from='example.com' id='disco'> <query xmlns='http://jabber.org/protocol/disco#items' node='http://jabber.org/protocol/commands'> <item jid='example.com' node='urn:xmpp:invite#invite' name='Invite user'/> <item jid='example.com' node='urn:xmpp:invite#create-account' name='Create account'/> </query> </iq>
When performing the account creation, Juliet's client needs to ensure that the server supports the extended IBR protocol with a <preauth> token: TODO
OPTIONAL.
A user can execute the 'invite' command to obtain a new invitation link with a unique invitation token.
<iq type='set' from='romeo@example.com' to='example.com' id='exec1'> <command xmlns='http://jabber.org/protocol/commands' node='urn:xmpp:invite#invite' action='execute'/> </iq>
<iq type='result' to='romeo@example.com' from='example.com' id='exec2'> <command xmlns='http://jabber.org/protocol/commands' node='urn:xmpp:invite#invite' status='completed'> <x xmlns='jabber:x:data' type='result'> <item> <field var='uri'> <value>xmpp:inviter@example.com?roster;preauth=TOKEN;ibr=y</value> </field> <field var='landing-url'> <value>https://example.com/invite/#TOKEN</value> </field> <field var='expire'> <value>2017-11-06T02:56:15Z</value> </field> </item> </x> </command> </iq>
The token should be unique, sufficiently long and generated by a strong random number generator.
A server MUST provide the uri field which contains an XMPP URI of the following format:
xmpp:inviter@example.com?roster;preauth=TOKEN;ibr=y
The ibr query component in the XMPP URI indicates that the invitee is allowed to create an account on Romeo's server, using the 'preauth' token. If the server does not support or allow in-band registration for invited users, the server MUST omit the ibr query component.
Additionally, the server SHOULD provide the landing-url field which contains an HTTPS URL of a web-based landing page as described in Pre-Authenticated Roster Subscription (XEP-0379) [3] § 3.3. The URL format may differ from the example shown here depending on where the landing page is hosted.
If the server omits the landing-page field, Romeo's client SHOULD generate an appropriate landing page URL hosted by the client developer or a trusted third party.
A server MAY provide a field which provides the expiration date of the generated token. The expiration date MUST conform to the DateTime profile specified in XMPP Date and Time Profiles (XEP-0082) [5]. If the field is not provided, the token does not expire.
Romeo's client should provide adequate means to export the landing-page URL, possibly accompanied with a short description and the expire information, so that Romeo can share it with Juliet by other means than XMPP, like e-mail or a QR code.
The landing page that the generated URL points to should correspond to the format described in XEP-0379 §3.3, and it needs to convey the following information:
If the landing page is hosted by Romeo's server, the server MAY display additional information based on the supplied TOKEN value, like the name of the inviter or validity information.
If Juliet does not have an XMPP client installed, she will not be able to open the xmpp: link from the invitation page. For this case, the landing page needs to indicate that a client must be installed first, and that the link will not work as intended without. The automatic installation of an appropriate IM client when a user clicks on an xmpp: is outside of the scope of this document.
With an XMPP client installed, Juliet can open the xmpp: link and have the client process it appropriately, as follows:
If Juliet's client is already configured with an account, the default action for the presented xmpp:inviter@example.com?roster;... URI is to add the inviter to Juliet's roster. This should be performed as described in §3.4 of XEP-0379, by sending a presence subscription request containing the 'preauth' token.
If Juliet already has Romeo in her roster, her client should open the appropriate chat interface instead.
If Juliet's client does not have an XMPP account configured, she needs to login or register an account first. Therefore, the client should provide an interface with the following options:
If the xmpp: URI provided by Romeo contains the ibr=y parameter, it indicates that the server supports the Pre-Authenticated In-Band Registration defined in this document. If Juliet chooses this approach, the server will ensure that after the registration, Romeo is added to her roster with a full presence subscription.
If Juliet chooses to login or register with a different server, her client must complete the respective process and issue a subscription request as described in §3.4 of XEP-0379.
If Romeo is the administrator of an XMPP server, he might want to ensure that Juliet obtains an account on this server, with a username defined either by Romeo or by Juliet, and in a way that does not require the out-of-band communication of user passwords.
TODO: description of overall process steps, design motivation.
<iq type='set' from='romeo@example.com' to='example.com' id='exec1'> <command xmlns='http://jabber.org/protocol/commands' node='urn:xmpp:invite#create-account' action='execute'/> </iq>
<iq type='result' to='romeo@example.com' from='example.com' id='exec1'> <command xmlns='http://jabber.org/protocol/commands' sessionid='config:20020923T213616Z-700' node='urn:xmpp:invite#create-account' status='executing'> <actions execute='complete'> <complete/> </actions> <x xmlns='jabber:x:data' type='form'> <field var='username' label='Username' type='text-single'/> <field var='roster-subscription' label='Roster subscription' type='boolean'/> </x> </command> </iq>
A server MAY require a username to be specified for account creation. In this case, the server MUST add the <required/> element to the username field. The username MUST be a valid localpart as defined in RFC 6122 [6] §2.3.
<iq type='set' from='romeo@example.com' to='example.com' id='exec2'> <command xmlns='http://jabber.org/protocol/commands' sessionid='config:20020923T213616Z-700' node='urn:xmpp:invite#create-account'> <x xmlns='jabber:x:data' type='submit'> <field var='username'> <value>juliet</value> </field> </x> </command> </iq>
<iq type='result' to='romeo@example.com' from='example.com' id='exec2'> <command xmlns='http://jabber.org/protocol/commands' sessionid='config:20020923T213616Z-700' node='urn:xmpp:invite#create-account' status='completed'> <x xmlns='jabber:x:data' type='result'> <item> <field var='uri'> <value>xmpp:juliet@example.com?register;preauth=TOKEN</value> </field> <field var='landing-url'> <value>https://example.com/invite/#TOKEN</value> </field> <field var='expire'> <value>2017-11-06T02:56:15Z</value> </field> </item> </x> </command> </iq>
The server's response for account creation is the same as for user invitation except for the format of the uri field which contains an XMPP URI of the following format:
xmpp:juliet@example.com?register;preauth=TOKEN
If no username was specified during the account creation process, the local part of the JID in the XMPP URI is omitted by the server which results in the following format:
xmpp:example.com?register;preauth=TOKEN
TODO: note about sensitivity of TOKEN
In order to allow invited users to register on a server, the registration processs as defined in In-Band Registration (XEP-0077) [7] needs to be extended. The invited user's client MUST add a <preauth> element in the 'TODO' namespace to the 'jabber:iq:register' query in order to inform the server that it wants to perform Pre-Authenticated IBR:
<iq type='get' id='reg1' to='example.com'> <query xmlns='jabber:iq:register'> <preauth xmlns='urn:xmpp:invite:1'/> </query> </iq>
If the server supports and is ready to perform Pre-Authenticated IBR, it MUST add a <token> element to the response (TODO: 'token' or 'preauth'?):
<iq type='result' to='romeo@example.com' from='example.com' id='reg1'> <query xmlns='jabber:iq:register'> <x xmlns='jabber:x:data' type='form'> <field type='hidden' var='FORM_TYPE'> <value>urn:xmpp:invite:1</value> </field> <field type='text-single' label='Username' var='username'> <required/> </field> <field type='text-private' label='Password' var='password'> <required/> </field> <field type='text-single' label='Invite token' var='token'> <required/> </field> </x> </query> </iq>
<iq type='error' from='example.com' id='reg1'> <query xmlns='jabber:iq:register'> <x xmlns='jabber:x:data' type='form'> <field type='hidden' var='FORM_TYPE'> <value>urn:xmpp:invite:1</value> </field> <field type='text-single' var='username'> <value>juliet<value/> </field> <field type='text-private' var='password'> <value>m1cro$oft<value/> </field> <field type='text-single' var='token'> <value>BADTOKEN<value/> </field> </x> </query> <error type='modify'> <bad-request xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> <invalid-token xmlns='urn:xmpp:invite:1'/> </error> </iq>
<iq type='error' from='example.com' id='reg1'> <query xmlns='jabber:iq:register'> <x xmlns='jabber:x:data' type='form'> <field type='hidden' var='FORM_TYPE'> <value>urn:xmpp:invite:1</value> </field> <field type='text-single' var='username'> <value>juliet<value/> </field> <field type='text-private' var='password'> <value>m1cro$oft<value/> </field> <field type='text-single' var='token'> <value>OLDTOKEN<value/> </field> </x> </query> <error type='cancel'> <not-allowed xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> <token-expired xmlns='urn:xmpp:invite:1'/> </error> </iq>
After the invitee has successfully registered on the inviter's server and roster subscription is enabled for account creation, the server MUST use roster pushes as defined in RFC 6121 [8] §2.1.6 in order to inform the inviter about the invitee's new account without the need to reconnect.
<iq type='set' from='romeo@example.com' id='push'> <query xmlns='jabber:iq:roster'> <item subscription='both' jid='juliet@example.com'/> </query> </iq>
If the inviter's server does not support user invitation, the client application SHOULD silently fall back to Pre-Authenticated Roster Subscription (XEP-0379) [3] for a good user experience.
If a username was specified during the account creation process, the server SHOULD NOT create an account on the server until the invitee actually registers it with the corresponding token. The server MUST reserve the username at least until the corresponding token expires.
If the invitee opens an invitation URI with ibr=y and chooses to create a new account, the client SHOULD pre-fill the inviter JID's domain part as the new account's domain. The client MAY provide a mechanism to enter or choose a different server, though.
OPTIONAL.
OPTIONAL.
See security considerations in Pre-Authenticated Roster Subscription (XEP-0379) [3].
This document requires no interaction with the Internet Assigned Numbers Authority (IANA) [9].
As authorized by XMPP URI Query Components (XEP-0147) [2], the XMPP Registrar maintains a registry of queries and key-value pairs for use in XMPP URIs (see <https://xmpp.org/registrar/querytypes.html>).
The key-value parameter preauth is added to the register query action as defined in In-Band Registration (XEP-0077) [7]
<querytype> <name>register</name> ... <key> <name>preauth</name> <desc>the token used to allow one-time in-band registration on the inviter's server</desc> </key> </querytype>
In addition to the preauth key-value parameter define in Pre-Authenticated Roster Subscription (XEP-0379) [3], the ibr parameter is added to the roster query action.
<querytype> <name>roster</name> ... <key> <name>ibr</name> <value>y</value> <desc>the parameter to indicate that the token allows the invitee to create an account on the inviter's server via in-band registration</desc> </key> </querytype>
REQUIRED for protocol specifications.
Series: XEP
Number: 0401
Publisher: XMPP Standards Foundation
Status:
Experimental
Type:
Standards Track
Version: 0.2.0
Last Updated: 2018-02-11
Approving Body: XMPP Council
Dependencies: XMPP Core, XEP-0001, XEP-0050, XEP-0082, XEP-0077, XEP-0147, XEP-0379
Supersedes: None
Superseded By: None
Short Name: N/A
Source Control:
HTML
This document in other formats:
XML
PDF
The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core (RFC 6120) and XMPP IM (RFC 6121) specifications contributed by the XMPP Standards Foundation to the Internet Standards Process, which is managed by the Internet Engineering Task Force in accordance with RFC 2026. Any protocol defined in this document has been developed outside the Internet Standards Process and is to be understood as an extension to XMPP rather than as an evolution, development, or modification of XMPP itself.
The primary venue for discussion of XMPP Extension Protocols is the <standards@xmpp.org> discussion list.
Discussion on other xmpp.org discussion lists might also be appropriate; see <http://xmpp.org/about/discuss.shtml> for a complete list.
Errata can be sent to <editor@xmpp.org>.
The following requirements keywords as used in this document are to be interpreted as described in RFC 2119: "MUST", "SHALL", "REQUIRED"; "MUST NOT", "SHALL NOT"; "SHOULD", "RECOMMENDED"; "SHOULD NOT", "NOT RECOMMENDED"; "MAY", "OPTIONAL".
1. RFC 5122: Internationalized Resource Identifiers (IRIs) and Uniform Resource Identifiers (URIs) for the Extensible Messaging and Presence Protocol (XMPP) <http://tools.ietf.org/html/rfc5122>.
2. XEP-0147: XMPP URI Query Components <https://xmpp.org/extensions/xep-0147.html>.
3. XEP-0379: Pre-Authenticated Roster Subscription <https://xmpp.org/extensions/xep-0379.html>.
4. XEP-0050: Ad-Hoc Commands <https://xmpp.org/extensions/xep-0050.html>.
5. XEP-0082: XMPP Date and Time Profiles <https://xmpp.org/extensions/xep-0082.html>.
6. RFC 6122: Extensible Messaging and Presence Protocol (XMPP): Address Format <http://tools.ietf.org/html/rfc6122>.
7. XEP-0077: In-Band Registration <https://xmpp.org/extensions/xep-0077.html>.
8. RFC 6121: Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence <http://tools.ietf.org/html/rfc6121>.
9. The Internet Assigned Numbers Authority (IANA) is the central coordinator for the assignment of unique parameter values for Internet protocols, such as port numbers and URI schemes. For further information, see <http://www.iana.org/>.
Note: Older versions of this specification might be available at http://xmpp.org/extensions/attic/
Used Data Forms for extension of In-Band Registration as required by XEP-0077 § 4.
Added "defined condition" elements in error stanzas as required by RFC 6120 § 8.3.2.
Changed type of "invalid-token" error to "modify".
Fix namespacing of Ad-Hoc commands
Bump namespace to invite:1
(ms)First submission.
(ms)END