Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
dc720217
Commit
dc720217
authored
9 years ago
by
Mark Haines
Browse files
Options
Downloads
Patches
Plain Diff
Add a flag to initial sync to indicate we want rooms that the user has left
parent
49ebd472
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/handlers/message.py
+8
-5
8 additions, 5 deletions
synapse/handlers/message.py
synapse/rest/client/v1/initial_sync.py
+3
-1
3 additions, 1 deletion
synapse/rest/client/v1/initial_sync.py
with
11 additions
and
6 deletions
synapse/handlers/message.py
+
8
−
5
View file @
dc720217
...
@@ -324,7 +324,8 @@ class MessageHandler(BaseHandler):
...
@@ -324,7 +324,8 @@ class MessageHandler(BaseHandler):
)
)
@defer.inlineCallbacks
@defer.inlineCallbacks
def
snapshot_all_rooms
(
self
,
user_id
=
None
,
pagin_config
=
None
,
as_client_event
=
True
):
def
snapshot_all_rooms
(
self
,
user_id
=
None
,
pagin_config
=
None
,
as_client_event
=
True
,
include_archived
=
False
):
"""
Retrieve a snapshot of all rooms the user is invited or has joined.
"""
Retrieve a snapshot of all rooms the user is invited or has joined.
This snapshot may include messages for all rooms where the user is
This snapshot may include messages for all rooms where the user is
...
@@ -335,17 +336,19 @@ class MessageHandler(BaseHandler):
...
@@ -335,17 +336,19 @@ class MessageHandler(BaseHandler):
pagin_config (synapse.api.streams.PaginationConfig): The pagination
pagin_config (synapse.api.streams.PaginationConfig): The pagination
config used to determine how many messages *PER ROOM* to return.
config used to determine how many messages *PER ROOM* to return.
as_client_event (bool): True to get events in client-server format.
as_client_event (bool): True to get events in client-server format.
include_archived (bool): True to get rooms that the user has left
Returns:
Returns:
A list of dicts with
"
room_id
"
and
"
membership
"
keys for all rooms
A list of dicts with
"
room_id
"
and
"
membership
"
keys for all rooms
the user is currently invited or joined in on. Rooms where the user
the user is currently invited or joined in on. Rooms where the user
is joined on, may return a
"
messages
"
key with messages, depending
is joined on, may return a
"
messages
"
key with messages, depending
on the specified PaginationConfig.
on the specified PaginationConfig.
"""
"""
memberships
=
[
Membership
.
INVITE
,
Membership
.
JOIN
]
if
include_archived
:
memberships
.
append
(
Membership
.
LEAVE
)
room_list
=
yield
self
.
store
.
get_rooms_for_user_where_membership_is
(
room_list
=
yield
self
.
store
.
get_rooms_for_user_where_membership_is
(
user_id
=
user_id
,
user_id
=
user_id
,
membership_list
=
memberships
membership_list
=
[
Membership
.
INVITE
,
Membership
.
JOIN
,
Membership
.
LEAVE
]
)
)
user
=
UserID
.
from_string
(
user_id
)
user
=
UserID
.
from_string
(
user_id
)
...
...
This diff is collapsed.
Click to expand it.
synapse/rest/client/v1/initial_sync.py
+
3
−
1
View file @
dc720217
...
@@ -29,10 +29,12 @@ class InitialSyncRestServlet(ClientV1RestServlet):
...
@@ -29,10 +29,12 @@ class InitialSyncRestServlet(ClientV1RestServlet):
as_client_event
=
"
raw
"
not
in
request
.
args
as_client_event
=
"
raw
"
not
in
request
.
args
pagination_config
=
PaginationConfig
.
from_request
(
request
)
pagination_config
=
PaginationConfig
.
from_request
(
request
)
handler
=
self
.
handlers
.
message_handler
handler
=
self
.
handlers
.
message_handler
include_archived
=
request
.
args
.
get
(
"
archived
"
,
None
)
==
"
1
"
content
=
yield
handler
.
snapshot_all_rooms
(
content
=
yield
handler
.
snapshot_all_rooms
(
user_id
=
user
.
to_string
(),
user_id
=
user
.
to_string
(),
pagin_config
=
pagination_config
,
pagin_config
=
pagination_config
,
as_client_event
=
as_client_event
as_client_event
=
as_client_event
,
include_archived
=
include_archived
,
)
)
defer
.
returnValue
((
200
,
content
))
defer
.
returnValue
((
200
,
content
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment