1
0
mirror of https://github.com/moparisthebest/xeps synced 2024-11-21 08:45:04 -05:00

inbox/fsn.xml: New revision (0.0.3)

Remark:
Added Requirements and Acknowledgements, simplified some definitions and added
rules for Client State Indication.
This commit is contained in:
LNJ 2018-07-20 16:52:55 +02:00
parent 8543e50a96
commit 7075c94864
No known key found for this signature in database
GPG Key ID: 4663231A91A1E27B

View File

@ -27,6 +27,12 @@
<email>lnj@kaidan.im</email>
<jid>lnj@kaidan.im</jid>
</author>
<revision>
<version>0.0.3</version>
<date>2018-07-20</date>
<initials>lnj</initials>
<remark><p>Added Requirements and Acknowledgements, simplified some definitions and added rules for CSI.</p></remark>
</revision>
<revision>
<version>0.0.2</version>
<date>2018-07-19</date>
@ -42,8 +48,19 @@
</header>
<section1 topic='Introduction' anchor='intro'>
<p>The specification of &xep0085; defines a protocol for exchanging information about the activity of the user, for example that the user is currently typing. However with the new possibilities of media sharing as in &xep0385; and &xep0363; there are also new desirable chat states. For example when a user uploads an image, the upload usually takes a while. To notify the chat partner about the uploading process a new chat state is required.</p>
<p>When users send large files or have a very slow upstream connection it can make the chat partner confused when they are receiving a sending state for a long time. In these cases it can be nice to give the chat partner information about the upload progress. This way the chat partner can estimate if a file will arrive immediately or if it is better to go and get a coffee first.</p>
<p>Apart from notifications for sending files, there should also be notifications when a user is creating new media files, for example when the user is recording audio, a video or is taking a picture.</p>
<p>When users send large files or have a very slow upstream connection it can make the chat partner confused when they are receiving an uploading state for a long time. In these cases it can be nice to share the upload progress. This way the chat partner can estimate if a file will arrive immediately or if it is better to go and get a coffee first.</p>
<p>Apart from notifications for sending files, there should also be notifications when a user is creating new media files, for example when the user is recording audio, recording a video or is taking a picture.</p>
</section1>
<section1 topic='Requirements' anchor='reqs'>
<ul>
<li>Convey state of ongoing file uploads.</li>
<li>Distingush different media types, such as images, videos or audio messages.</li>
<li>Share the progress of uploads.</li>
<li>Notify about the recording of media, i.e. when a user is recording audio or taking a picture.</li>
<li>Signal when an upload was cancelled.</li>
<li>Be usable in groupchats.</li>
<li>Define recommended rules for backwards-compatibility with &xep0085;.</li>
</ul>
</section1>
<section1 topic='Use Cases' anchor='usecases'>
<section2 topic='User takes a picture via. the client and sends it afterwards'>
@ -52,27 +69,31 @@
from='bernardo@shakespeare.lit/pda'
to='francisco@shakespeare.lit'
type='chat'>
<creating xmlns='urn:xmpp:fsn:0' type='photo' />
<creating xmlns='urn:xmpp:fsn:0' type='image' />
</message>
]]></example>
<p>Bernardo is informing Francisco about his activity of taking a picture to send it afterwards. If Francisco's client supports file sharing notifications, it should display this as something similiar as 'Bernardo is taking a photo...'.</p>
<p>A list of possible 'types' can be found below.</p>
<table caption='Types of file creations'>
<p>Bernardo is informing Francisco about his activity of taking a picture to send it afterwards. If Francisco's client supports file sharing notifications, it should display this similarly to 'Bernardo is taking a photo…'.</p>
<p>A list of possible 'type' attributes is defined below.</p>
<table caption='Media types for &lt;creating/&gt; and &lt;uploading/&gt; states'>
<tr>
<th>Type</th>
<th>Definition</th>
</tr>
<tr>
<td>photo</td>
<td>User is taking a picture.</td>
<td>animation</td>
<td>An animated image file, for example a GIF file. It SHOULD NOT be used in the &lt;creating/&gt; state.</td>
</tr>
<tr>
<td>audio</td>
<td>An audio file. This MAY also be displayed as a voice recording when used in the &lt;creating/&gt; state.</td>
</tr>
<tr>
<td>image</td>
<td>An image file.</td>
</tr>
<tr>
<td>video</td>
<td>User is recording a video.</td>
</tr>
<tr>
<td>voice</td>
<td>User is recording their voice.</td>
<td>A video file.</td>
</tr>
</table>
<example caption="User is now sending the image"><![CDATA[
@ -85,29 +106,7 @@
]]></example>
<p>Bernardo has taken a good picture for sending and has started uploading, now. The same notification is also used when the image existed before and there were no process of creating it.</p>
<p>The 'progress' attribute has to be in the range of zero (0) and one (1). With other words the bytes sent divided by the total bytes. Generally the progress SHOULD NOT have more than two digits after the decimal point since the exact uploading status isn't important. Also there SHOULD be no more progress updates than once per second.</p>
<p>A table of possible 'types' is listed below.</p>
<table caption='Types of file uploads'>
<tr>
<th>Type</th>
<th>Definition</th>
</tr>
<tr>
<td>animation</td>
<td>An animated image file, for example a GIF file.</td>
</tr>
<tr>
<td>audio</td>
<td>An audio file.</td>
</tr>
<tr>
<td>image</td>
<td>An image file.</td>
</tr>
<tr>
<td>video</td>
<td>A video file.</td>
</tr>
</table>
<p>The 'type' attribute equals the 'type' attribute by the &lt;creating/&gt; element.</p>
<example caption="User has finished the file upload"><![CDATA[
<message
from='bernardo@shakespeare.lit/pda'
@ -129,14 +128,32 @@
</section2>
</section1>
<section1 topic='Business Rules' anchor='rules'>
<section2 topic='Chat State Notifications related rules'>
<p>If the client also supports &xep0085;, then it SHOULD also send chat states for backwards-compatibility. In this case clients without support file sharing notifications, still receive a normal &lt;composing/&gt; state.</p>
<p>When sending a &lt;composing/&gt; or &lt;uploading/&gt; notification, the client SHOULD send a &lt;composing/&gt; state, but only as long as the user is active. When the &lt;upload-aborted/&gt; notification is sent the &lt;paused/&gt; state MUST be used.</p>
<p>Of course the &lt;composing/&gt; state has to be cleared on completion of a file upload and the &lt;active/&gt; state SHALL be sent.</p>
<p>It is allowed to send a file sharing notification even if according to &xep0085; the user is &lt;inactive/&gt;, for example when the client is continuing a file upload, while the user is doing something else. But keep in mind that the chat state MUST go back to &lt;composing/&gt; when the user becomes active again and the upload is still running. Also, the user SHOULD NOT be seen as &lt;inactive/&gt; while selecting a file or using another application to take a photo, record voice or record a video.</p>
<section2 topic='Chat State Notifications related rules' anchor='rules-chatstates'>
<p>When a sending client chooses to map file sharing notifcations to &xep0085;, it MUST follow the following rules:</p>
<ul>
<li>As long as no upload or creation is in progress, the normal XEP-0085 states are sent.</li>
<li>During creation, a client MUST send &lt;composing/&gt; state (overriding the state which would normally be sent with XEP-0085 logic).</li>
<li>During upload and while the user is active, a client SHOULD continue to send the &lt;composing/&gt; state (overriding the state which would normally be sent with XEP-0085 logic).</li>
<li>During upload and while the user is inactive, a client SHOULD send &lt;inactive/&gt; instead of &lt;composing/&gt;.</li>
<li>After the upload finishes or is aborted, the normal XEP-0085 logic takes over. Normally, this will put the conversation into &lt;active/&gt; or &lt;inactive/&gt; state (but if the user still has input pending, it may also be &lt;paused/&gt;).</li>
</ul>
<p>A client MAY choose not to apply this mapping if it allows text input while creating or uploading media, to allow transmitting normal XEP-0085 states for the text input.</p>
<p>If a client allows a user to pick media which are already created (thus skipping the &lt;creating/&gt; state), it MAY treat interaction with the media selection like text input in XEP-0085 (i.e. send &lt;composing/&gt; while the user is actively engaging with it and switch to &lt;paused/&gt; if inactive for a certain time).</p>
</section2>
<section2 topic='Concurrent Uploads' anchor='rules-concurrent'>
<p>Media sharing protocols as &xep0385; don't forbid concurrent file uploads, so it may be the case that a client is uploading multiple files of different types to the same user or groupchat at the same time. This could result in different file types being affected at the same time. However, a client MUST NOT send multiple &lt;uploading/&gt; or &lt;creating/&gt; elements and it MUST NOT send a combination of those elements. In this case the client SHOULD send the state of the upload with the lowest file size.</p>
<p>Media sharing protocols as &xep0385; don't forbid concurrent file uploads, so it may be the case that a client is uploading multiple files of different types to the same user or groupchat at the same time. This could result in different file types being affected at the same time.
In this case clients SHOULD follow these rules:</p>
<ul>
<li>Multiple &lt;uploading/&gt; or &lt;creating/&gt; elements or a combination of these MUST NOT be sent.</li>
<li>&lt;creating/&gt; notifications SHOULD be preferred to &lt;uploading/&gt; notifications.</li>
<li>If there are multiple running file uploads, a notification for the approximately next finishing upload SHOULD be sent.</li>
</ul>
</section2>
<section2 topic='Client State Indication related rules' anchor='rules-csi'>
<p>Servers supporting &xep0352; SHOULD discard messages containing only a file sharing notification as long as a client is inactive.</p>
</section2>
<section2 topic='Usage in groupchats' anchor='rules-muc-mix'>
<p>File sharing notifications MAY be used in groupchats as defined in &xep0045; or &xep0369; just as in normal chats.</p>
</section2>
</section1>
<section1 topic='Implementation Notes' anchor='impl'>
@ -160,4 +177,7 @@
<section1 topic='XML Schema' anchor='schema'>
<p>tbd</p>
</section1>
<section1 topic='Acknowledgements' anchor='ack'>
<p>Thanks to Jonas Wielicki for his helpful feedback and input.</p>
</section1>
</xep>