This specification defines an XMPP protocol extension for communicating information about user moods.
NOTICE: The protocol defined herein is a Draft Standard of the XMPP Standards Foundation. Implementations are encouraged and the protocol is appropriate for deployment in production systems, but some changes to the protocol are possible before it becomes a Final Standard.
Series: XEP
Number: 0107
Publisher: XMPP Standards Foundation
Status:
Draft
Type:
Standards Track
Version: 1.1
Last Updated: 2007-06-04
Approving Body: XMPP Council
Dependencies: XMPP Core, XEP-0163
Supersedes: None
Superseded By: None
Short Name: mood
Schema: <http://www.xmpp.org/schemas/mood.xsd>
Wiki Page: <http://wiki.jabber.org/index.php/User Mood (XEP-0107)>
JabberID:
stpeter@jabber.org
URI:
https://stpeter.im/
Email:
ralphm@ik.nu
JabberID:
ralphm@ik.nu
The preferred venue for discussion of this document is the Standards discussion list: <http://mail.jabber.org/mailman/listinfo/standards>.
Errata may be sent to <editor@xmpp.org>.
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 following 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. Introduction
2. Protocol
2.1. Data Format
2.2. Pubsub Transport
2.3. Message Transport
3. Mood Values
4. Mapping to Wireless Village Moods
5. Internationalization Considerations
6. Security Considerations
7. IANA Considerations
8. XMPP Registrar Considerations
8.1. Protocol Namespaces
9. XML Schema
Notes
Revision History
This document defines an extension mechanism for capturing "extended presence" data about user moods.
Information about user moods is provided by the user and propagated on the network by the user's client. The information is structured via a <mood/> element that is qualified by the 'http://jabber.org/protocol/mood' namespace. The mood itself is provided as the element name of a defined child element of the <mood/> element (e.g., <happy/>); one such child element is REQUIRED. The user MAY also specify a natural-language description of, or reason for, the mood in the <text/> child of the <mood/> element, which is OPTIONAL. Here is an example:
<mood xmlns='http://jabber.org/protocol/mood'> <happy/> <text>Yay, the mood spec has been approved!</text> </mood>
In addition, an application MAY provide a more specific mood value as a properly-namespaced child of the defined element, which extension MUST be ignored if the receiving application does not understand the extended namespace. Here is an example:
<mood xmlns='http://jabber.org/protocol/mood'> <happy> <ecstatic xmlns='http://ik.nu/ralphm'/> </happy> <text>Yay, the mood spec has been approved!</text> </mood>
Mood information SHOULD be communicated and transported by means of the Publish-Subscribe [1] subset specified in Personal Eventing via Pubsub [2]. Because mood information is not pure presence information and can change independently of the user's availability, it SHOULD NOT be provided as an extension to <presence/>.
<iq type='set' from='juliet@capulet.lit/ca486eba-0f9a-11dc-8835-000bcd821bfb' id='publish1'> <pubsub xmlns='http://jabber.org/protocol/pubsub'> <publish node='http://jabber.org/protocol/mood'> <item> <mood xmlns='http://jabber.org/protocol/mood'> <annoyed/> <text>curse my nurse!</text> </mood> </item> </publish> </pubsub> </iq>
The mood is then delivered to all subscribers:
<message from='juliet@capulet.lit' to='romeo@montague.net'> <event xmlns='http://jabber.org/protocol/pubsub#event'> <items node='http://jabber.org/protocol/mood'> <item id='a475804a-0f9c-11dc-98a8-001143d5d5db'> <mood xmlns='http://jabber.org/protocol/mood'> <annoyed/> <text>curse my nurse!</text> </mood> </item> </items> </event> </message> . . .
A user MAY provide a mood extension in a specific message in order to lend a defined emotional tone to the text.
<message from='romeo@montague.lit/05f018b8-0f9c-11dc-9e44-000bcd821bfb' from='juliet@capulet.lit' type='chat'> <body>A thousand times good night!</body> <mood xmlns='http://jabber.org/protocol/mood'> <sad/> </mood> </message>
There exist various theories of human affect, mood, and emotion, including those promulgated by Frijda [3], Ortony et al. [4], and Wierzbicka [5]. The taxonomy provided here mostly follows the Affective Knowledge Representation that has been defined by Lisetti [6] in an effort to harmonize the prevailing theories in this area. Furthermore, the taxonomy provided here includes a number of physical states in addition to moods, and also takes into account the specific context of instant messaging, including work done by other standards development organizations (e.g., the Wireless Village specifications contributed to the Open Mobile Alliance (OMA) [7]) and instant messaging service providers (e.g., ICQ).
The mood values defined in this taxonomy are as follows:
The Wireless Village (now "IMPS") specifications for mobile instant messaging define a number of presence attributes, encapsulated in the "StatusMood" information element [8]. The following values are defined for StatusMood in Wireless Village, all of which map one-to-one from Wireless Village to the same values (albeit lowercase) in Jabber:
The full range of moods defined herein is richer than that defined in Wireless Village; no mapping is provided by this specification for mood values that are not present in Wireless Village, and any such mapping is the responsibility of a gateway between the two systems.
The XML character data values of the <value/> elements is not intended to be presented to a human user and thus there is no special reason to include an 'xml:lang' attribute unless the sender includes a <text/> element as well (as explained in RFC 2277 [9], "internationalization is for humans"). It is the responsibility of the receiving application to provide localized text strings associated with the XML character data values defined herein, or some other appropriate presentation (e.g., graphical images that represent the mood).
Because user moods may be published to a large number of pubsub subscribers, users should take care in approving subscribers and in characterizing their current moods.
This document requires no interaction with the Internet Assigned Numbers Authority (IANA) [10].
The XMPP Registrar [11] includes 'http://jabber.org/protocol/mood' in its registry of protocol namespaces.
<?xml version='1.0' encoding='UTF-8'?> <xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema' targetNamespace='http://jabber.org/protocol/mood' xmlns='http://jabber.org/protocol/mood' elementFormDefault='qualified'> <xs:element name='mood'> <xs:complexType> <xs:sequence> <xs:choice> <xs:element name='afraid' type='empty'/> <xs:element name='amazed' type='empty'/> <xs:element name='angry' type='empty'/> <xs:element name='annoyed' type='empty'/> <xs:element name='anxious' type='empty'/> <xs:element name='aroused' type='empty'/> <xs:element name='ashamed' type='empty'/> <xs:element name='bored' type='empty'/> <xs:element name='brave' type='empty'/> <xs:element name='calm' type='empty'/> <xs:element name='cold' type='empty'/> <xs:element name='confused' type='empty'/> <xs:element name='contented' type='empty'/> <xs:element name='cranky' type='empty'/> <xs:element name='curious' type='empty'/> <xs:element name='depressed' type='empty'/> <xs:element name='disappointed' type='empty'/> <xs:element name='disgusted' type='empty'/> <xs:element name='distracted' type='empty'/> <xs:element name='embarrassed' type='empty'/> <xs:element name='excited' type='empty'/> <xs:element name='flirtatious' type='empty'/> <xs:element name='frustrated' type='empty'/> <xs:element name='grumpy' type='empty'/> <xs:element name='guilty' type='empty'/> <xs:element name='happy' type='empty'/> <xs:element name='hot' type='empty'/> <xs:element name='humbled' type='empty'/> <xs:element name='humiliated' type='empty'/> <xs:element name='hungry' type='empty'/> <xs:element name='hurt' type='empty'/> <xs:element name='impressed' type='empty'/> <xs:element name='in_awe' type='empty'/> <xs:element name='in_love' type='empty'/> <xs:element name='indignant' type='empty'/> <xs:element name='interested' type='empty'/> <xs:element name='intoxicated' type='empty'/> <xs:element name='invincible' type='empty'/> <xs:element name='jealous' type='empty'/> <xs:element name='lonely' type='empty'/> <xs:element name='mean' type='empty'/> <xs:element name='moody' type='empty'/> <xs:element name='nervous' type='empty'/> <xs:element name='neutral' type='empty'/> <xs:element name='offended' type='empty'/> <xs:element name='playful' type='empty'/> <xs:element name='proud' type='empty'/> <xs:element name='relieved' type='empty'/> <xs:element name='remorseful' type='empty'/> <xs:element name='restless' type='empty'/> <xs:element name='sad' type='empty'/> <xs:element name='sarcastic' type='empty'/> <xs:element name='serious' type='empty'/> <xs:element name='shocked' type='empty'/> <xs:element name='shy' type='empty'/> <xs:element name='sick' type='empty'/> <xs:element name='sleepy' type='empty'/> <xs:element name='stressed' type='empty'/> <xs:element name='surprised' type='empty'/> <xs:element name='thirsty' type='empty'/> <xs:element name='worried' type='empty'/> </xs:choice> <xs:element name='text' minOccurs='0' type='xs:string'/> </xs:sequence> </xs:complexType> </xs:element> <xs:simpleType name='empty'> <xs:restriction base='xs:string'> <xs:enumeration value=''/> </xs:restriction> </xs:simpleType> </xs:schema>
1. XEP-0060: Publish-Subscribe <http://www.xmpp.org/extensions/xep-0060.html>.
2. XEP-0163: Personal Eventing via Pubsub <http://www.xmpp.org/extensions/xep-0163.html>.
3. Frijda, N. 1986. The Emotions. New York: Cambridge University Press.
4. Ortony, A., Clore, G., and Collins, A. 1988. The Cognitive Structure of Emotions. Hillsdale, NJ: Erlbaum.
5. Wierzbicka, A. 1992. Defining Emotion Concepts. Cognitive Science 16: 539-581.
6. Lisetti, C. 2002. Personality, Affect, and Emotion Taxonomy for Socially Intelligent Agents. In Proceedings of FLAIRS 2002. Menlo Park, CA: AAAI Press.
7. The Open Mobile Alliance is the focal point for the development of mobile service enabler specifications, which support the creation of interoperable end-to-end mobile services. For further information, see <http://www.openmobilealliance.org/>.
8. The Wireless Village Initiative: Presence Attributes v1.1 (WV-029); for further information, visit <http://www.openmobilealliance.org/tech/affiliates/wv/wvindex.html>.
9. RFC 2277: IETF Policy on Character Sets and Languages <http://tools.ietf.org/html/rfc2277>.
10. 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/>.
11. 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://www.xmpp.org/registrar/>.
Corrected PEP examples.
(psa)Per a vote of the Jabber Council, advanced status to Draft; per Council discussion, also added two additional moods and adjusted structure to use elements rather than XML character data.
(psa/rm)Added internationalization considerations.
(psa)Corrected several errors; added reference to XEP-0033.
(psa)Minor fixes to text and schema.
(psa)Added more moods.
(psa)Expanded the information format; changed primary container to use pubsub.
(psa)Initial version.
(psa)END