mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Transfer upgraded rooms on groups
This commit is contained in:
parent
cc6243b4c0
commit
0287d033ee
1
changelog.d/6235.bugfix
Normal file
1
changelog.d/6235.bugfix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Remove a room from a server's public rooms list on room upgrade.
|
@ -514,6 +514,15 @@ class RoomMemberHandler(object):
|
|||||||
if old_room and old_room["is_public"]:
|
if old_room and old_room["is_public"]:
|
||||||
yield self.store.set_room_is_public(old_room_id, False)
|
yield self.store.set_room_is_public(old_room_id, False)
|
||||||
yield self.store.set_room_is_public(room_id, True)
|
yield self.store.set_room_is_public(room_id, True)
|
||||||
|
|
||||||
|
# Check if any groups we own contain the predecessor room
|
||||||
|
local_group_ids = yield self.store.get_local_groups_for_room(old_room_id)
|
||||||
|
for group_id in local_group_ids:
|
||||||
|
# Add new the new room to those groups
|
||||||
|
yield self.store.add_room_to_group(group_id, room_id, old_room["is_public"])
|
||||||
|
|
||||||
|
# Remove the old room from those groups
|
||||||
|
yield self.store.remove_room_from_group(group_id, old_room_id)
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def copy_user_state_on_room_upgrade(self, old_room_id, new_room_id, user_ids):
|
def copy_user_state_on_room_upgrade(self, old_room_id, new_room_id, user_ids):
|
||||||
|
@ -552,6 +552,21 @@ class GroupServerStore(SQLBaseStore):
|
|||||||
keyvalues={"group_id": group_id, "role_id": role_id, "user_id": user_id},
|
keyvalues={"group_id": group_id, "role_id": role_id, "user_id": user_id},
|
||||||
desc="remove_user_from_summary",
|
desc="remove_user_from_summary",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def get_local_groups_for_room(self, room_id):
|
||||||
|
"""Get all of the local group that contain a given room
|
||||||
|
Args:
|
||||||
|
room_id (str): The ID of a room
|
||||||
|
Returns:
|
||||||
|
Deferred[list[str]]: A twisted.Deferred containing a list of group ids
|
||||||
|
containing this room
|
||||||
|
"""
|
||||||
|
return self._simple_select_onecol(
|
||||||
|
table="group_rooms",
|
||||||
|
keyvalues={"room_id": room_id},
|
||||||
|
retcol="group_id",
|
||||||
|
desc="get_local_groups_for_room",
|
||||||
|
)
|
||||||
|
|
||||||
def get_users_for_summary_by_role(self, group_id, include_private=False):
|
def get_users_for_summary_by_role(self, group_id, include_private=False):
|
||||||
"""Get the users and roles that should be included in a summary request
|
"""Get the users and roles that should be included in a summary request
|
||||||
|
Loading…
Reference in New Issue
Block a user