This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show erasure status when listing users in the Admin API (#14205)
* Show erasure status when listing users in the Admin API * Use USING when joining erased_users * Add changelog entry * Revert "Use USING when joining erased_users" This reverts commit 30bd2bf. * Make the erased check work on postgres * Add a testcase for showing erased user status * Appease the style linter * Explicitly convert `erased` to bool to make SQLite consistent with Postgres This also adds us an easy way in to fix the other accidentally integered columns. * Move erasure status test to UsersListTestCase * Include user erased status when fetching user info via the admin API * Document the erase status in user_admin_api * Appease the linter and mypy * Signpost comments in tests Co-authored-by: Tadeusz Sośnierz <[email protected]> Co-authored-by: David Robertson <[email protected]>
- Loading branch information
1 parent
fab495a
commit 1433b5d
Showing
5 changed files
with
51 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Show erasure status when listing users in the Admin API. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ | |
from synapse.rest.client import devices, login, logout, profile, register, room, sync | ||
from synapse.rest.media.v1.filepath import MediaFilePaths | ||
from synapse.server import HomeServer | ||
from synapse.types import JsonDict, UserID | ||
from synapse.types import JsonDict, UserID, create_requester | ||
from synapse.util import Clock | ||
|
||
from tests import unittest | ||
|
@@ -924,6 +924,36 @@ def test_filter_out_approved(self) -> None: | |
self.assertEqual(1, len(non_admin_user_ids), non_admin_user_ids) | ||
self.assertEqual(not_approved_user, non_admin_user_ids[0]) | ||
|
||
def test_erasure_status(self) -> None: | ||
# Create a new user. | ||
user_id = self.register_user("eraseme", "eraseme") | ||
|
||
# They should appear in the list users API, marked as not erased. | ||
channel = self.make_request( | ||
"GET", | ||
self.url + "?deactivated=true", | ||
access_token=self.admin_user_tok, | ||
) | ||
users = {user["name"]: user for user in channel.json_body["users"]} | ||
self.assertIs(users[user_id]["erased"], False) | ||
|
||
# Deactivate that user, requesting erasure. | ||
deactivate_account_handler = self.hs.get_deactivate_account_handler() | ||
self.get_success( | ||
deactivate_account_handler.deactivate_account( | ||
user_id, erase_data=True, requester=create_requester(user_id) | ||
) | ||
) | ||
|
||
# Repeat the list users query. They should now be marked as erased. | ||
channel = self.make_request( | ||
"GET", | ||
self.url + "?deactivated=true", | ||
access_token=self.admin_user_tok, | ||
) | ||
users = {user["name"]: user for user in channel.json_body["users"]} | ||
self.assertIs(users[user_id]["erased"], True) | ||
|
||
def _order_test( | ||
self, | ||
expected_user_list: List[str], | ||
|
@@ -1195,6 +1225,7 @@ def test_deactivate_user_erase_true(self) -> None: | |
self.assertEqual("[email protected]", channel.json_body["threepids"][0]["address"]) | ||
self.assertEqual("mxc://servername/mediaid", channel.json_body["avatar_url"]) | ||
self.assertEqual("User1", channel.json_body["displayname"]) | ||
self.assertFalse(channel.json_body["erased"]) | ||
|
||
# Deactivate and erase user | ||
channel = self.make_request( | ||
|
@@ -1219,6 +1250,7 @@ def test_deactivate_user_erase_true(self) -> None: | |
self.assertEqual(0, len(channel.json_body["threepids"])) | ||
self.assertIsNone(channel.json_body["avatar_url"]) | ||
self.assertIsNone(channel.json_body["displayname"]) | ||
self.assertTrue(channel.json_body["erased"]) | ||
|
||
self._is_erased("@user:test", True) | ||
|
||
|
@@ -2757,6 +2789,7 @@ def _check_fields(self, content: JsonDict) -> None: | |
self.assertIn("avatar_url", content) | ||
self.assertIn("admin", content) | ||
self.assertIn("deactivated", content) | ||
self.assertIn("erased", content) | ||
self.assertIn("shadow_banned", content) | ||
self.assertIn("creation_ts", content) | ||
self.assertIn("appservice_id", content) | ||
|