2020-05-17 17:56:40 +00:00
|
|
|
use crate::{utils, Error, Result};
|
2020-06-05 16:19:26 +00:00
|
|
|
use ruma::{
|
2020-07-28 12:02:29 +00:00
|
|
|
api::client::error::ErrorKind,
|
2020-07-26 13:41:28 +00:00
|
|
|
events::{AnyEvent as EduEvent, EventType},
|
|
|
|
Raw, RoomId, UserId,
|
2020-06-05 16:19:26 +00:00
|
|
|
};
|
2020-07-29 18:28:40 +00:00
|
|
|
use serde::{de::DeserializeOwned, Serialize};
|
2020-07-26 20:33:20 +00:00
|
|
|
use sled::IVec;
|
2020-05-17 17:56:40 +00:00
|
|
|
use std::{collections::HashMap, convert::TryFrom};
|
2020-05-03 15:25:31 +00:00
|
|
|
|
2020-11-09 11:21:04 +00:00
|
|
|
#[derive(Clone)]
|
2020-05-03 15:25:31 +00:00
|
|
|
pub struct AccountData {
|
|
|
|
pub(super) roomuserdataid_accountdata: sled::Tree, // RoomUserDataId = Room + User + Count + Type
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AccountData {
|
|
|
|
/// Places one event in the account data of the user and removes the previous entry.
|
2020-07-26 20:33:20 +00:00
|
|
|
pub fn update<T: Serialize>(
|
2020-05-03 15:25:31 +00:00
|
|
|
&self,
|
|
|
|
room_id: Option<&RoomId>,
|
|
|
|
user_id: &UserId,
|
2020-07-26 20:33:20 +00:00
|
|
|
event_type: EventType,
|
2020-07-28 12:02:29 +00:00
|
|
|
data: &T,
|
2020-05-03 15:25:31 +00:00
|
|
|
globals: &super::globals::Globals,
|
|
|
|
) -> Result<()> {
|
|
|
|
let mut prefix = room_id
|
|
|
|
.map(|r| r.to_string())
|
|
|
|
.unwrap_or_default()
|
|
|
|
.as_bytes()
|
|
|
|
.to_vec();
|
|
|
|
prefix.push(0xff);
|
2020-07-26 20:33:20 +00:00
|
|
|
prefix.extend_from_slice(&user_id.to_string().as_bytes());
|
2020-05-03 15:25:31 +00:00
|
|
|
prefix.push(0xff);
|
|
|
|
|
|
|
|
// Remove old entry
|
2020-07-26 20:33:20 +00:00
|
|
|
if let Some(previous) = self.find_event(room_id, user_id, &event_type) {
|
|
|
|
let (old_key, _) = previous?;
|
|
|
|
self.roomuserdataid_accountdata.remove(old_key)?;
|
2020-05-03 15:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut key = prefix;
|
|
|
|
key.extend_from_slice(&globals.next_count()?.to_be_bytes());
|
|
|
|
key.push(0xff);
|
2020-07-26 20:33:20 +00:00
|
|
|
key.extend_from_slice(event_type.to_string().as_bytes());
|
2020-05-03 15:25:31 +00:00
|
|
|
|
2020-07-28 12:02:29 +00:00
|
|
|
let json = serde_json::to_value(data).expect("all types here can be serialized"); // TODO: maybe add error handling
|
|
|
|
if json.get("type").is_none() || json.get("content").is_none() {
|
|
|
|
return Err(Error::BadRequest(
|
|
|
|
ErrorKind::InvalidParam,
|
|
|
|
"Account data doesn't have all required fields.",
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
self.roomuserdataid_accountdata
|
|
|
|
.insert(key, &*json.to_string())?;
|
2020-05-03 15:25:31 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Searches the account data for a specific kind.
|
2020-07-26 20:33:20 +00:00
|
|
|
pub fn get<T: DeserializeOwned>(
|
2020-05-03 15:25:31 +00:00
|
|
|
&self,
|
|
|
|
room_id: Option<&RoomId>,
|
|
|
|
user_id: &UserId,
|
2020-07-26 20:33:20 +00:00
|
|
|
kind: EventType,
|
|
|
|
) -> Result<Option<T>> {
|
|
|
|
self.find_event(room_id, user_id, &kind)
|
|
|
|
.map(|r| {
|
|
|
|
let (_, v) = r?;
|
2020-07-28 12:02:29 +00:00
|
|
|
serde_json::from_slice(&v).map_err(|_| Error::bad_database("could not deserialize"))
|
2020-07-26 20:33:20 +00:00
|
|
|
})
|
|
|
|
.transpose()
|
2020-05-03 15:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns all changes to the account data that happened after `since`.
|
|
|
|
pub fn changes_since(
|
|
|
|
&self,
|
|
|
|
room_id: Option<&RoomId>,
|
|
|
|
user_id: &UserId,
|
|
|
|
since: u64,
|
2020-07-26 13:41:28 +00:00
|
|
|
) -> Result<HashMap<EventType, Raw<EduEvent>>> {
|
2020-05-03 15:25:31 +00:00
|
|
|
let mut userdata = HashMap::new();
|
|
|
|
|
|
|
|
let mut prefix = room_id
|
|
|
|
.map(|r| r.to_string())
|
|
|
|
.unwrap_or_default()
|
|
|
|
.as_bytes()
|
|
|
|
.to_vec();
|
|
|
|
prefix.push(0xff);
|
|
|
|
prefix.extend_from_slice(&user_id.to_string().as_bytes());
|
|
|
|
prefix.push(0xff);
|
|
|
|
|
|
|
|
// Skip the data that's exactly at since, because we sent that last time
|
|
|
|
let mut first_possible = prefix.clone();
|
|
|
|
first_possible.extend_from_slice(&(since + 1).to_be_bytes());
|
|
|
|
|
2020-05-17 17:56:40 +00:00
|
|
|
for r in self
|
2020-05-03 15:25:31 +00:00
|
|
|
.roomuserdataid_accountdata
|
|
|
|
.range(&*first_possible..)
|
|
|
|
.filter_map(|r| r.ok())
|
|
|
|
.take_while(move |(k, _)| k.starts_with(&prefix))
|
2020-05-17 17:56:40 +00:00
|
|
|
.map(|(k, v)| {
|
|
|
|
Ok::<_, Error>((
|
2020-06-09 13:13:17 +00:00
|
|
|
EventType::try_from(
|
2020-06-11 08:03:08 +00:00
|
|
|
utils::string_from_bytes(k.rsplit(|&b| b == 0xff).next().ok_or_else(
|
|
|
|
|| Error::bad_database("RoomUserData ID in db is invalid."),
|
|
|
|
)?)
|
|
|
|
.map_err(|_| Error::bad_database("RoomUserData ID in db is invalid."))?,
|
2020-06-09 13:13:17 +00:00
|
|
|
)
|
2020-06-11 08:03:08 +00:00
|
|
|
.map_err(|_| Error::bad_database("RoomUserData ID in db is invalid."))?,
|
2020-07-26 13:41:28 +00:00
|
|
|
serde_json::from_slice::<Raw<EduEvent>>(&v).map_err(|_| {
|
2020-06-11 08:03:08 +00:00
|
|
|
Error::bad_database("Database contains invalid account data.")
|
2020-06-09 13:13:17 +00:00
|
|
|
})?,
|
2020-05-17 17:56:40 +00:00
|
|
|
))
|
|
|
|
})
|
2020-05-03 15:25:31 +00:00
|
|
|
{
|
2020-06-09 13:13:17 +00:00
|
|
|
let (kind, data) = r?;
|
2020-05-17 19:28:36 +00:00
|
|
|
userdata.insert(kind, data);
|
2020-05-03 15:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(userdata)
|
|
|
|
}
|
|
|
|
|
2020-07-26 20:33:20 +00:00
|
|
|
fn find_event(
|
2020-05-03 15:25:31 +00:00
|
|
|
&self,
|
|
|
|
room_id: Option<&RoomId>,
|
|
|
|
user_id: &UserId,
|
2020-07-26 20:33:20 +00:00
|
|
|
kind: &EventType,
|
|
|
|
) -> Option<Result<(IVec, IVec)>> {
|
|
|
|
let mut prefix = room_id
|
|
|
|
.map(|r| r.to_string())
|
|
|
|
.unwrap_or_default()
|
|
|
|
.as_bytes()
|
|
|
|
.to_vec();
|
|
|
|
prefix.push(0xff);
|
|
|
|
prefix.extend_from_slice(&user_id.to_string().as_bytes());
|
|
|
|
prefix.push(0xff);
|
|
|
|
let kind = kind.clone();
|
|
|
|
|
|
|
|
self.roomuserdataid_accountdata
|
|
|
|
.scan_prefix(prefix)
|
|
|
|
.rev()
|
|
|
|
.find(move |r| {
|
|
|
|
r.as_ref()
|
|
|
|
.map(|(k, _)| {
|
|
|
|
k.rsplit(|&b| b == 0xff)
|
|
|
|
.next()
|
|
|
|
.map(|current_event_type| {
|
|
|
|
current_event_type == kind.to_string().as_bytes()
|
|
|
|
})
|
|
|
|
.unwrap_or(false)
|
|
|
|
})
|
|
|
|
.unwrap_or(false)
|
|
|
|
})
|
|
|
|
.map(|r| Ok(r?))
|
2020-05-03 15:25:31 +00:00
|
|
|
}
|
|
|
|
}
|