diff options
author | Erik Johnston <erik@matrix.org> | 2016-04-05 11:13:24 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-04-05 11:13:24 +0100 |
commit | df727f212606b771b1410c8e322fb8a99d159de4 (patch) | |
tree | 771a74464dda92d206316d613770b302e43c1e35 /synapse/storage/roommember.py | |
parent | Docs and indents (diff) | |
download | synapse-df727f212606b771b1410c8e322fb8a99d159de4.tar.xz |
Fix stuck invites
If rejecting a remote invite fails with an error response don't fail the entire request; instead mark the invite as locally rejected. This fixes the bug where users can get stuck invites which they can neither accept nor reject.
Diffstat (limited to 'synapse/storage/roommember.py')
-rw-r--r-- | synapse/storage/roommember.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/synapse/storage/roommember.py b/synapse/storage/roommember.py index 36456a75fc..66e7a40e3c 100644 --- a/synapse/storage/roommember.py +++ b/synapse/storage/roommember.py @@ -102,6 +102,25 @@ class RoomMemberStore(SQLBaseStore): event.state_key, )) + @defer.inlineCallbacks + def locally_reject_invite(self, user_id, room_id): + sql = ( + "UPDATE local_invites SET stream_id = ?, locally_rejected = ? WHERE" + " room_id = ? AND invitee = ? AND locally_rejected is NULL" + " AND replaced_by is NULL" + ) + + def f(txn, stream_ordering): + txn.execute(sql, ( + stream_ordering, + True, + room_id, + user_id, + )) + + with self._stream_id_gen.get_next() as stream_ordering: + yield self.runInteraction("locally_reject_invite", f, stream_ordering) + def get_room_member(self, user_id, room_id): """Retrieve the current state of a room member. |