diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-23 13:58:02 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-23 13:58:02 +0000 |
commit | db215b7e0007a207b8775d78c6693153e16f2731 (patch) | |
tree | f62c3f26b8de39624b01620f958273d1e05db605 /synapse/federation/federation_client.py | |
parent | Initial stab at implementing a batched get_missing_pdus request (diff) | |
download | synapse-db215b7e0007a207b8775d78c6693153e16f2731.tar.xz |
Implement and use new batched get missing pdu
Diffstat (limited to 'synapse/federation/federation_client.py')
-rw-r--r-- | synapse/federation/federation_client.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/synapse/federation/federation_client.py b/synapse/federation/federation_client.py index cd3c962d50..ca89a0787c 100644 --- a/synapse/federation/federation_client.py +++ b/synapse/federation/federation_client.py @@ -439,6 +439,25 @@ class FederationClient(FederationBase): defer.returnValue(ret) + @defer.inlineCallbacks + def get_missing_events(self, destination, room_id, earliest_events, + latest_events, limit, min_depth): + content = yield self.transport_layer.get_missing_events( + destination, room_id, earliest_events, latest_events, limit, + min_depth, + ) + + events = [ + self.event_from_pdu_json(e) + for e in content.get("events", []) + ] + + signed_events = yield self._check_sigs_and_hash_and_fetch( + destination, events, outlier=True + ) + + defer.returnValue(signed_events) + def event_from_pdu_json(self, pdu_json, outlier=False): event = FrozenEvent( pdu_json |