2.6 KiB
type | weight |
---|---|
module | 310 |
Room Upgrades
From time to time, a room may need to be upgraded to a different room version for a variety for reasons. This module defines a way for rooms to upgrade to a different room version when needed.
Events
{{% event event="m.room.tombstone" %}}
Client behaviour
Clients which understand m.room.tombstone
events and the predecessor
field on m.room.create
events should communicate to the user that the
room was upgraded. One way of accomplishing this would be hiding the old
room from the user's room list and showing banners linking between the
old and new room - ensuring that permalinks work when referencing the
old room. Another approach may be to virtually merge the rooms such that
the old room's timeline seamlessly continues into the new timeline
without the user having to jump between the rooms.
{{% http-api spec="client-server" api="room_upgrades" %}}
Server behaviour
When the client requests to upgrade a known room to a known version, the server:
-
Checks that the user has permission to send
m.room.tombstone
events in the room. -
Creates a replacement room with a
m.room.create
event containing apredecessor
field and the applicableroom_version
. -
Replicates transferable state events to the new room. The exact details for what is transferred is left as an implementation detail, however the recommended state events to transfer are:
m.room.server_acl
m.room.encryption
m.room.name
m.room.avatar
m.room.topic
m.room.guest_access
m.room.history_visibility
m.room.join_rules
m.room.power_levels
Membership events should not be transferred to the new room due to technical limitations of servers not being able to impersonate people from other homeservers. Additionally, servers should not transfer state events which are sensitive to who sent them, such as events outside of the Matrix namespace where clients may rely on the sender to match certain criteria.
-
Moves any local aliases to the new room.
-
Sends a
m.room.tombstone
event to the old room to indicate that it is not intended to be used any further. -
If possible, the power levels in the old room should also be modified to prevent sending of events and inviting new users. For example, setting
events_default
andinvite
to the greater of50
andusers_default + 1
.
When a user joins the new room, the server should automatically transfer/replicate some of the user's personalized settings such as notifications, tags, etc.