<remark>Per a vote of the Jabber Council, advanced status to Active.</remark>
</revision>
<revision>
<version>0.3</version>
<date>2006-01-12</date>
<initials>psa</initials>
<remark>Collected all syntax rules into dedicated section; incorporated feedback from implementation experience; adjusted text regarding base64 encoding.</remark>
</revision>
<revision>
<version>0.2</version>
<date>2005-10-18</date>
<initials>psa</initials>
<remark>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.</remark>
<p>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.</p>
<p>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;.</p>
<examplecaption="User's Server Acknowledges Publish"><![CDATA[
<iqto='juliet@capulet.com'type='result'id='vc1'/>
]]></example>
<p>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:</p>
<examplecaption="User's Client Includes Avatar Hash in Presence Broadcast"><![CDATA[
<presencefrom='juliet@capulet.com/balcony'>
<xxmlns='vcard-temp:x:update'>
<photo>sha1-hash-of-image</photo>
</x>
</presence>
]]></example>
<p>The user's server then broadcasts that presence information to all contacts who are subscribed to the user's presence information.</p>
<p>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 <cite>XEP-0054</cite> (note that this request is sent to the user's bare JID, not full JID):</p>
<li><p>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).</p></li>
<p>If a client is not yet ready to advertise an image, it MUST send an empty update child element, i.e.:</p>
<examplecaption="User Is Not Ready to Advertise an Image"><![CDATA[
<presence>
<xxmlns='vcard-temp:x:update'/>
</presence>
]]></example>
</li>
<li>
<p>If there is no avatar image to be advertised, the photo element MUST be empty, i.e.:</p>
<examplecaption="No Image to be Advertised"><![CDATA[
<presence>
<xxmlns='vcard-temp:x:update'>
<photo/>
</x>
</presence>
]]></example>
<p>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.</p>
<p>Note: This enables recipients to distinguish between the absence of an image (empty photo element) and mere support for the protocol (empty update child).</p>
<section2topic='Downloading and Uploading the vCard'anchor='bizrules-vcard'>
<p>The following rules apply to downloading and uploading the vCard:</p>
<ol>
<li><p>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.</p></li>
<li><p>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.</p></li>
<li><p>The client MUST NOT poll for new versions of the user's vCard in order to determine whether to update the avatar image hash.</p></li>
<p>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:</p>
<ol>
<li><p>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.</p></li>
<li>
<p>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:</p>
<ul>
<li><p>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.</p></li>
<li><p>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.</p></li>
<li><p>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.</p></li>
</ul>
</li>
</ol>
</section2>
<section2topic='Resetting the Image Hash'anchor='bizrules-reset'>
<p>Resetting the image hash consists of the following steps:</p>
<ol>
<li><p>Immediately send out a presence element with an empty update child element (containing no photo element).</p></li>
<li><p>Download the vCard from the server.</p></li>
<li><p>If the BINVAL is empty or missing, advertise an empty photo element in future presence broadcasts.</p></li>
<li><p>If the BINVAL contains image data, calculate the hash of image and advertise that hash in future presence broadcasts.</p></li>
</ol>
</section2>
<section2topic='XML Syntax'anchor='bizrules-xml'>
<p>The following rules apply to the XML syntax:</p>
<ol>
<li><p>The <PHOTO/> element SHOULD contain a <BINVAL/> child whose XML character data is Base64-encoded data for the avatar image.</p></li>
<li><p>The <PHOTO/> element SHOULD NOT contain an <EXTVAL/> that points to a URI for the image file.</p></li>
<li><p>The <PHOTO/> element MUST NOT contain the avatar image itself.</p></li>
<li><p>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".</p></li>
<li><p>The <PHOTO/> element MUST NOT possess a 'mime-type' attribute.</p></li>
<li><p>The image SHOULD use less than eight kilobytes (8k) of data; this restriction is to be enforced by the publishing client.</p></li>
<li><p>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.</p></li>
<li><p>The image SHOULD be square.</p></li>
<li><p>The image content type <note>The IANA registry of content types is located at <<linkurl='http://www.iana.org/assignments/media-types/'>http://www.iana.org/assignments/media-types/</link>>.</note> 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.</p></li>
<li><p>The image data MUST conform to the base64Binary datatype <note>See <<linkurl='http://www.w3.org/TR/xmlschema-2/#base64Binary'>http://www.w3.org/TR/xmlschema-2/#base64Binary</link>>.</note> 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.</p></li>
<p>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.</p>
<p>If the image data exceeds the 8 KB restriction, the processing application SHOULD process the data.</p>