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

Commit

Permalink
Merge pull request #903 from matrix-org/erikj/deactivate_user
Browse files Browse the repository at this point in the history
Feature: Add deactivate account admin API
  • Loading branch information
erikjohnston authored Jun 30, 2016
2 parents aac546c + f328d95 commit ab71589
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
26 changes: 26 additions & 0 deletions synapse/rest/client/v1/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,32 @@ def on_POST(self, request):
defer.returnValue((200, ret))


class DeactivateAccountRestServlet(ClientV1RestServlet):
PATTERNS = client_path_patterns("/admin/deactivate/(?P<target_user_id>[^/]*)")

def __init__(self, hs):
self.store = hs.get_datastore()
super(DeactivateAccountRestServlet, self).__init__(hs)

@defer.inlineCallbacks
def on_POST(self, request, target_user_id):
UserID.from_string(target_user_id)
requester = yield self.auth.get_user_by_req(request)
is_admin = yield self.auth.is_server_admin(requester.user)

if not is_admin:
raise AuthError(403, "You are not a server admin")

# FIXME: Theoretically there is a race here wherein user resets password
# using threepid.
yield self.store.user_delete_access_tokens(target_user_id)
yield self.store.user_delete_threepids(target_user_id)
yield self.store.user_set_password_hash(target_user_id, None)

defer.returnValue((200, {}))


def register_servlets(hs, http_server):
WhoisRestServlet(hs).register(http_server)
PurgeMediaCacheRestServlet(hs).register(http_server)
DeactivateAccountRestServlet(hs).register(http_server)
5 changes: 5 additions & 0 deletions synapse/storage/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -807,6 +807,11 @@ def _simple_delete_one_txn(txn, table, keyvalues):
if txn.rowcount > 1:
raise StoreError(500, "more than one row matched")

def _simple_delete(self, table, keyvalues, desc):
return self.runInteraction(
desc, self._simple_delete_txn, table, keyvalues
)

@staticmethod
def _simple_delete_txn(txn, table, keyvalues):
sql = "DELETE FROM %s WHERE %s" % (
Expand Down
9 changes: 9 additions & 0 deletions synapse/storage/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,15 @@ def get_user_id_by_threepid(self, medium, address):
defer.returnValue(ret['user_id'])
defer.returnValue(None)

def user_delete_threepids(self, user_id):
return self._simple_delete(
"user_threepids",
keyvalues={
"user_id": user_id,
},
desc="user_delete_threepids",
)

@defer.inlineCallbacks
def count_all_users(self):
"""Counts all users registered on the homeserver."""
Expand Down

0 comments on commit ab71589

Please sign in to comment.