Sliding sync subscriptions, e2ee, to_device messages
This commit is contained in:
parent
caddc656fb
commit
d220641d64
2 changed files with 361 additions and 22 deletions
|
@ -463,7 +463,7 @@ async fn sync_helper(
|
||||||
}
|
}
|
||||||
|
|
||||||
for user_id in left_encrypted_users {
|
for user_id in left_encrypted_users {
|
||||||
let still_share_encrypted_room = services()
|
let dont_share_encrypted_room = services()
|
||||||
.rooms
|
.rooms
|
||||||
.user
|
.user
|
||||||
.get_shared_rooms(vec![sender_user.clone(), user_id.clone()])?
|
.get_shared_rooms(vec![sender_user.clone(), user_id.clone()])?
|
||||||
|
@ -481,7 +481,7 @@ async fn sync_helper(
|
||||||
.all(|encrypted| !encrypted);
|
.all(|encrypted| !encrypted);
|
||||||
// If the user doesn't share an encrypted room with the target anymore, we need to tell
|
// If the user doesn't share an encrypted room with the target anymore, we need to tell
|
||||||
// them
|
// them
|
||||||
if still_share_encrypted_room {
|
if dont_share_encrypted_room {
|
||||||
device_list_left.insert(user_id);
|
device_list_left.insert(user_id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1197,6 +1197,7 @@ pub async fn sync_events_v4_route(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Get sticky parameters from cache
|
||||||
let known_rooms = services().users.update_sync_request_with_cache(
|
let known_rooms = services().users.update_sync_request_with_cache(
|
||||||
sender_user.clone(),
|
sender_user.clone(),
|
||||||
sender_device.clone(),
|
sender_device.clone(),
|
||||||
|
@ -1210,6 +1211,195 @@ pub async fn sync_events_v4_route(
|
||||||
.filter_map(|r| r.ok())
|
.filter_map(|r| r.ok())
|
||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
if body.extensions.to_device.enabled.unwrap_or(false) {
|
||||||
|
services()
|
||||||
|
.users
|
||||||
|
.remove_to_device_events(&sender_user, &sender_device, since)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut left_encrypted_users = HashSet::new(); // Users that have left any encrypted rooms the sender was in
|
||||||
|
let mut device_list_changes = HashSet::new();
|
||||||
|
let mut device_list_left = HashSet::new();
|
||||||
|
|
||||||
|
if body.extensions.e2ee.enabled.unwrap_or(false) {
|
||||||
|
// Look for device list updates of this account
|
||||||
|
device_list_changes.extend(
|
||||||
|
services()
|
||||||
|
.users
|
||||||
|
.keys_changed(sender_user.as_ref(), since, None)
|
||||||
|
.filter_map(|r| r.ok()),
|
||||||
|
);
|
||||||
|
|
||||||
|
for room_id in &all_joined_rooms {
|
||||||
|
let current_shortstatehash =
|
||||||
|
if let Some(s) = services().rooms.state.get_room_shortstatehash(&room_id)? {
|
||||||
|
s
|
||||||
|
} else {
|
||||||
|
error!("Room {} has no state", room_id);
|
||||||
|
continue;
|
||||||
|
};
|
||||||
|
|
||||||
|
let since_shortstatehash = services()
|
||||||
|
.rooms
|
||||||
|
.user
|
||||||
|
.get_token_shortstatehash(&room_id, since)?;
|
||||||
|
|
||||||
|
let since_sender_member: Option<RoomMemberEventContent> = since_shortstatehash
|
||||||
|
.and_then(|shortstatehash| {
|
||||||
|
services()
|
||||||
|
.rooms
|
||||||
|
.state_accessor
|
||||||
|
.state_get(
|
||||||
|
shortstatehash,
|
||||||
|
&StateEventType::RoomMember,
|
||||||
|
sender_user.as_str(),
|
||||||
|
)
|
||||||
|
.transpose()
|
||||||
|
})
|
||||||
|
.transpose()?
|
||||||
|
.and_then(|pdu| {
|
||||||
|
serde_json::from_str(pdu.content.get())
|
||||||
|
.map_err(|_| Error::bad_database("Invalid PDU in database."))
|
||||||
|
.ok()
|
||||||
|
});
|
||||||
|
|
||||||
|
let encrypted_room = services()
|
||||||
|
.rooms
|
||||||
|
.state_accessor
|
||||||
|
.state_get(current_shortstatehash, &StateEventType::RoomEncryption, "")?
|
||||||
|
.is_some();
|
||||||
|
|
||||||
|
if let Some(since_shortstatehash) = since_shortstatehash {
|
||||||
|
// Skip if there are only timeline changes
|
||||||
|
if since_shortstatehash == current_shortstatehash {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
let since_encryption = services().rooms.state_accessor.state_get(
|
||||||
|
since_shortstatehash,
|
||||||
|
&StateEventType::RoomEncryption,
|
||||||
|
"",
|
||||||
|
)?;
|
||||||
|
|
||||||
|
let joined_since_last_sync = since_sender_member
|
||||||
|
.map_or(true, |member| member.membership != MembershipState::Join);
|
||||||
|
|
||||||
|
let new_encrypted_room = encrypted_room && since_encryption.is_none();
|
||||||
|
if encrypted_room {
|
||||||
|
let current_state_ids = services()
|
||||||
|
.rooms
|
||||||
|
.state_accessor
|
||||||
|
.state_full_ids(current_shortstatehash)
|
||||||
|
.await?;
|
||||||
|
let since_state_ids = services()
|
||||||
|
.rooms
|
||||||
|
.state_accessor
|
||||||
|
.state_full_ids(since_shortstatehash)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
for (key, id) in current_state_ids {
|
||||||
|
if since_state_ids.get(&key) != Some(&id) {
|
||||||
|
let pdu = match services().rooms.timeline.get_pdu(&id)? {
|
||||||
|
Some(pdu) => pdu,
|
||||||
|
None => {
|
||||||
|
error!("Pdu in state not found: {}", id);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
if pdu.kind == TimelineEventType::RoomMember {
|
||||||
|
if let Some(state_key) = &pdu.state_key {
|
||||||
|
let user_id =
|
||||||
|
UserId::parse(state_key.clone()).map_err(|_| {
|
||||||
|
Error::bad_database("Invalid UserId in member PDU.")
|
||||||
|
})?;
|
||||||
|
|
||||||
|
if user_id == sender_user {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
let new_membership = serde_json::from_str::<
|
||||||
|
RoomMemberEventContent,
|
||||||
|
>(
|
||||||
|
pdu.content.get()
|
||||||
|
)
|
||||||
|
.map_err(|_| Error::bad_database("Invalid PDU in database."))?
|
||||||
|
.membership;
|
||||||
|
|
||||||
|
match new_membership {
|
||||||
|
MembershipState::Join => {
|
||||||
|
// A new user joined an encrypted room
|
||||||
|
if !share_encrypted_room(
|
||||||
|
&sender_user,
|
||||||
|
&user_id,
|
||||||
|
&room_id,
|
||||||
|
)? {
|
||||||
|
device_list_changes.insert(user_id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
MembershipState::Leave => {
|
||||||
|
// Write down users that have left encrypted rooms we are in
|
||||||
|
left_encrypted_users.insert(user_id);
|
||||||
|
}
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if joined_since_last_sync || new_encrypted_room {
|
||||||
|
// If the user is in a new encrypted room, give them all joined users
|
||||||
|
device_list_changes.extend(
|
||||||
|
services()
|
||||||
|
.rooms
|
||||||
|
.state_cache
|
||||||
|
.room_members(&room_id)
|
||||||
|
.flatten()
|
||||||
|
.filter(|user_id| {
|
||||||
|
// Don't send key updates from the sender to the sender
|
||||||
|
&sender_user != user_id
|
||||||
|
})
|
||||||
|
.filter(|user_id| {
|
||||||
|
// Only send keys if the sender doesn't share an encrypted room with the target already
|
||||||
|
!share_encrypted_room(&sender_user, user_id, &room_id)
|
||||||
|
.unwrap_or(false)
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Look for device list updates in this room
|
||||||
|
device_list_changes.extend(
|
||||||
|
services()
|
||||||
|
.users
|
||||||
|
.keys_changed(room_id.as_ref(), since, None)
|
||||||
|
.filter_map(|r| r.ok()),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
for user_id in left_encrypted_users {
|
||||||
|
let dont_share_encrypted_room = services()
|
||||||
|
.rooms
|
||||||
|
.user
|
||||||
|
.get_shared_rooms(vec![sender_user.clone(), user_id.clone()])?
|
||||||
|
.filter_map(|r| r.ok())
|
||||||
|
.filter_map(|other_room_id| {
|
||||||
|
Some(
|
||||||
|
services()
|
||||||
|
.rooms
|
||||||
|
.state_accessor
|
||||||
|
.room_state_get(&other_room_id, &StateEventType::RoomEncryption, "")
|
||||||
|
.ok()?
|
||||||
|
.is_some(),
|
||||||
|
)
|
||||||
|
})
|
||||||
|
.all(|encrypted| !encrypted);
|
||||||
|
// If the user doesn't share an encrypted room with the target anymore, we need to tell
|
||||||
|
// them
|
||||||
|
if dont_share_encrypted_room {
|
||||||
|
device_list_left.insert(user_id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
let mut lists = BTreeMap::new();
|
let mut lists = BTreeMap::new();
|
||||||
let mut todo_rooms = BTreeMap::new(); // and required state
|
let mut todo_rooms = BTreeMap::new(); // and required state
|
||||||
|
|
||||||
|
@ -1249,7 +1439,7 @@ pub async fn sync_events_v4_route(
|
||||||
todo_room
|
todo_room
|
||||||
.0
|
.0
|
||||||
.extend(list.room_details.required_state.iter().cloned());
|
.extend(list.room_details.required_state.iter().cloned());
|
||||||
todo_room.1 = todo_room.1.min(limit);
|
todo_room.1 = todo_room.1.max(limit);
|
||||||
if known_rooms.get(&list_id).and_then(|k| k.get(room_id)) != Some(&true)
|
if known_rooms.get(&list_id).and_then(|k| k.get(room_id)) != Some(&true)
|
||||||
{
|
{
|
||||||
todo_room.2 = false;
|
todo_room.2 = false;
|
||||||
|
@ -1279,18 +1469,51 @@ pub async fn sync_events_v4_route(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (room_id, room) in body.room_subscriptions {
|
let mut known_subscription_rooms = BTreeMap::new();
|
||||||
|
for (room_id, room) in dbg!(&body.room_subscriptions) {
|
||||||
let todo_room = todo_rooms
|
let todo_room = todo_rooms
|
||||||
.entry(room_id.clone())
|
.entry(room_id.clone())
|
||||||
.or_insert((BTreeSet::new(), 0, true));
|
.or_insert((BTreeSet::new(), 0, true));
|
||||||
let limit = room.timeline_limit.map_or(10, u64::from).min(100);
|
let limit = room.timeline_limit.map_or(10, u64::from).min(100);
|
||||||
todo_room.0.extend(room.required_state.iter().cloned());
|
todo_room.0.extend(room.required_state.iter().cloned());
|
||||||
todo_room.1 = todo_room.1.min(limit);
|
todo_room.1 = todo_room.1.max(limit);
|
||||||
todo_room.2 = false;
|
if known_rooms
|
||||||
|
.get("subscriptions")
|
||||||
|
.and_then(|k| k.get(room_id))
|
||||||
|
!= Some(&true)
|
||||||
|
{
|
||||||
|
todo_room.2 = false;
|
||||||
|
}
|
||||||
|
known_subscription_rooms.insert(room_id.clone(), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
for r in body.unsubscribe_rooms {
|
||||||
|
known_subscription_rooms.remove(&r);
|
||||||
|
body.room_subscriptions.remove(&r);
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(conn_id) = &body.conn_id {
|
||||||
|
services().users.update_sync_known_rooms(
|
||||||
|
sender_user.clone(),
|
||||||
|
sender_device.clone(),
|
||||||
|
conn_id.clone(),
|
||||||
|
"subscriptions".to_owned(),
|
||||||
|
known_subscription_rooms,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(conn_id) = &body.conn_id {
|
||||||
|
services().users.update_sync_subscriptions(
|
||||||
|
sender_user.clone(),
|
||||||
|
sender_device.clone(),
|
||||||
|
conn_id.clone(),
|
||||||
|
body.room_subscriptions,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut rooms = BTreeMap::new();
|
let mut rooms = BTreeMap::new();
|
||||||
for (room_id, (required_state_request, timeline_limit, known)) in &todo_rooms {
|
for (room_id, (required_state_request, timeline_limit, known)) in &todo_rooms {
|
||||||
|
// TODO: per-room sync tokens
|
||||||
let (timeline_pdus, limited) =
|
let (timeline_pdus, limited) =
|
||||||
load_timeline(&sender_user, &room_id, sincecount, *timeline_limit)?;
|
load_timeline(&sender_user, &room_id, sincecount, *timeline_limit)?;
|
||||||
|
|
||||||
|
@ -1372,12 +1595,26 @@ pub async fn sync_events_v4_route(
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
initial: Some(*known),
|
initial: Some(!known),
|
||||||
is_dm: None,
|
is_dm: None,
|
||||||
invite_state: None,
|
invite_state: None,
|
||||||
unread_notifications: UnreadNotificationsCount {
|
unread_notifications: UnreadNotificationsCount {
|
||||||
highlight_count: None,
|
highlight_count: Some(
|
||||||
notification_count: None,
|
services()
|
||||||
|
.rooms
|
||||||
|
.user
|
||||||
|
.highlight_count(&sender_user, &room_id)?
|
||||||
|
.try_into()
|
||||||
|
.expect("notification count can't go that high"),
|
||||||
|
),
|
||||||
|
notification_count: Some(
|
||||||
|
services()
|
||||||
|
.rooms
|
||||||
|
.user
|
||||||
|
.notification_count(&sender_user, &room_id)?
|
||||||
|
.try_into()
|
||||||
|
.expect("notification count can't go that high"),
|
||||||
|
),
|
||||||
},
|
},
|
||||||
timeline: room_events,
|
timeline: room_events,
|
||||||
required_state,
|
required_state,
|
||||||
|
@ -1399,7 +1636,7 @@ pub async fn sync_events_v4_route(
|
||||||
.unwrap_or(0) as u32)
|
.unwrap_or(0) as u32)
|
||||||
.into(),
|
.into(),
|
||||||
),
|
),
|
||||||
num_live: None,
|
num_live: None, // Count events in timeline greater than global sync counter
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1424,17 +1661,44 @@ pub async fn sync_events_v4_route(
|
||||||
lists,
|
lists,
|
||||||
rooms,
|
rooms,
|
||||||
extensions: sync_events::v4::Extensions {
|
extensions: sync_events::v4::Extensions {
|
||||||
to_device: None,
|
to_device: if body.extensions.to_device.enabled.unwrap_or(false) {
|
||||||
|
Some(sync_events::v4::ToDevice {
|
||||||
|
events: services()
|
||||||
|
.users
|
||||||
|
.get_to_device_events(&sender_user, &sender_device)?,
|
||||||
|
next_batch: next_batch.to_string(),
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
},
|
||||||
e2ee: sync_events::v4::E2EE {
|
e2ee: sync_events::v4::E2EE {
|
||||||
device_lists: DeviceLists {
|
device_lists: DeviceLists {
|
||||||
changed: Vec::new(),
|
changed: device_list_changes.into_iter().collect(),
|
||||||
left: Vec::new(),
|
left: device_list_left.into_iter().collect(),
|
||||||
},
|
},
|
||||||
device_one_time_keys_count: BTreeMap::new(),
|
device_one_time_keys_count: services()
|
||||||
|
.users
|
||||||
|
.count_one_time_keys(&sender_user, &sender_device)?,
|
||||||
|
// Fallback keys are not yet supported
|
||||||
device_unused_fallback_key_types: None,
|
device_unused_fallback_key_types: None,
|
||||||
},
|
},
|
||||||
account_data: sync_events::v4::AccountData {
|
account_data: sync_events::v4::AccountData {
|
||||||
global: Vec::new(),
|
global: if body.extensions.account_data.enabled.unwrap_or(false) {
|
||||||
|
services()
|
||||||
|
.account_data
|
||||||
|
.changes_since(None, &sender_user, since)?
|
||||||
|
.into_iter()
|
||||||
|
.filter_map(|(_, v)| {
|
||||||
|
serde_json::from_str(v.json().get())
|
||||||
|
.map_err(|_| {
|
||||||
|
Error::bad_database("Invalid account event in database.")
|
||||||
|
})
|
||||||
|
.ok()
|
||||||
|
})
|
||||||
|
.collect()
|
||||||
|
} else {
|
||||||
|
Vec::new()
|
||||||
|
},
|
||||||
rooms: BTreeMap::new(),
|
rooms: BTreeMap::new(),
|
||||||
},
|
},
|
||||||
receipts: sync_events::v4::Receipts {
|
receipts: sync_events::v4::Receipts {
|
||||||
|
|
|
@ -11,7 +11,10 @@ use ruma::{
|
||||||
device::Device,
|
device::Device,
|
||||||
error::ErrorKind,
|
error::ErrorKind,
|
||||||
filter::FilterDefinition,
|
filter::FilterDefinition,
|
||||||
sync::sync_events::{self, v4::SyncRequestList},
|
sync::sync_events::{
|
||||||
|
self,
|
||||||
|
v4::{ExtensionsConfig, SyncRequestList},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
encryption::{CrossSigningKey, DeviceKeys, OneTimeKey},
|
encryption::{CrossSigningKey, DeviceKeys, OneTimeKey},
|
||||||
events::AnyToDeviceEvent,
|
events::AnyToDeviceEvent,
|
||||||
|
@ -24,7 +27,9 @@ use crate::{services, Error, Result};
|
||||||
|
|
||||||
pub struct SlidingSyncCache {
|
pub struct SlidingSyncCache {
|
||||||
lists: BTreeMap<String, SyncRequestList>,
|
lists: BTreeMap<String, SyncRequestList>,
|
||||||
|
subscriptions: BTreeMap<OwnedRoomId, sync_events::v4::RoomSubscription>,
|
||||||
known_rooms: BTreeMap<String, BTreeMap<OwnedRoomId, bool>>,
|
known_rooms: BTreeMap<String, BTreeMap<OwnedRoomId, bool>>,
|
||||||
|
extensions: ExtensionsConfig,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Service {
|
pub struct Service {
|
||||||
|
@ -66,7 +71,9 @@ impl Service {
|
||||||
.or_insert_with(|| {
|
.or_insert_with(|| {
|
||||||
Arc::new(Mutex::new(SlidingSyncCache {
|
Arc::new(Mutex::new(SlidingSyncCache {
|
||||||
lists: BTreeMap::new(),
|
lists: BTreeMap::new(),
|
||||||
|
subscriptions: BTreeMap::new(),
|
||||||
known_rooms: BTreeMap::new(),
|
known_rooms: BTreeMap::new(),
|
||||||
|
extensions: ExtensionsConfig::default(),
|
||||||
}))
|
}))
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
@ -74,12 +81,13 @@ impl Service {
|
||||||
drop(cache);
|
drop(cache);
|
||||||
|
|
||||||
for (list_id, list) in &mut request.lists {
|
for (list_id, list) in &mut request.lists {
|
||||||
if let Some(cached_list) = cached.lists.remove(list_id) {
|
if let Some(cached_list) = cached.lists.get(list_id) {
|
||||||
if list.sort.is_empty() {
|
if list.sort.is_empty() {
|
||||||
list.sort = cached_list.sort;
|
list.sort = cached_list.sort.clone();
|
||||||
};
|
};
|
||||||
if list.room_details.required_state.is_empty() {
|
if list.room_details.required_state.is_empty() {
|
||||||
list.room_details.required_state = cached_list.room_details.required_state;
|
list.room_details.required_state =
|
||||||
|
cached_list.room_details.required_state.clone();
|
||||||
};
|
};
|
||||||
list.room_details.timeline_limit = list
|
list.room_details.timeline_limit = list
|
||||||
.room_details
|
.room_details
|
||||||
|
@ -88,8 +96,8 @@ impl Service {
|
||||||
list.include_old_rooms = list
|
list.include_old_rooms = list
|
||||||
.include_old_rooms
|
.include_old_rooms
|
||||||
.clone()
|
.clone()
|
||||||
.or(cached_list.include_old_rooms);
|
.or(cached_list.include_old_rooms.clone());
|
||||||
match (&mut list.filters, cached_list.filters) {
|
match (&mut list.filters, cached_list.filters.clone()) {
|
||||||
(Some(list_filters), Some(cached_filters)) => {
|
(Some(list_filters), Some(cached_filters)) => {
|
||||||
list_filters.is_dm = list_filters.is_dm.or(cached_filters.is_dm);
|
list_filters.is_dm = list_filters.is_dm.or(cached_filters.is_dm);
|
||||||
if list_filters.spaces.is_empty() {
|
if list_filters.spaces.is_empty() {
|
||||||
|
@ -120,15 +128,80 @@ impl Service {
|
||||||
(_, _) => {}
|
(_, _) => {}
|
||||||
}
|
}
|
||||||
if list.bump_event_types.is_empty() {
|
if list.bump_event_types.is_empty() {
|
||||||
list.bump_event_types = cached_list.bump_event_types;
|
list.bump_event_types = cached_list.bump_event_types.clone();
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
cached.lists.insert(list_id.clone(), list.clone());
|
cached.lists.insert(list_id.clone(), list.clone());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cached
|
||||||
|
.subscriptions
|
||||||
|
.extend(request.room_subscriptions.clone().into_iter());
|
||||||
|
request
|
||||||
|
.room_subscriptions
|
||||||
|
.extend(cached.subscriptions.clone().into_iter());
|
||||||
|
|
||||||
|
request.extensions.e2ee.enabled = request
|
||||||
|
.extensions
|
||||||
|
.e2ee
|
||||||
|
.enabled
|
||||||
|
.or(cached.extensions.e2ee.enabled);
|
||||||
|
|
||||||
|
request.extensions.to_device.enabled = request
|
||||||
|
.extensions
|
||||||
|
.to_device
|
||||||
|
.enabled
|
||||||
|
.or(cached.extensions.to_device.enabled);
|
||||||
|
|
||||||
|
request.extensions.account_data.enabled = request
|
||||||
|
.extensions
|
||||||
|
.account_data
|
||||||
|
.enabled
|
||||||
|
.or(cached.extensions.account_data.enabled);
|
||||||
|
request.extensions.account_data.lists = request
|
||||||
|
.extensions
|
||||||
|
.account_data
|
||||||
|
.lists
|
||||||
|
.clone()
|
||||||
|
.or(cached.extensions.account_data.lists.clone());
|
||||||
|
request.extensions.account_data.rooms = request
|
||||||
|
.extensions
|
||||||
|
.account_data
|
||||||
|
.rooms
|
||||||
|
.clone()
|
||||||
|
.or(cached.extensions.account_data.rooms.clone());
|
||||||
|
|
||||||
|
cached.extensions = request.extensions.clone();
|
||||||
|
|
||||||
cached.known_rooms.clone()
|
cached.known_rooms.clone()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn update_sync_subscriptions(
|
||||||
|
&self,
|
||||||
|
user_id: OwnedUserId,
|
||||||
|
device_id: OwnedDeviceId,
|
||||||
|
conn_id: String,
|
||||||
|
subscriptions: BTreeMap<OwnedRoomId, sync_events::v4::RoomSubscription>,
|
||||||
|
) {
|
||||||
|
let cache = &mut self.connections.lock().unwrap();
|
||||||
|
let cached = Arc::clone(
|
||||||
|
cache
|
||||||
|
.entry((user_id, device_id, conn_id))
|
||||||
|
.or_insert_with(|| {
|
||||||
|
Arc::new(Mutex::new(SlidingSyncCache {
|
||||||
|
lists: BTreeMap::new(),
|
||||||
|
subscriptions: BTreeMap::new(),
|
||||||
|
known_rooms: BTreeMap::new(),
|
||||||
|
extensions: ExtensionsConfig::default(),
|
||||||
|
}))
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
let cached = &mut cached.lock().unwrap();
|
||||||
|
drop(cache);
|
||||||
|
|
||||||
|
cached.subscriptions = subscriptions;
|
||||||
|
}
|
||||||
|
|
||||||
pub fn update_sync_known_rooms(
|
pub fn update_sync_known_rooms(
|
||||||
&self,
|
&self,
|
||||||
user_id: OwnedUserId,
|
user_id: OwnedUserId,
|
||||||
|
@ -144,7 +217,9 @@ impl Service {
|
||||||
.or_insert_with(|| {
|
.or_insert_with(|| {
|
||||||
Arc::new(Mutex::new(SlidingSyncCache {
|
Arc::new(Mutex::new(SlidingSyncCache {
|
||||||
lists: BTreeMap::new(),
|
lists: BTreeMap::new(),
|
||||||
|
subscriptions: BTreeMap::new(),
|
||||||
known_rooms: BTreeMap::new(),
|
known_rooms: BTreeMap::new(),
|
||||||
|
extensions: ExtensionsConfig::default(),
|
||||||
}))
|
}))
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue