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

Commit

Permalink
lazyload aware /messages (#3589)
Browse files Browse the repository at this point in the history
  • Loading branch information
ara4n authored and richvdh committed Aug 16, 2018
1 parent 3f543dc commit 762a758
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.d/3589.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add lazy-loading support to /messages as per MSC1227
35 changes: 34 additions & 1 deletion synapse/handlers/pagination.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from twisted.internet import defer
from twisted.python.failure import Failure

from synapse.api.constants import Membership
from synapse.api.constants import EventTypes, Membership
from synapse.api.errors import SynapseError
from synapse.events.utils import serialize_event
from synapse.types import RoomStreamToken
Expand Down Expand Up @@ -251,6 +251,33 @@ def get_messages(self, requester, room_id=None, pagin_config=None,
is_peeking=(member_event_id is None),
)

state = None
if event_filter and event_filter.lazy_load_members():
# TODO: remove redundant members

types = [
(EventTypes.Member, state_key)
for state_key in set(
event.sender # FIXME: we also care about invite targets etc.
for event in events
)
]

state_ids = yield self.store.get_state_ids_for_event(
events[0].event_id, types=types,
)

if state_ids:
state = yield self.store.get_events(list(state_ids.values()))

if state:
state = yield filter_events_for_client(
self.store,
user_id,
state.values(),
is_peeking=(member_event_id is None),
)

time_now = self.clock.time_msec()

chunk = {
Expand All @@ -262,4 +289,10 @@ def get_messages(self, requester, room_id=None, pagin_config=None,
"end": next_token.to_string(),
}

if state:
chunk["state"] = [
serialize_event(e, time_now, as_client_event)
for e in state
]

defer.returnValue(chunk)
13 changes: 12 additions & 1 deletion synapse/rest/client/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,22 @@ class VersionsRestServlet(RestServlet):
def on_GET(self, request):
return (200, {
"versions": [
# XXX: at some point we need to decide whether we need to include
# the previous version numbers, given we've defined r0.3.0 to be
# backwards compatible with r0.2.0. But need to check how
# conscientious we've been in compatibility, and decide whether the
# middle number is the major revision when at 0.X.Y (as opposed to
# X.Y.Z). And we need to decide whether it's fair to make clients
# parse the version string to figure out what's going on.
"r0.0.1",
"r0.1.0",
"r0.2.0",
"r0.3.0",
]
],
# as per MSC1497:
"unstable_features": {
"m.lazy_load_members": True,
}
})


Expand Down

0 comments on commit 762a758

Please sign in to comment.