This JEP defines a protocol profile for centrally defined and administered roster groups.
WARNING: This Informational JEP is Experimental. Publication as a Jabber Enhancement Proposal does not imply approval of this proposal by the Jabber Software Foundation. Implementation of the best practice or protocol profile described herein is encouraged in exploratory implementations, although production systems should not deploy implementations of this protocol until it advances to a status of Draft.
Status: Experimental
Type: Informational
Number: 0140
Version: 0.1
Last Updated: 2004-07-26
JIG: Standards JIG
Approving Body: Jabber Council
Dependencies: XMPP Core, XMPP IM, JEP-0060, JEP-0093
Supersedes: None
Superseded By: None
Short Name: groups
Email: stpeter@jabber.org
JID: stpeter@jabber.org
This Jabber Enhancement Proposal is copyright 1999 - 2004 by the Jabber Software Foundation (JSF) and is in full conformance with the JSF's Intellectual Property Rights Policy <http://www.jabber.org/jsf/ipr-policy.php>. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at <http://www.opencontent.org/openpub/>).
The preferred venue for discussion of this document is the Standards-JIG discussion list: <http://mail.jabber.org/mailman/listinfo/standards-jig>.
The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core and XMPP IM specifications contributed by the Jabber Software Foundation to the Internet Standards Process, which is managed by the Internet Engineering Task Force in accordance with RFC 2026. Any protocols defined in this JEP have been developed outside the Internet Standards Process and are to be understood as extensions to XMPP rather than as an evolution, development, or modification of XMPP itself.
The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.
XMPP IM [1] defines a protocol for personal rosters (also known as contact lists). So far all Jabber rosters are personal rosters that are defined by a single user and accessed only by that user. However, in some contexts it would be helpful to centrally define and administer roster groups so that they can be shared among a user population in an organized fashion. This functionality is often called "shared groups".
One context in which shared groups might be useful is the enterprise environment. For example, when Alice is hired by the marketing department of Big Company Enterprises, it makes sense for her to automatically have the other members of the marketing department in her roster the first time she logs in, and for the rest of the marketing department to have Alice in their rosters as soon as her account has been set up. Similarly, when Bob in logistics gets fired, it makes sense for him to disappear from the rosters of everyone else in the logistics department.
This functionality is not limited to the enterprise environment. It could prove quite useful in academic settings, social networking applications, consumer IM services, and anywhere else that it is important to build and manage small communities of users.
Although Roster Item Exchange [2] defines a format for sharing roster items between two users and therefore enables one user to send roster items to another user, it does not currently provide a way to share or coordinate a group of roster items in an organized fashion. To make that possible, this document extends JEP-0093 by defining Publish-Subscribe [3] as the distribution mechanism, resulting in a basic solution for shared groups over Jabber.
This JEP addresses the following use cases:
This JEP does not address the following use cases, which instead are discussed in the Implementation Guidelines section of this document:
The following examples show the protocol flow for an administrator to complete the use cases defined above. Naturally, these tasks could be performed just as well by an automated application that is tied to an existing user database (e.g., LDAP).
A group is implemented as a pubsub node. If a contact is a member of multiple groups, the contact MUST be added to each pubsub node separately. There is a one-to-one relationship between a group and a node. It is OPTIONAL for the NodeID to include the name of the group (e.g., "groups/Marketing"), although in general it is best not to overload NodeIDs and this is unnecessary given the structure of the groups protocol as described below.
<iq type='set' from='bofh@example.com/daygig' to='pubsub.example.com' id='create1'> <pubsub xmlns='http://jabber.org/protocol/pubsub'> <create node-id='groups/Marketing/Europe'/> </pubsub> </iq>
<iq type='result' from='pubsub.example.com' to='bofh@example.com/daygig' id='create1'/>
There are two steps to adding a member to a group, which SHOULD be performed in this order:
<iq type='set' from='bofh@example.com/daygig' to='pubsub.example.com' id='sub1'> <pubsub xmlns='http://jabber.org/protocol/pubsub'> <entities node='groups/Marketing/Europe'> <entity jid='alice@example.com' affiliation='none' subscription='subscribed'/> </entities> </pubsub> </iq>
<iq type='result' from='pubsub.example.com' to='bofh@example.com/daygig' id='sub1'/>
(Naturally, a member of a shared group need not be informed of changes to the group, and an entity that is informed of changes to the group need not be a member of the group. However, in most applications a group member will be a pubsub subscriber and vice-versa.)
Now the admin publishes information about the member to the group node.
<iq type='set' from='bofh@example.com/daygig' to='pubsub.example.com' id='pub1'> <pubsub xmlns='http://jabber.org/protocol/pubsub'> <publish node='groups/Marketing/Europe'> <item id='alice@example.com'> <x xmlns='jabber:x:roster' jid='alice@example.com' name='Alice Rosenbaum'> <group>Marketing/Europe</group> </x> </item> </publish> </pubsub> </iq>
The member information is then delivered to all subscribers:
<message from='pubsub.example.com' to='cathy@example.com'> <event xmlns='http://jabber.org/protocol/pubsub#event'> <items node='groups/Marketing/Europe'> <item id='alice@example.com'> <x xmlns='jabber:x:roster' jid='alice@example.com' name='Alice Rosenbaum'> <group>Marketing/Europe</group> </x> </item> </items> </event> </message> . . .
Note: It is the receiving application's responsibility to add the newly-published roster item to the recipient's roster by following the protocols defined in XMPP IM. The receiving application SHOULD NOT prompt the recipient regarding whether or not to add the roster item, but if and only the roster item is received via pubsub (i.e., it SHOULD prompt the user when roster items are received from individual users and not via pubsub).
There are two steps to adding a member to a group, which SHOULD be performed in this order:
<iq type='set' from='bofh@example.com/daygig' to='pubsub.example.com' id='del1'> <pubsub xmlns='http://jabber.org/protocol/pubsub'> <entities node='groups/Marketing/Europe'> <entity jid='alice@example.com' affiliation='none' subscription='none'/> </entities> </pubsub> </iq>
<iq type='result' from='pubsub.example.com' to='bofh@example.com/daygig' id='del1'/>
(As noted, the group member need not be a pubsub subscriber, in which case the foregoing step may not be necessary.)
Now admin can remove the member from the shared group.
<iq type='set' from='bofh@example.com/daygig' to='pubsub.example.com' id='purge1'> <pubsub xmlns='http://jabber.org/protocol/pubsub'> <retract node='groups/Marketing/Europe'> <item id='alice@example.com'/> </retract> </pubsub> </iq>
All remaining subscribers are then informed that the node has been deleted:
<message from='pubsub.example.com' to='cathy@example.com'> <event xmlns='http://jabber.org/protocol/pubsub#event'> <retract node='groups/Marketing/Europe'> <item id='alice@example.com'/> </retract> </event> </message> . . .
An administrator may wish to define a hierarchy of shared groups (e.g., "Marketing/Europe" and "Marketing/North America"). This can be done using collection nodes as defined in Section 9 of JEP-0060. The receiving application MAY use Nested Roster Groups [4] to define the roster group names.
Presence is exchanged via the normal mechanisms defined in XMPP IM.
In order to send a message to all members of a shared group, a group member's sending application (usually an end-user client) SHOULD either send multiple messages or use Extended Stanza Addressing [5].
In order to invite all members of a shared group to a groupchat room, a group member's sending application SHOULD use the mechanisms defined in Multi-User Chat [6].
This protocol introduces no security considerations above and beyond those defined in JEP-0060: Publish-Subscribe and JEP-0093: Roster Item Exchange.
This JEP requires no interaction with the Internet Assigned Numbers Authority (IANA) [7].
This JEP requires no interaction with the Jabber Registrar [8].
1. RFC 3921: Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence <http://www.ietf.org/rfc/rfc3921.txt>.
2. JEP-0093: Roster Item Exchange <http://www.jabber.org/jeps/jep-0093.html>.
3. JEP-0060: Publish-Subscribe <http://www.jabber.org/jeps/jep-0060.html>.
4. JEP-0083: Nested Roster Groups <http://www.jabber.org/jeps/jep-0083.html>.
5. JEP-0033: Extended Stanza Addressing <http://www.jabber.org/jeps/jep-0033.html>.
6. JEP-0045: Multi-User Chat <http://www.jabber.org/jeps/jep-0045.html>.
7. 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/>.
8. The Jabber Registrar maintains a list of reserved Jabber protocol namespaces as well as registries of parameters used in the context of protocols approved by the Jabber Software Foundation. For further information, see <http://www.jabber.org/registrar/>.
END