diff options
author | David Baker <dbkr@users.noreply.github.com> | 2017-11-02 10:55:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-02 10:55:17 +0000 |
commit | b19d9e2174063906ac89895026e7ca13d3eb5a24 (patch) | |
tree | 9a69b3d44661eb718d6b680780f3683da3527120 /synapse/storage | |
parent | Merge pull request #2623 from matrix-org/rav/callbacks_for_auth_providers (diff) | |
parent | Notify auth providers on logout (diff) | |
download | synapse-b19d9e2174063906ac89895026e7ca13d3eb5a24.tar.xz |
Merge pull request #2624 from matrix-org/rav/password_provider_notify_logout
Notify auth providers on logout
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/registration.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/synapse/storage/registration.py b/synapse/storage/registration.py index 65ddefda92..9c4f61da76 100644 --- a/synapse/storage/registration.py +++ b/synapse/storage/registration.py @@ -255,7 +255,8 @@ class RegistrationStore(background_updates.BackgroundUpdateStore): If None, tokens associated with any device (or no device) will be deleted Returns: - defer.Deferred: + defer.Deferred[list[str, str|None]]: a list of the deleted tokens + and device IDs """ def f(txn): keyvalues = { @@ -272,14 +273,14 @@ class RegistrationStore(background_updates.BackgroundUpdateStore): values.append(except_token_id) txn.execute( - "SELECT token FROM access_tokens WHERE %s" % where_clause, + "SELECT token, device_id FROM access_tokens WHERE %s" % where_clause, values ) - rows = self.cursor_to_dict(txn) + tokens_and_devices = [(r[0], r[1]) for r in txn] - for row in rows: + for token, _ in tokens_and_devices: self._invalidate_cache_and_stream( - txn, self.get_user_by_access_token, (row["token"],) + txn, self.get_user_by_access_token, (token,) ) txn.execute( @@ -287,6 +288,8 @@ class RegistrationStore(background_updates.BackgroundUpdateStore): values ) + return tokens_and_devices + yield self.runInteraction( "user_delete_access_tokens", f, ) |