Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Don't alter directory entries for local users when setting a per-room nickname #11002

Merged
merged 6 commits into from
Oct 7, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/11002.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix a long-standing bug where local users' per-room nicknames/avatars were visible to anyone who could see you in the user_directory.
12 changes: 8 additions & 4 deletions synapse/handlers/user_directory.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,14 @@ async def _handle_deltas(self, deltas: List[Dict[str, Any]]) -> None:
) or await self.store.should_include_local_user_in_dir(state_key)
if include_in_dir:
if change is MatchChange.no_change:
# Handle any profile changes
await self._handle_profile_change(
state_key, room_id, prev_event_id, event_id
)
# Handle any profile changes for remote users.
# (For local users we are not forced to scan membership
# events; instead the rest of the application calls
# `_handle_local_profile_change`.)
DMRobertson marked this conversation as resolved.
Show resolved Hide resolved
if not self.is_mine_id(state_key):
DMRobertson marked this conversation as resolved.
Show resolved Hide resolved
await self._handle_profile_change(
state_key, room_id, prev_event_id, event_id
)
continue

if change is MatchChange.now_true: # The user joined
Expand Down
34 changes: 34 additions & 0 deletions tests/handlers/test_user_directory.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,40 @@ def test_process_join_after_server_leaves_room(self) -> None:
public3 = self.get_success(self.user_dir_helper.get_users_in_public_rooms())
self.assertEqual(set(public3), {(alice, room2), (bob, room2)})

def test_per_room_profile_doesnt_alter_directory_entry(self) -> None:
alice = self.register_user("alice", "pass")
alice_token = self.login(alice, "pass")
bob = self.register_user("bob", "pass")

# Alice should have a user directory entry created at registration.
users = self.get_success(self.user_dir_helper.get_profiles_in_user_directory())
self.assertEqual(
users[alice], ProfileInfo(display_name="alice", avatar_url=None)
)

# Alice makes a room for herself.
room = self.helper.create_room_as(alice, is_public=True, tok=alice_token)

# Alice sets a nickname unique to that room.
self.helper.send_state(
room,
"m.room.member",
{
"displayname": "Freddy Mercury",
"membership": "join",
},
alice_token,
state_key=alice,
)

# Alice's display name remains the same in the user directory.
search_result = self.get_success(self.handler.search_users(bob, alice, 10))
self.assertEqual(
search_result["results"],
[{"display_name": "alice", "avatar_url": None, "user_id": alice}],
0,
)

def test_private_room(self) -> None:
"""
A user can be searched for only by people that are either in a public
Expand Down