|
|
|
|
@ -1,73 +1,21 @@
|
|
|
|
|
use crate::{database::abstraction::Tree, utils, Error, Result}; |
|
|
|
|
use ruma::{ |
|
|
|
|
events::{ |
|
|
|
|
presence::{PresenceEvent, PresenceEventContent}, |
|
|
|
|
receipt::ReceiptEvent, |
|
|
|
|
SyncEphemeralRoomEvent, |
|
|
|
|
}, |
|
|
|
|
presence::PresenceState, |
|
|
|
|
serde::Raw, |
|
|
|
|
signatures::CanonicalJsonObject, |
|
|
|
|
RoomId, UInt, UserId, |
|
|
|
|
}; |
|
|
|
|
use std::{ |
|
|
|
|
collections::{HashMap, HashSet}, |
|
|
|
|
mem, |
|
|
|
|
sync::Arc, |
|
|
|
|
}; |
|
|
|
|
mod data; |
|
|
|
|
pub use data::Data; |
|
|
|
|
|
|
|
|
|
pub struct RoomEdus { |
|
|
|
|
pub(in super::super) readreceiptid_readreceipt: Arc<dyn Tree>, // ReadReceiptId = RoomId + Count + UserId
|
|
|
|
|
pub(in super::super) roomuserid_privateread: Arc<dyn Tree>, // RoomUserId = Room + User, PrivateRead = Count
|
|
|
|
|
pub(in super::super) roomuserid_lastprivatereadupdate: Arc<dyn Tree>, // LastPrivateReadUpdate = Count
|
|
|
|
|
pub(in super::super) typingid_userid: Arc<dyn Tree>, // TypingId = RoomId + TimeoutTime + Count
|
|
|
|
|
pub(in super::super) roomid_lasttypingupdate: Arc<dyn Tree>, // LastRoomTypingUpdate = Count
|
|
|
|
|
pub(in super::super) presenceid_presence: Arc<dyn Tree>, // PresenceId = RoomId + Count + UserId
|
|
|
|
|
pub(in super::super) userid_lastpresenceupdate: Arc<dyn Tree>, // LastPresenceUpdate = Count
|
|
|
|
|
use crate::service::*; |
|
|
|
|
|
|
|
|
|
pub struct Service<D: Data> { |
|
|
|
|
db: D, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
impl RoomEdus { |
|
|
|
|
/// Adds an event which will be saved until a new event replaces it (e.g. read receipt).
|
|
|
|
|
impl Service<_> { |
|
|
|
|
/// Replaces the previous read receipt.
|
|
|
|
|
pub fn readreceipt_update( |
|
|
|
|
&self, |
|
|
|
|
user_id: &UserId, |
|
|
|
|
room_id: &RoomId, |
|
|
|
|
event: ReceiptEvent, |
|
|
|
|
globals: &super::super::globals::Globals, |
|
|
|
|
) -> Result<()> { |
|
|
|
|
let mut prefix = room_id.as_bytes().to_vec(); |
|
|
|
|
prefix.push(0xff); |
|
|
|
|
|
|
|
|
|
let mut last_possible_key = prefix.clone(); |
|
|
|
|
last_possible_key.extend_from_slice(&u64::MAX.to_be_bytes()); |
|
|
|
|
|
|
|
|
|
// Remove old entry
|
|
|
|
|
if let Some((old, _)) = self |
|
|
|
|
.readreceiptid_readreceipt |
|
|
|
|
.iter_from(&last_possible_key, true) |
|
|
|
|
.take_while(|(key, _)| key.starts_with(&prefix)) |
|
|
|
|
.find(|(key, _)| { |
|
|
|
|
key.rsplit(|&b| b == 0xff) |
|
|
|
|
.next() |
|
|
|
|
.expect("rsplit always returns an element") |
|
|
|
|
== user_id.as_bytes() |
|
|
|
|
}) |
|
|
|
|
{ |
|
|
|
|
// This is the old room_latest
|
|
|
|
|
self.readreceiptid_readreceipt.remove(&old)?; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let mut room_latest_id = prefix; |
|
|
|
|
room_latest_id.extend_from_slice(&globals.next_count()?.to_be_bytes()); |
|
|
|
|
room_latest_id.push(0xff); |
|
|
|
|
room_latest_id.extend_from_slice(user_id.as_bytes()); |
|
|
|
|
|
|
|
|
|
self.readreceiptid_readreceipt.insert( |
|
|
|
|
&room_latest_id, |
|
|
|
|
&serde_json::to_vec(&event).expect("EduEvent::to_string always works"), |
|
|
|
|
)?; |
|
|
|
|
|
|
|
|
|
Ok(()) |
|
|
|
|
self.db.readreceipt_update(user_id, room_id, event); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Returns an iterator over the most recent read_receipts in a room that happened after the event with id `since`.
|
|
|
|
|
@ -83,41 +31,7 @@ impl RoomEdus {
|
|
|
|
|
Raw<ruma::events::AnySyncEphemeralRoomEvent>, |
|
|
|
|
)>, |
|
|
|
|
> + 'a { |
|
|
|
|
let mut prefix = room_id.as_bytes().to_vec(); |
|
|
|
|
prefix.push(0xff); |
|
|
|
|
let prefix2 = prefix.clone(); |
|
|
|
|
|
|
|
|
|
let mut first_possible_edu = prefix.clone(); |
|
|
|
|
first_possible_edu.extend_from_slice(&(since + 1).to_be_bytes()); // +1 so we don't send the event at since
|
|
|
|
|
|
|
|
|
|
self.readreceiptid_readreceipt |
|
|
|
|
.iter_from(&first_possible_edu, false) |
|
|
|
|
.take_while(move |(k, _)| k.starts_with(&prefix2)) |
|
|
|
|
.map(move |(k, v)| { |
|
|
|
|
let count = |
|
|
|
|
utils::u64_from_bytes(&k[prefix.len()..prefix.len() + mem::size_of::<u64>()]) |
|
|
|
|
.map_err(|_| Error::bad_database("Invalid readreceiptid count in db."))?; |
|
|
|
|
let user_id = UserId::parse( |
|
|
|
|
utils::string_from_bytes(&k[prefix.len() + mem::size_of::<u64>() + 1..]) |
|
|
|
|
.map_err(|_| { |
|
|
|
|
Error::bad_database("Invalid readreceiptid userid bytes in db.") |
|
|
|
|
})?, |
|
|
|
|
) |
|
|
|
|
.map_err(|_| Error::bad_database("Invalid readreceiptid userid in db."))?; |
|
|
|
|
|
|
|
|
|
let mut json = serde_json::from_slice::<CanonicalJsonObject>(&v).map_err(|_| { |
|
|
|
|
Error::bad_database("Read receipt in roomlatestid_roomlatest is invalid json.") |
|
|
|
|
})?; |
|
|
|
|
json.remove("room_id"); |
|
|
|
|
|
|
|
|
|
Ok(( |
|
|
|
|
user_id, |
|
|
|
|
count, |
|
|
|
|
Raw::from_json( |
|
|
|
|
serde_json::value::to_raw_value(&json).expect("json is valid raw value"), |
|
|
|
|
), |
|
|
|
|
)) |
|
|
|
|
}) |
|
|
|
|
self.db.readreceipts_since(room_id, since) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Sets a private read marker at `count`.
|
|
|
|
|
@ -127,53 +41,19 @@ impl RoomEdus {
|
|
|
|
|
room_id: &RoomId, |
|
|
|
|
user_id: &UserId, |
|
|
|
|
count: u64, |
|
|
|
|
globals: &super::super::globals::Globals, |
|
|
|
|
) -> Result<()> { |
|
|
|
|
let mut key = room_id.as_bytes().to_vec(); |
|
|
|
|
key.push(0xff); |
|
|
|
|
key.extend_from_slice(user_id.as_bytes()); |
|
|
|
|
|
|
|
|
|
self.roomuserid_privateread |
|
|
|
|
.insert(&key, &count.to_be_bytes())?; |
|
|
|
|
|
|
|
|
|
self.roomuserid_lastprivatereadupdate |
|
|
|
|
.insert(&key, &globals.next_count()?.to_be_bytes())?; |
|
|
|
|
|
|
|
|
|
Ok(()) |
|
|
|
|
self.db.private_read_set(room_id, user_id, count) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Returns the private read marker.
|
|
|
|
|
#[tracing::instrument(skip(self))] |
|
|
|
|
pub fn private_read_get(&self, room_id: &RoomId, user_id: &UserId) -> Result<Option<u64>> { |
|
|
|
|
let mut key = room_id.as_bytes().to_vec(); |
|
|
|
|
key.push(0xff); |
|
|
|
|
key.extend_from_slice(user_id.as_bytes()); |
|
|
|
|
|
|
|
|
|
self.roomuserid_privateread |
|
|
|
|
.get(&key)? |
|
|
|
|
.map_or(Ok(None), |v| { |
|
|
|
|
Ok(Some(utils::u64_from_bytes(&v).map_err(|_| { |
|
|
|
|
Error::bad_database("Invalid private read marker bytes") |
|
|
|
|
})?)) |
|
|
|
|
}) |
|
|
|
|
self.db.private_read_get(room_id, user_id) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Returns the count of the last typing update in this room.
|
|
|
|
|
pub fn last_privateread_update(&self, user_id: &UserId, room_id: &RoomId) -> Result<u64> { |
|
|
|
|
let mut key = room_id.as_bytes().to_vec(); |
|
|
|
|
key.push(0xff); |
|
|
|
|
key.extend_from_slice(user_id.as_bytes()); |
|
|
|
|
|
|
|
|
|
Ok(self |
|
|
|
|
.roomuserid_lastprivatereadupdate |
|
|
|
|
.get(&key)? |
|
|
|
|
.map(|bytes| { |
|
|
|
|
utils::u64_from_bytes(&bytes).map_err(|_| { |
|
|
|
|
Error::bad_database("Count in roomuserid_lastprivatereadupdate is invalid.") |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
.transpose()? |
|
|
|
|
.unwrap_or(0)) |
|
|
|
|
self.db.last_privateread_update(user_id, room_id) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Sets a user as typing until the timeout timestamp is reached or roomtyping_remove is
|
|
|
|
|
@ -183,25 +63,8 @@ impl RoomEdus {
|
|
|
|
|
user_id: &UserId, |
|
|
|
|
room_id: &RoomId, |
|
|
|
|
timeout: u64, |
|
|
|
|
globals: &super::super::globals::Globals, |
|
|
|
|
) -> Result<()> { |
|
|
|
|
let mut prefix = room_id.as_bytes().to_vec(); |
|
|
|
|
prefix.push(0xff); |
|
|
|
|
|
|
|
|
|
let count = globals.next_count()?.to_be_bytes(); |
|
|
|
|
|
|
|
|
|
let mut room_typing_id = prefix; |
|
|
|
|
room_typing_id.extend_from_slice(&timeout.to_be_bytes()); |
|
|
|
|
room_typing_id.push(0xff); |
|
|
|
|
room_typing_id.extend_from_slice(&count); |
|
|
|
|
|
|
|
|
|
self.typingid_userid |
|
|
|
|
.insert(&room_typing_id, &*user_id.as_bytes())?; |
|
|
|
|
|
|
|
|
|
self.roomid_lasttypingupdate |
|
|
|
|
.insert(room_id.as_bytes(), &count)?; |
|
|
|
|
|
|
|
|
|
Ok(()) |
|
|
|
|
self.db.typing_add(user_id, room_id, timeout) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Removes a user from typing before the timeout is reached.
|
|
|
|
|
@ -209,33 +72,11 @@ impl RoomEdus {
|
|
|
|
|
&self, |
|
|
|
|
user_id: &UserId, |
|
|
|
|
room_id: &RoomId, |
|
|
|
|
globals: &super::super::globals::Globals, |
|
|
|
|
) -> Result<()> { |
|
|
|
|
let mut prefix = room_id.as_bytes().to_vec(); |
|
|
|
|
prefix.push(0xff); |
|
|
|
|
|
|
|
|
|
let user_id = user_id.to_string(); |
|
|
|
|
|
|
|
|
|
let mut found_outdated = false; |
|
|
|
|
|
|
|
|
|
// Maybe there are multiple ones from calling roomtyping_add multiple times
|
|
|
|
|
for outdated_edu in self |
|
|
|
|
.typingid_userid |
|
|
|
|
.scan_prefix(prefix) |
|
|
|
|
.filter(|(_, v)| &**v == user_id.as_bytes()) |
|
|
|
|
{ |
|
|
|
|
self.typingid_userid.remove(&outdated_edu.0)?; |
|
|
|
|
found_outdated = true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if found_outdated { |
|
|
|
|
self.roomid_lasttypingupdate |
|
|
|
|
.insert(room_id.as_bytes(), &globals.next_count()?.to_be_bytes())?; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Ok(()) |
|
|
|
|
self.db.typing_remove(user_id, room_id) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* TODO: Do this in background thread?
|
|
|
|
|
/// Makes sure that typing events with old timestamps get removed.
|
|
|
|
|
fn typings_maintain( |
|
|
|
|
&self, |
|
|
|
|
@ -279,45 +120,23 @@ impl RoomEdus {
|
|
|
|
|
|
|
|
|
|
Ok(()) |
|
|
|
|
} |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
/// Returns the count of the last typing update in this room.
|
|
|
|
|
#[tracing::instrument(skip(self, globals))] |
|
|
|
|
pub fn last_typing_update( |
|
|
|
|
&self, |
|
|
|
|
room_id: &RoomId, |
|
|
|
|
globals: &super::super::globals::Globals, |
|
|
|
|
) -> Result<u64> { |
|
|
|
|
self.typings_maintain(room_id, globals)?; |
|
|
|
|
|
|
|
|
|
Ok(self |
|
|
|
|
.roomid_lasttypingupdate |
|
|
|
|
.get(room_id.as_bytes())? |
|
|
|
|
.map(|bytes| { |
|
|
|
|
utils::u64_from_bytes(&bytes).map_err(|_| { |
|
|
|
|
Error::bad_database("Count in roomid_lastroomactiveupdate is invalid.") |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
.transpose()? |
|
|
|
|
.unwrap_or(0)) |
|
|
|
|
self.db.last_typing_update(room_id) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Returns a new typing EDU.
|
|
|
|
|
pub fn typings_all( |
|
|
|
|
&self, |
|
|
|
|
room_id: &RoomId, |
|
|
|
|
) -> Result<SyncEphemeralRoomEvent<ruma::events::typing::TypingEventContent>> { |
|
|
|
|
let mut prefix = room_id.as_bytes().to_vec(); |
|
|
|
|
prefix.push(0xff); |
|
|
|
|
|
|
|
|
|
let mut user_ids = HashSet::new(); |
|
|
|
|
|
|
|
|
|
for (_, user_id) in self.typingid_userid.scan_prefix(prefix) { |
|
|
|
|
let user_id = UserId::parse(utils::string_from_bytes(&user_id).map_err(|_| { |
|
|
|
|
Error::bad_database("User ID in typingid_userid is invalid unicode.") |
|
|
|
|
})?) |
|
|
|
|
.map_err(|_| Error::bad_database("User ID in typingid_userid is invalid."))?; |
|
|
|
|
|
|
|
|
|
user_ids.insert(user_id); |
|
|
|
|
} |
|
|
|
|
let user_ids = self.db.typings_all(room_id)?; |
|
|
|
|
|
|
|
|
|
Ok(SyncEphemeralRoomEvent { |
|
|
|
|
content: ruma::events::typing::TypingEventContent { |
|
|
|
|
@ -335,52 +154,13 @@ impl RoomEdus {
|
|
|
|
|
user_id: &UserId, |
|
|
|
|
room_id: &RoomId, |
|
|
|
|
presence: PresenceEvent, |
|
|
|
|
globals: &super::super::globals::Globals, |
|
|
|
|
) -> Result<()> { |
|
|
|
|
// TODO: Remove old entry? Or maybe just wipe completely from time to time?
|
|
|
|
|
|
|
|
|
|
let count = globals.next_count()?.to_be_bytes(); |
|
|
|
|
|
|
|
|
|
let mut presence_id = room_id.as_bytes().to_vec(); |
|
|
|
|
presence_id.push(0xff); |
|
|
|
|
presence_id.extend_from_slice(&count); |
|
|
|
|
presence_id.push(0xff); |
|
|
|
|
presence_id.extend_from_slice(presence.sender.as_bytes()); |
|
|
|
|
|
|
|
|
|
self.presenceid_presence.insert( |
|
|
|
|
&presence_id, |
|
|
|
|
&serde_json::to_vec(&presence).expect("PresenceEvent can be serialized"), |
|
|
|
|
)?; |
|
|
|
|
|
|
|
|
|
self.userid_lastpresenceupdate.insert( |
|
|
|
|
user_id.as_bytes(), |
|
|
|
|
&utils::millis_since_unix_epoch().to_be_bytes(), |
|
|
|
|
)?; |
|
|
|
|
|
|
|
|
|
Ok(()) |
|
|
|
|
self.db.update_presence(user_id, room_id, presence) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Resets the presence timeout, so the user will stay in their current presence state.
|
|
|
|
|
#[tracing::instrument(skip(self))] |
|
|
|
|
pub fn ping_presence(&self, user_id: &UserId) -> Result<()> { |
|
|
|
|
self.userid_lastpresenceupdate.insert( |
|
|
|
|
user_id.as_bytes(), |
|
|
|
|
&utils::millis_since_unix_epoch().to_be_bytes(), |
|
|
|
|
)?; |
|
|
|
|
|
|
|
|
|
Ok(()) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Returns the timestamp of the last presence update of this user in millis since the unix epoch.
|
|
|
|
|
pub fn last_presence_update(&self, user_id: &UserId) -> Result<Option<u64>> { |
|
|
|
|
self.userid_lastpresenceupdate |
|
|
|
|
.get(user_id.as_bytes())? |
|
|
|
|
.map(|bytes| { |
|
|
|
|
utils::u64_from_bytes(&bytes).map_err(|_| { |
|
|
|
|
Error::bad_database("Invalid timestamp in userid_lastpresenceupdate.") |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
.transpose() |
|
|
|
|
self.db.ping_presence(user_id) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
pub fn get_last_presence_event( |
|
|
|
|
@ -388,42 +168,15 @@ impl RoomEdus {
|
|
|
|
|
user_id: &UserId, |
|
|
|
|
room_id: &RoomId, |
|
|
|
|
) -> Result<Option<PresenceEvent>> { |
|
|
|
|
let last_update = match self.last_presence_update(user_id)? { |
|
|
|
|
let last_update = match self.db.last_presence_update(user_id)? { |
|
|
|
|
Some(last) => last, |
|
|
|
|
None => return Ok(None), |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
let mut presence_id = room_id.as_bytes().to_vec(); |
|
|
|
|
presence_id.push(0xff); |
|
|
|
|
presence_id.extend_from_slice(&last_update.to_be_bytes()); |
|
|
|
|
presence_id.push(0xff); |
|
|
|
|
presence_id.extend_from_slice(user_id.as_bytes()); |
|
|
|
|
|
|
|
|
|
self.presenceid_presence |
|
|
|
|
.get(&presence_id)? |
|
|
|
|
.map(|value| { |
|
|
|
|
let mut presence: PresenceEvent = serde_json::from_slice(&value) |
|
|
|
|
.map_err(|_| Error::bad_database("Invalid presence event in db."))?; |
|
|
|
|
let current_timestamp: UInt = utils::millis_since_unix_epoch() |
|
|
|
|
.try_into() |
|
|
|
|
.expect("time is valid"); |
|
|
|
|
|
|
|
|
|
if presence.content.presence == PresenceState::Online { |
|
|
|
|
// Don't set last_active_ago when the user is online
|
|
|
|
|
presence.content.last_active_ago = None; |
|
|
|
|
} else { |
|
|
|
|
// Convert from timestamp to duration
|
|
|
|
|
presence.content.last_active_ago = presence |
|
|
|
|
.content |
|
|
|
|
.last_active_ago |
|
|
|
|
.map(|timestamp| current_timestamp - timestamp); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Ok(presence) |
|
|
|
|
}) |
|
|
|
|
.transpose() |
|
|
|
|
self.db.get_presence_event(room_id, user_id, last_update) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* TODO
|
|
|
|
|
/// Sets all users to offline who have been quiet for too long.
|
|
|
|
|
fn _presence_maintain( |
|
|
|
|
&self, |
|
|
|
|
@ -489,62 +242,15 @@ impl RoomEdus {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Ok(()) |
|
|
|
|
} |
|
|
|
|
}*/ |
|
|
|
|
|
|
|
|
|
/// Returns an iterator over the most recent presence updates that happened after the event with id `since`.
|
|
|
|
|
/// Returns the most recent presence updates that happened after the event with id `since`.
|
|
|
|
|
#[tracing::instrument(skip(self, since, _rooms, _globals))] |
|
|
|
|
pub fn presence_since( |
|
|
|
|
&self, |
|
|
|
|
room_id: &RoomId, |
|
|
|
|
since: u64, |
|
|
|
|
_rooms: &super::Rooms, |
|
|
|
|
_globals: &super::super::globals::Globals, |
|
|
|
|
) -> Result<HashMap<Box<UserId>, PresenceEvent>> { |
|
|
|
|
//self.presence_maintain(rooms, globals)?;
|
|
|
|
|
|
|
|
|
|
let mut prefix = room_id.as_bytes().to_vec(); |
|
|
|
|
prefix.push(0xff); |
|
|
|
|
|
|
|
|
|
let mut first_possible_edu = prefix.clone(); |
|
|
|
|
first_possible_edu.extend_from_slice(&(since + 1).to_be_bytes()); // +1 so we don't send the event at since
|
|
|
|
|
let mut hashmap = HashMap::new(); |
|
|
|
|
|
|
|
|
|
for (key, value) in self |
|
|
|
|
.presenceid_presence |
|
|
|
|
.iter_from(&*first_possible_edu, false) |
|
|
|
|
.take_while(|(key, _)| key.starts_with(&prefix)) |
|
|
|
|
{ |
|
|
|
|
let user_id = UserId::parse( |
|
|
|
|
utils::string_from_bytes( |
|
|
|
|
key.rsplit(|&b| b == 0xff) |
|
|
|
|
.next() |
|
|
|
|
.expect("rsplit always returns an element"), |
|
|
|
|
) |
|
|
|
|
.map_err(|_| Error::bad_database("Invalid UserId bytes in presenceid_presence."))?, |
|
|
|
|
) |
|
|
|
|
.map_err(|_| Error::bad_database("Invalid UserId in presenceid_presence."))?; |
|
|
|
|
|
|
|
|
|
let mut presence: PresenceEvent = serde_json::from_slice(&value) |
|
|
|
|
.map_err(|_| Error::bad_database("Invalid presence event in db."))?; |
|
|
|
|
|
|
|
|
|
let current_timestamp: UInt = utils::millis_since_unix_epoch() |
|
|
|
|
.try_into() |
|
|
|
|
.expect("time is valid"); |
|
|
|
|
|
|
|
|
|
if presence.content.presence == PresenceState::Online { |
|
|
|
|
// Don't set last_active_ago when the user is online
|
|
|
|
|
presence.content.last_active_ago = None; |
|
|
|
|
} else { |
|
|
|
|
// Convert from timestamp to duration
|
|
|
|
|
presence.content.last_active_ago = presence |
|
|
|
|
.content |
|
|
|
|
.last_active_ago |
|
|
|
|
.map(|timestamp| current_timestamp - timestamp); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
hashmap.insert(user_id, presence); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Ok(hashmap) |
|
|
|
|
self.db.presence_since(room_id, since) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|