Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
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/10762.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix a bug where reactivated users would be missing from the user directory.
7 changes: 4 additions & 3 deletions synapse/handlers/deactivate_account.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,13 +255,14 @@ async def activate_account(self, user_id: str) -> None:
Args:
user_id: ID of user to be re-activated
"""
# Add the user to the directory, if necessary.
user = UserID.from_string(user_id)
profile = await self.store.get_profileinfo(user.localpart)
await self.user_directory_handler.handle_local_profile_change(user_id, profile)

# Ensure the user is not marked as erased.
await self.store.mark_user_not_erased(user_id)

# Mark the user as active.
await self.store.set_user_deactivated_status(user_id, False)

Comment thread
DMRobertson marked this conversation as resolved.
# Add the user to the directory, if necessary.
Comment thread
DMRobertson marked this conversation as resolved.
Outdated
profile = await self.store.get_profileinfo(user.localpart)
await self.user_directory_handler.handle_local_profile_change(user_id, profile)
47 changes: 47 additions & 0 deletions tests/handlers/test_user_directory.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from synapse.api.room_versions import RoomVersion, RoomVersions
from synapse.rest.client import login, room, user_directory
from synapse.storage.roommember import ProfileInfo
from synapse.types import create_requester

from tests import unittest
from tests.unittest import override_config
Expand Down Expand Up @@ -131,6 +132,52 @@ def test_handle_user_deactivated_regular_user(self):
self.get_success(self.handler.handle_local_user_deactivated(r_user_id))
self.store.remove_from_user_dir.called_once_with(r_user_id)

def test_reactivation_makes_regular_user_searchable(self):
user = self.register_user("regular", "pass")
password_hash = self.get_success(
self.store.db_pool.simple_select_one_onecol(
"users",
{"name": user},
"password_hash",
)
)
user_token = self.login(user, "pass")
admin_user = self.register_user("admin", "pass", admin=True)

# Ensure the regular user is publicly visible and searchable.
self.helper.create_room_as(user, is_public=True, tok=user_token)
s = self.get_success(self.handler.search_users(admin_user, user, 10))
self.assertEqual(len(s["results"]), 1)
self.assertEqual(s["results"][0]["user_id"], user)

# Deactivate the user and check they're not searchable.
deactivate_handler = self.hs._deactivate_account_handler
self.get_success(
deactivate_handler.deactivate_account(
user, erase_data=False, requester=create_requester(admin_user)
)
)
s = self.get_success(self.handler.search_users(admin_user, user, 10))
self.assertEqual(s["results"], [])

# Reactivate the user
self.get_success(deactivate_handler.activate_account(user))
# Hackily reset password by restoring the old pw hash.
Comment thread
DMRobertson marked this conversation as resolved.
self.get_success(
self.store.db_pool.simple_update_one(
"users",
{"name": user},
{"password_hash": password_hash},
)
)
user_token = self.login(user, "pass")
self.helper.create_room_as(user, is_public=True, tok=user_token)

# Check they're searchable.
s = self.get_success(self.handler.search_users(admin_user, user, 10))
self.assertEqual(len(s["results"]), 1)
self.assertEqual(s["results"][0]["user_id"], user)

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