%ents; ]>
vCard-Based Avatars This document provides historical documentation of a vCard-based protocol for exchanging user avatars. &LEGALNOTICE; 0153 Active Historical Standards Council XMPP Core XMPP IM XEP-0054 vcard-avatar http://www.xmpp.org/schemas/vcard-avatar.xsd &stpeter; 1.0 2006-08-16 psa Per a vote of the Jabber Council, advanced status to Active. 0.3 2006-01-12 psa Collected all syntax rules into dedicated section; incorporated feedback from implementation experience; adjusted text regarding base64 encoding. 0.2 2005-10-18 psa Changed 8k limit from MUST NOT to SHOULD NOT; specified that client should publish new presence stanza if it obtains an avatar image after sending an empty photo element; specified that the update child should be included in directed presence stanzas; more clearly specified Base64 rules. 0.1 2005-06-16 psa Initial version. 0.0.3 2005-06-14 psa Changed type from Informational to Historical, adjusted text accordingly. 0.0.2 2005-06-13 psa Specified that the image data is actually Base64 encoded. 0.0.1 2005-06-09 psa First draft.

There exist several proposed protocols for communicating user avatar information over Jabber/XMPP (see &xep0008; and &xep0084;). This document describes another such protocol that is in use today on the Jabber/XMPP network. This document is historical and does not purport to propose a standards-track protocol. However, a future protocol may improve on the approach documented herein.

The protocol described herein seems to have been designed with the following requirements in mind:

Before informing contacts of the user's avatar, the user's client first publishes the avatar data to the user's public vCard using the protocol defined in &xep0054;.

1476-06-09 Italy Verona JulietCapulet jcapulet@shakespeare.lit image/jpeg Base64-encoded-avatar-file-here! ]]> ]]>

Next, the user's client computes the SHA1 hash of the avatar image data itself (not the base64-encoded version) in accordance with &rfc3174;. This hash is then included in the user's presence information as the XML character data of the <photo/> child of an &X; element qualified by the 'vcard-temp:x:update' namespace, as shown in the following example:

sha1-hash-of-image ]]>

The user's server then broadcasts that presence information to all contacts who are subscribed to the user's presence information.

When the recipient's client receives the hash of the avatar image, it SHOULD check the hash to determine if it already has a cached copy of that avatar image. If not, it retrieves the sender's full vCard in accordance with the protocol flow described in XEP-0054 (note that this request is sent to the user's bare JID, not full JID):

]]> 1476-06-09 Italy Verona JulietCapulet jcapulet@shakespeare.lit image/jpeg Base64-encoded-avatar-file-here! ]]>

The following rules apply to inclusion of the update child element (<x xmlns='vcard-temp:x:update'/>) in presence broadcasts:

  1. If a client supports the protocol defined herein, it MUST include the update child element in every presence broadcast it sends and SHOULD also include the update child in directed presence stanzas (e.g., directed presence sent when joining &xep0045; rooms).

  2. If a client is not yet ready to advertise an image, it MUST send an empty update child element, i.e.:

    ]]>
  3. If there is no avatar image to be advertised, the photo element MUST be empty, i.e.:

    ]]>

    If the client subsequently obtains an avatar image (e.g., by updating or retrieving the vCard), it SHOULD then publish a new &PRESENCE; stanza with character data in the <photo/> element.

    Note: This enables recipients to distinguish between the absence of an image (empty photo element) and mere support for the protocol (empty update child).

The following rules apply to downloading and uploading the vCard:

  1. A client MUST NOT advertise an avatar image without first downloading the current vCard. Once it has done this, it MAY advertise an image. However, a client MUST advertise an image if it has just uploaded the vCard with a new avatar image. In this case, the client MAY choose not to redownload the vCard to verify its contents.

  2. Within a given session, a client MUST NOT attempt to upload a given avatar image more than once. The client MAY upload the avatar image to the vCard on login and after that MUST NOT upload the vCard again unless the user actively changes the avatar image.

  3. The client MUST NOT poll for new versions of the user's vCard in order to determine whether to update the avatar image hash.

Jabber/XMPP allows multiple resources to authenticate for the same JID simultaneously. This introduces the potential of conflict between the resources regarding the user's avatar image. The following rules apply when a client receives a presence broadcast from another resource of its own JID:

  1. If the presence stanza received from the other resource does not contain the update child element, then the other resource does not support vCard-based avatars. That resource could modify the contents of the vCard (including the photo element); because polling for vCard updates is not allowed, the client MUST stop advertising the avatar image hash. However, the client MAY reset its hash if all instances of non-conforming resources have gone offline.

  2. If the presence stanza received from the other resource contains the update child element, then the other resource conforms to the protocol for vCard-based avatars. There are three possible scenarios:

    • If the update child element is empty, then the other resource supports the protocol but does not have its own avatar image. Therefore the client can ignore the other resource and continue to broadcast the existing image hash.

    • If the update child element contains an empty photo element, then the other resource has updated the vCard with an empty BINVAL. Therefore the client MUST retrieve the vCard. If the retrieved vCard contains a photo element with an empty BINVAL, then the client MUST stop advertising the old image.

    • If the update child element contains a non-empty photo element, then the client MUST compare the image hashes. If the hashes are identical, then the client can ignore the other resource and continue to broadcast the existing image hash. If the hashes are different, then the client MUST NOT attempt to resolve the conflict by uploading its avatar image again. Instead, it MUST defer to the content of the retrieved vCard by resetting its image hash (see below) and providing that hash in future presence broadcasts.

Resetting the image hash consists of the following steps:

  1. Immediately send out a presence element with an empty update child element (containing no photo element).

  2. Download the vCard from the server.

  3. If the BINVAL is empty or missing, advertise an empty photo element in future presence broadcasts.

  4. If the BINVAL contains image data, calculate the hash of image and advertise that hash in future presence broadcasts.

The following rules apply to the XML syntax:

  1. The <PHOTO/> element SHOULD contain a <BINVAL/> child whose XML character data is Base64-encoded data for the avatar image.

  2. The <PHOTO/> element SHOULD NOT contain an <EXTVAL/> that points to a URI for the image file.

  3. The <PHOTO/> element MUST NOT contain the avatar image itself.

  4. The <PHOTO/> element SHOULD contain a <TYPE/> child whose XML character data specifies the content-type of the image data. The XML character data SHOULD be "image/gif", "image/jpeg", or "image/png".

  5. The <PHOTO/> element MUST NOT possess a 'mime-type' attribute.

The following rules apply to images:

  1. The image SHOULD use less than eight kilobytes (8k) of data; this restriction is to be enforced by the publishing client.

  2. The image height and width SHOULD be between thirty-two (32) and ninety-six (96) pixels; the recommended size is sixty-four (64) pixels high and sixty-four (64) pixels wide.

  3. The image SHOULD be square.

  4. The image content type The IANA registry of content types is located at <http://www.iana.org/assignments/media-types/>. SHOULD be image/gif, image/jpeg, or image/png; support for the "image/png" content type is REQUIRED, support for the "image/gif" and "image/jpeg" content types is RECOMMENDED, and support for any other content type is OPTIONAL.

  5. The image data MUST conform to the base64Binary datatype See <http://www.w3.org/TR/xmlschema-2/#base64Binary>. and thus be encoded in accordance with Section 6.8 of &rfc2045;, which recommends that base64 data should have lines limited to at most 76 characters in length. However, any whitespace characters (e.g., '\r' and '\n') MUST be ignored.

The XML character data of the <TYPE/> element is a hint. If the XML character data of the <TYPE/> specifies a content type that does not match the data provided in the <BINVAL/> element, the processing application MUST adhere to the content type of the actual image data and MUST ignore the <TYPE/>. If the <TYPE/> is something other than image/gif, image/jpeg, or image/png, it SHOULD be ignored.

If the image data exceeds the 8 KB restriction, the processing application SHOULD process the data.

This document introduces no security considerations above and beyond those described in &xmppcore;, &xmppim;, and &xep0054;.

This document requires no interaction with &IANA;.

The ®ISTRAR; includes 'vcard-temp:x:update' in its registry of protocol namespaces (see &NAMESPACES;).

The protocol documented by this schema is defined in XEP-0153: http://www.xmpp.org/extensions/xep-0153.html ]]>

The author wishes to thank the helpful developers who have implemented this protocol and provided feedback regarding its documentation.