Difference between revisions of "XEP-Remarks/XEP-0045: Multi-User Chat"

From XMPP WIKI
Jump to navigation Jump to search
(Add Category)
Line 26: Line 26:


(this mechanism doesn't cover MUCs which don't reflect the message ID and do autopastebin. Screw them!)
(this mechanism doesn't cover MUCs which don't reflect the message ID and do autopastebin. Screw them!)
= Mediated MUC Invitations =
The default mechanism to invite somebody into a MUC is [https://xmpp.org/extensions/xep-0045.html#invite-mediated §7.8.2 Mediated Invitation], where the MUC service will invite your friend on your behalf.
* Some MUC services will not invite a JID that is already a MUC member, thus breaking the invitation UX.
* With Mediated Invites, a malicious MUC can send an invite in the name of a user's contact, tricking the user's client into auto-joining.
* [https://xmpp.org/extensions/xep-0249.html XEP-0249: Direct MUC Invitations] is a potential solution to those issues.


= Am I still there? =
= Am I still there? =
Line 34: Line 43:
Sending a "silent" message or presence update to the MUC will lead to O(N²) complexity (if every client does so), killing all our batteries.
Sending a "silent" message or presence update to the MUC will lead to O(N²) complexity (if every client does so), killing all our batteries.


The "most viable" workaround is:
This is solved by [https://xmpp.org/extensions/xep-0410.html XEP-0410: MUC Self-Ping]
 
# set a (short, like maybe 15mins, or periodic) timeout after the last stanza received from a MUC
# on timeout: send a ping IQ to your own participant JID
# (maybe) respond to the reflected ping IQ, depending whether you are the "most active" MSN and on the phase of the moon
# if the ping IQ is responded to with iq-result, service-unavailable (official RFC response for a feature not implemented) or  feature-not-implemented (incorrect but found in the wild response for feature not implemented): phew, we are still joined, we are done
# if the ping IQ is responded to with anything else: we lost the connection to the MUC
#* send presence-unavailable
#* rejoin
# if the ping IQ times out, one of your clients probably lost the connection to the MUC, just to be sure we need to:
#* send presence-unavailable
#* rejoin


= MUC double join =
= MUC double join =

Revision as of 15:47, 10 October 2019

Stable Message IDs

As of 2018, server implementations are required to keep the message ID when reflecting client messages. This can be determined by the presence of the 'http://jabber.org/protocol/muc#stable_id' feature on the MUC JID or MUC domain.

Ambiguities

http://mail.jabber.org/pipermail/standards/2014-April/028805.html

Introduces 'ofrom' Extended Stanza Addressing (XEP-33) type

in http://xmpp.org/extensions/xep-0045.html#enter-history, which is not found in XEP-33 (nor XEP-33s schema).

Matching Your Reflected Message

So you sent a message to a MUC and want to immediately display it as "on the way" (good UX). Some time later (usually within some seconds) you receive a message from the MUC which might or might not be your sent message.

Find out if a relfection is your actual message, in six easy steps! The message is your reflection if:

  1. you recently sent a message to the MUC, AND
  2. the received message is from your participant JID, AND
    1. the XEP-0359 origin ID matches (probably not a transport) OR
    2. the message ID matches (a nice MUC, but not required by the XEP) OR
    3. the message body matches (not conclusive, some MUCs auto-pastebin) OR
    4. the received message is the first line of the sent message (transports like IRC split multi-line messages into one-liners) OR
    5. the sent message is very long (>400 bytes) and the received message is a prefix of it (IRC transpors split very long one-liners too!)

(this mechanism doesn't cover MUCs which don't reflect the message ID and do autopastebin. Screw them!)

Mediated MUC Invitations

The default mechanism to invite somebody into a MUC is §7.8.2 Mediated Invitation, where the MUC service will invite your friend on your behalf.

  • Some MUC services will not invite a JID that is already a MUC member, thus breaking the invitation UX.
  • With Mediated Invites, a malicious MUC can send an invite in the name of a user's contact, tricking the user's client into auto-joining.
  • XEP-0249: Direct MUC Invitations is a potential solution to those issues.


Am I still there?

Current MUC / server implementations do not send offline-presence packets to participants on service restart. Therefore, a client will think it is still joined to a MUC indefinitely, only seeing silence.

There is no portable/reliable mechanism to check if the client is still joined, and no clean way to re-sync the state if it is not joined. Sending a "silent" message or presence update to the MUC will lead to O(N²) complexity (if every client does so), killing all our batteries.

This is solved by XEP-0410: MUC Self-Ping

MUC double join

This has been fixed in revision 1.29 of XEP-0045:

It's not specified what should happen if an entity sends an initial presence when it's already joined. Server implementations should behave towards the joining entity like it successfully joined. That means, if a presence update containing an <x> element is received from a participant, the server should send back the full presence list, the requested amount of history and the room subject.

MUC PM messages are not distinguishable from other MUC messages

http://mail.jabber.org/pipermail/standards/2015-May/029819.html