| Abstract: | This specification defines an approach for users to delegate certain services (e.g. pubsub) to alternative JIDs. |
| Author: | Justin Karneges |
| Copyright: | © 1999 - 2012 XMPP Standards Foundation. SEE LEGAL NOTICES. |
| Status: | Deferred |
| Type: | Standards Track |
| Version: | 0.1 |
| Last Updated: | 2011-01-26 |
WARNING: Consideration of this document has been Deferred by the XMPP Standards Foundation. Implementation of the protocol described herein is not recommended.
1. Introduction
2. How It Works
2.1. Discovering Delegate Services
2.2. Discovering Through a Third-Party Registry
2.3. Managing Third-Party Registry Information
2.4. Confirming With the Delegate
3. Implementation Notes
3.1. Use of Both Direct and Third-Party Queries
3.2. Caching
4. Security Considerations
5. IANA Considerations
6. XMPP Registrar Considerations
6.1. Protocol Namespaces
6.2. Namespace Versioning
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
It is common to use XMPP user accounts for identity. Many features for user accounts have been proposed (for example, User Avatar [1], Microblogging Over XMPP [2], etc), and this list only grows as XMPP heads into social networking territory. However, not every XMPP server in the world supports every feature, nor can this ever be expected, and this limits the usefulness of the XMPP user account identity. Also, even when servers do support a feature it may not be clear how to bind an identity to it (see the never-solved problem of learning where a user's generic Publish-Subscribe [3] service is, in the absence of Personal Eventing Protocol [4]). Organizations such as Buddycloud and Livefyre have recognized the need to be able to offer features to existing standard XMPP accounts by offering proprietary service delegation mechanisms. This specification proposes a Standards Track solution for discovering external services associated with XMPP user identities.
To learn of delegate services for a user, query the bare JID of the user:
Example 1. Query for delegate services
<iq type="get" from="alice@example.com/home" to="bob@example.com" id="d1">
<query xmlns="urn:xmpp:tmp:delegate"/>
</iq>
<iq type="result" from="bob@example.com" to="alice@example.com/home" id="d1">
<query xmlns="urn:xmpp:tmp:delegate">
<service type="pubsub" jid="pubsub.example.net"/>
<service type="chess" jid="bob@chess.example.net"/>
</query>
</iq>
In the above example, we learn that "chess" related communication should go through the "bob@chess.example.net" JID rather than the user's own JID ("bob@example.com").
As it is expected that most servers will not even support the ability to query user accounts for delegate services, it should be possible to contact a third-party or global registry holding the same information, to be queried in much the same way:
Example 3. Query registry for delegate services
<iq type="get" from="alice@example.com/home" to="registry.example.com" id="r1">
<query xmlns="urn:xmpp:tmp:delegate" jid="bob@example.com"/>
</iq>
<iq type="result" from="registry.example.com" to="alice@example.com/home" id="r1">
<query xmlns="urn:xmpp:tmp:delegate">
<service type="pubsub" jid="pubsub.example.net"/>
<service type="chess" jid="bob@chess.example.net"/>
</query>
</iq>
Here's how a user adds a mapping to the registry:
<iq type="set" from="bob@example.com/home" to="registry.example.com" id="r2">
<query xmlns="urn:xmpp:tmp:delegate">
<service type="chess" jid="bob@chess.example.net"/>
</query>
</iq>
<iq type="result" from="registry.example.com" to="bob@example.com/home" id="r2"/>
The registry will add the new service to the list of mapped services for the sender JID.
To remove a service from the list, submit without a jid attribute:
<iq type="set" from="bob@example.com/home" to="registry.example.com" id="r3">
<query xmlns="urn:xmpp:tmp:delegate">
<service type="chess"/>
</query>
</iq>
<iq type="result" from="registry.example.com" to="bob@example.com/home" id="r3"/>
Whether a delegate JID is discovered directly or via registry, the mapping is an assertion made by the user only and not by the delegate. This may have security implications. For example, a third party should not allow the user to pose as the delegate, nor should the mapping be considered an endorsement by the delegate, since anyone can assert any delegate. However, these types of things could be allowed if third parties confirm with the delegate that the association exists.
Here's how to query a delegate JID to confirm if it is indeed associated with a specific user for a specific service type:
Example 9. Confirming a delegation
<iq type="get" from="alice@example.com/home" to="bob@chess.example.net" id="c1">
<check xmlns="urn:xmpp:tmp:delegate" type="chess" jid="bob@example.com"/>
</iq>
Note that the user JID expected to be associated with the delegate must be provided in the request. It is not possible to query a delegate to determine the user JID, since a single delegate may act for many users.
Success response means the association exists:
<iq type="result" from="bob@chess.example.net" to="alice@example.com/home" id="c1"/>
Applications that are configured to use a third-party registry SHOULD still be able to query user accounts directly. For performance reasons, it is recommended to query both the user account and the registry simultaneously, and take whichever answer arrives first. If one of the queries results in an error, then the application should wait for the other query to complete before assuming no such delegate records exists.
If both queries return errors, or a success result does not contain an entry for some desired delegate service, it can be assumed that the desired service is provided by the user account itself (not delegated).
It is RECOMMENDED that discovery or confirmation of delegate information be cached indefinitely and refreshed no more frequently than every 24 hours. Data refreshing should not block access to existing information. If over 24 hours pass since the last time delegate information was needed, the application should continue to use the old data while independently firing off a task to refresh the data. This way, latency associated with a particular user delegation only occurs the first time a user is ever seen.
As discussed above, a delegate mapping is an assertion by the user only. If the user should be allowed to act for the delegate, or if the user should be considered endorsed by the delegate, then the delegation needs to be confirmed first.
No interaction with the Internet Assigned Numbers Authority (IANA) [5] is required as a result of this document.
This specification defines the following XML namespace:
Upon advancement of this specification from a status of Experimental to a status of Draft, the XMPP Registrar [6] shall add the foregoing namespace to the registry located at <http://xmpp.org/registrar/namespaces.html>, as described in Section 4 of XMPP Registrar Function [7].
If the protocol defined in this specification undergoes a revision that is not fully backwards-compatible with an older version, the XMPP Registrar shall increment the protocol version number found at the end of the XML namespaces defined herein, as described in Section 4 of XEP-0053.
Series: XEP
Number: 0291
Publisher: XMPP Standards Foundation
Status:
Deferred
Type:
Standards Track
Version: 0.1
Last Updated: 2011-01-26
Approving Body: XMPP Council
Dependencies: XMPP Core
Supersedes: None
Superseded By: None
Short Name: NOT_YET_ASSIGNED
Source Control:
HTML
This document in other formats:
XML
PDF
Email:
justin@affinix.com
JabberID:
justin@andbit.net
The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core (RFC 3920) and XMPP IM (RFC 3921) 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. XEP-0084: User Avatar <http://xmpp.org/extensions/xep-0084.html>.
2. XEP-0277: Microblogging over XMPP <http://xmpp.org/extensions/xep-0277.html>.
3. XEP-0060: Publish-Subscribe <http://xmpp.org/extensions/xep-0060.html>.
4. XEP-0163: Personal Eventing Protocol <http://xmpp.org/extensions/xep-0163.html>.
5. 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/>.
6. The XMPP Registrar maintains a list of reserved protocol namespaces as well as registries of parameters used in the context of XMPP extension protocols approved by the XMPP Standards Foundation. For further information, see <http://xmpp.org/registrar/>.
7. XEP-0053: XMPP Registrar Function <http://xmpp.org/extensions/xep-0053.html>.
Note: Older versions of this specification might be available at http://xmpp.org/extensions/attic/
Initial published version.
(psa)First draft.
(jk)END