XEP-0502: MUC Activity Indicator

Abstract
This specification provides querying entities an approximate indication of the level of activity in a given XEP-0045 Multi-User Chat room.
Author
Jonas Schäfer
Copyright
© 2024 – 2024 XMPP Standards Foundation. SEE LEGAL NOTICES.
Status

Experimental

WARNING: This Standards-Track document is Experimental. Publication as an XMPP Extension Protocol does not imply approval of this proposal by the XMPP Standards Foundation. Implementation of the protocol described herein is encouraged in exploratory implementations, but production systems are advised to carefully consider whether it is appropriate to deploy implementations of this protocol before it advances to a status of Draft.
Type
Standards Track
Version
0.1.0 (2024-12-23)
Document Lifecycle
  1. Experimental
  2. Proposed
  3. Stable
  4. Final

1. Introduction

Currently, the only activity metric available to entities considering interacting with a Multi-User Chat (XEP-0045) [1] chat is the number of occupants which is published in the Service Discovery (XEP-0030) [2] response.

However, the number of occupants alone is not a great metric for usefulness of a chat. On the one end of the spectrum there may be highly active, but small, groups of experts on a specific topic who are happy to help. On the other end of the spectrum there may be huge chats consisting mostly of lurkers.

This specification introduces a new field in the disco#info data which gives an indication of the rate at which messages are sent in a given group chat.

2. Requirements

3. Use Cases

3.1 Retrieving the message activity level

To request the current level of message activity, an entity sends a standard Service Discovery (XEP-0030) [2] information request to a MUC's address:

Example 1. Entity Queries Chat Room for Information
<iq from='hag66@shakespeare.lit/pda'
    id='lx09df27'
    to='coven@chat.shakespeare.lit'
    type='get'>
  <query xmlns='http://jabber.org/protocol/disco#info'/>
</iq>

Services implementing this specification MUST return the {urn:xmpp:muc-activity}message-activity field, if:

The field MUST contain an approximation of the number of messages sent per hour in this room as floating point value. For example approximation approaches, see the Implementation Notes below.

Example 2. Service Returns Disco Info Result for Room
<iq from='coven@chat.shakespeare.lit'
    id='lx09df27'
    to='hag66@shakespeare.lit/pda'
    type='result'>
  <query xmlns='http://jabber.org/protocol/disco#info'>
    <!-- ... -->
    <x xmlns='jabber:x:data' type='result'>
      <field var='FORM_TYPE' type='hidden'>
        <value>http://jabber.org/protocol/muc#roominfo</value>
      </field>
      <!-- ... -->
      <field var='{urn:xmpp:muc-activity}message-activity'
             label='Messages per hour'>
        <value>23.42</value>
      </field>
    </x>
  </query>
</iq>

In particular, services MUST omit the field entirely if the above preconditions are not met. Services MUST NOT put placeholder values in the field.

4. Business Rules

5. Implementation Notes

The obvious "correct" implemetation to provide the message rate would be to, internally, query the number of messages sent in the room since its inception and divide that by the number of hours since its inception. Such an implementation is likely to be expensive, in particular for large, high-traffic rooms.

In order to cater for that, the Business Rules allow for some significant leeway in how implementations approximate the number of messages per hour.

For implementations where fetching the number of messages in a certain time frame is too expensive, the following simplified approach is outlined: For each MUC, allocate a shift register of 25 counters. Whenever an eligible message is broadcast through the MUC, increase the first counter. Every hour, shift the counters onward (so that the first counter becomes the second and so on) and reset the first counter to zero. Whenever the message rate is requested (via disco#info or otherwise), sum the counters two through 25 and divide the sum by 24.

That way, only constant storage per MUC and constant CPU time per message and request is required. As a trade-off, this introduces a latency of one hour for updating the counter.

6. Accessibility Considerations

This specification does not introduce new user interaction concepts.

7. Internationalization Considerations

Services MAY translate the label attribute of the field according to the language indicated in the requester's IQ stanza.

8. Security Considerations

Services MUST choose a sufficiently cheap algorithm to provide the message activity indicator. Otherwise, they are open to trivial denial-of-service attacks by high-rate disco#info requests.

9. Privacy Considerations

Services MUST NOT publish message activity indicators for MUCs which are not publicly listed (muc_public feature flag) or where users would need some kind of specific authorization to join (such as a password or the member affiliation).

10. IANA Considerations

No IANA interactions required.

11. XMPP Registrar Considerations

The form field should be registered, eventually.


Appendices

Appendix A: Document Information

Series
XEP
Number
0502
Publisher
XMPP Standards Foundation
Status
Experimental
Type
Standards Track
Version
0.1.0
Last Updated
2024-12-23
Approving Body
XMPP Council
Dependencies
XEP-0030, XEP-0045, XEP-0128
Supersedes
None
Superseded By
None
Short Name
muc-activity
Source Control
HTML

This document in other formats: XML  PDF

Appendix B: Author Information

Jonas Schäfer
Email
jonas@wielicki.name
JabberID
jonas@wielicki.name

Copyright

This XMPP Extension Protocol is copyright © 1999 – 2024 by the XMPP Standards Foundation (XSF).

Permissions

Permission is hereby granted, free of charge, to any person obtaining a copy of this specification (the "Specification"), to make use of the Specification without restriction, including without limitation the rights to implement the Specification in a software program, deploy the Specification in a network service, and copy, modify, merge, publish, translate, distribute, sublicense, or sell copies of the Specification, and to permit persons to whom the Specification is furnished to do so, subject to the condition that the foregoing copyright notice and this permission notice shall be included in all copies or substantial portions of the Specification. Unless separate permission is granted, modified works that are redistributed shall not contain misleading information regarding the authors, title, number, or publisher of the Specification, and shall not claim endorsement of the modified works by the authors, any organization or project to which the authors belong, or the XMPP Standards Foundation.

Disclaimer of Warranty

## NOTE WELL: This Specification is provided on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. ##

Limitation of Liability

In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall the XMPP Standards Foundation or any author of this Specification be liable for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising from, out of, or in connection with the Specification or the implementation, deployment, or other use of the Specification (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if the XMPP Standards Foundation or such author has been advised of the possibility of such damages.

IPR Conformance

This XMPP Extension Protocol has been contributed in full conformance with the XSF's Intellectual Property Rights Policy (a copy of which can be found at <https://xmpp.org/about/xsf/ipr-policy> or obtained by writing to XMPP Standards Foundation, P.O. Box 787, Parker, CO 80134 USA).

Visual Presentation

The HTML representation (you are looking at) is maintained by the XSF. It is based on the YAML CSS Framework, which is licensed under the terms of the CC-BY-SA 2.0 license.

Appendix D: Relation to XMPP

The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core (RFC 6120) and XMPP IM (RFC 6121) 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.

Appendix E: Discussion Venue

The primary venue for discussion of XMPP Extension Protocols is the <standards@xmpp.org> discussion list.

Discussion on other xmpp.org discussion lists might also be appropriate; see <https://xmpp.org/community/> for a complete list.

Errata can be sent to <editor@xmpp.org>.

Appendix F: Requirements Conformance

The following requirements 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".

Appendix G: Notes

1. XEP-0045: Multi-User Chat <https://xmpp.org/extensions/xep-0045.html>.

2. XEP-0030: Service Discovery <https://xmpp.org/extensions/xep-0030.html>.

3. XEP-0308: Last Message Correction <https://xmpp.org/extensions/xep-0308.html>.

Appendix H: Revision History

Note: Older versions of this specification might be available at https://xmpp.org/extensions/attic/

  1. Version 0.1.0 (2024-12-23)

    Promoted to Experimental

    XEP Editor: dg
  2. Version 0.0.1 (2024-11-29)

    Initial submission.

    jsc

Appendix I: Bib(La)TeX Entry

@report{schäfer2024muc-activity,
  title = {MUC Activity Indicator},
  author = {Schäfer, Jonas},
  type = {XEP},
  number = {0502},
  version = {0.1.0},
  institution = {XMPP Standards Foundation},
  url = {https://xmpp.org/extensions/xep-0502.html},
  date = {2024-11-29/2024-12-23},
}

END