2020-06-09 13:13:17 +00:00
|
|
|
use crate::{Error, Result};
|
2020-04-04 09:53:37 +00:00
|
|
|
use js_int::UInt;
|
2020-06-05 16:19:26 +00:00
|
|
|
use ruma::{
|
|
|
|
events::{
|
2020-07-17 20:00:39 +00:00
|
|
|
pdu::EventHash, room::member::MemberEventContent, AnyRoomEvent, AnyStateEvent,
|
2020-07-26 13:41:28 +00:00
|
|
|
AnyStrippedStateEvent, AnySyncRoomEvent, AnySyncStateEvent, EventType, StateEvent,
|
2020-06-05 16:19:26 +00:00
|
|
|
},
|
2020-07-26 13:41:28 +00:00
|
|
|
EventId, Raw, RoomId, ServerName, UserId,
|
2020-04-14 11:54:32 +00:00
|
|
|
};
|
2020-04-04 09:53:37 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-06-01 18:58:49 +00:00
|
|
|
use serde_json::json;
|
2020-08-18 20:26:03 +00:00
|
|
|
use std::{collections::HashMap, convert::TryFrom};
|
2020-04-04 09:53:37 +00:00
|
|
|
|
|
|
|
#[derive(Deserialize, Serialize)]
|
|
|
|
pub struct PduEvent {
|
|
|
|
pub event_id: EventId,
|
|
|
|
pub room_id: RoomId,
|
|
|
|
pub sender: UserId,
|
2020-07-21 18:04:39 +00:00
|
|
|
pub origin: Box<ServerName>,
|
2020-04-04 09:53:37 +00:00
|
|
|
pub origin_server_ts: UInt,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub kind: EventType,
|
|
|
|
pub content: serde_json::Value,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
|
|
pub state_key: Option<String>,
|
|
|
|
pub prev_events: Vec<EventId>,
|
|
|
|
pub depth: UInt,
|
|
|
|
pub auth_events: Vec<EventId>,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
|
|
pub redacts: Option<EventId>,
|
|
|
|
#[serde(default, skip_serializing_if = "serde_json::Map::is_empty")]
|
|
|
|
pub unsigned: serde_json::Map<String, serde_json::Value>,
|
|
|
|
pub hashes: EventHash,
|
|
|
|
pub signatures: HashMap<String, HashMap<String, String>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PduEvent {
|
2020-06-09 13:13:17 +00:00
|
|
|
pub fn redact(&mut self) -> Result<()> {
|
2020-05-26 08:27:51 +00:00
|
|
|
self.unsigned.clear();
|
2020-08-12 13:33:45 +00:00
|
|
|
|
|
|
|
let allowed: &[&str] = match self.kind {
|
|
|
|
EventType::RoomMember => &["membership"],
|
|
|
|
EventType::RoomCreate => &["creator"],
|
|
|
|
EventType::RoomJoinRules => &["join_rule"],
|
|
|
|
EventType::RoomPowerLevels => &[
|
2020-05-26 08:27:51 +00:00
|
|
|
"ban",
|
|
|
|
"events",
|
|
|
|
"events_default",
|
|
|
|
"kick",
|
|
|
|
"redact",
|
|
|
|
"state_default",
|
|
|
|
"users",
|
|
|
|
"users_default",
|
|
|
|
],
|
2020-08-12 13:33:45 +00:00
|
|
|
EventType::RoomHistoryVisibility => &["history_visibility"],
|
|
|
|
_ => &[],
|
2020-05-26 08:27:51 +00:00
|
|
|
};
|
|
|
|
|
2020-06-09 13:13:17 +00:00
|
|
|
let old_content = self
|
|
|
|
.content
|
|
|
|
.as_object_mut()
|
2020-06-11 08:03:08 +00:00
|
|
|
.ok_or_else(|| Error::bad_database("PDU in db has invalid content."))?;
|
2020-06-09 13:13:17 +00:00
|
|
|
|
2020-05-26 08:27:51 +00:00
|
|
|
let mut new_content = serde_json::Map::new();
|
|
|
|
|
|
|
|
for key in allowed {
|
2020-08-12 13:33:45 +00:00
|
|
|
if let Some(value) = old_content.remove(*key) {
|
|
|
|
new_content.insert((*key).to_owned(), value);
|
2020-05-26 08:27:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-01 18:58:49 +00:00
|
|
|
self.unsigned.insert(
|
|
|
|
"redacted_because".to_owned(),
|
|
|
|
json!({"content": {}, "type": "m.room.redaction"}),
|
|
|
|
);
|
|
|
|
|
2020-05-26 08:27:51 +00:00
|
|
|
self.content = new_content.into();
|
2020-06-09 13:13:17 +00:00
|
|
|
|
|
|
|
Ok(())
|
2020-05-26 08:27:51 +00:00
|
|
|
}
|
|
|
|
|
2020-07-26 13:41:28 +00:00
|
|
|
pub fn to_sync_room_event(&self) -> Raw<AnySyncRoomEvent> {
|
2020-07-27 19:53:28 +00:00
|
|
|
let mut json = json!({
|
|
|
|
"content": self.content,
|
|
|
|
"type": self.kind,
|
|
|
|
"event_id": self.event_id,
|
|
|
|
"sender": self.sender,
|
|
|
|
"origin_server_ts": self.origin_server_ts,
|
|
|
|
"unsigned": self.unsigned,
|
|
|
|
});
|
|
|
|
|
|
|
|
if let Some(state_key) = &self.state_key {
|
|
|
|
json["state_key"] = json!(state_key);
|
|
|
|
}
|
|
|
|
if let Some(redacts) = &self.redacts {
|
|
|
|
json["redacts"] = json!(redacts);
|
|
|
|
}
|
|
|
|
|
|
|
|
serde_json::from_value(json).expect("Raw::from_value always works")
|
2020-06-22 11:26:09 +00:00
|
|
|
}
|
2020-07-27 19:53:28 +00:00
|
|
|
|
2020-07-26 13:41:28 +00:00
|
|
|
pub fn to_room_event(&self) -> Raw<AnyRoomEvent> {
|
2020-07-27 19:53:28 +00:00
|
|
|
let mut json = json!({
|
|
|
|
"content": self.content,
|
|
|
|
"type": self.kind,
|
|
|
|
"event_id": self.event_id,
|
|
|
|
"sender": self.sender,
|
|
|
|
"origin_server_ts": self.origin_server_ts,
|
|
|
|
"unsigned": self.unsigned,
|
|
|
|
"room_id": self.room_id,
|
|
|
|
});
|
|
|
|
|
|
|
|
if let Some(state_key) = &self.state_key {
|
|
|
|
json["state_key"] = json!(state_key);
|
|
|
|
}
|
|
|
|
if let Some(redacts) = &self.redacts {
|
|
|
|
json["redacts"] = json!(redacts);
|
|
|
|
}
|
|
|
|
|
|
|
|
serde_json::from_value(json).expect("Raw::from_value always works")
|
2020-04-04 09:53:37 +00:00
|
|
|
}
|
2020-07-27 19:53:28 +00:00
|
|
|
|
2020-07-26 13:41:28 +00:00
|
|
|
pub fn to_state_event(&self) -> Raw<AnyStateEvent> {
|
2020-07-27 19:53:28 +00:00
|
|
|
let json = json!({
|
|
|
|
"content": self.content,
|
|
|
|
"type": self.kind,
|
|
|
|
"event_id": self.event_id,
|
|
|
|
"sender": self.sender,
|
|
|
|
"origin_server_ts": self.origin_server_ts,
|
|
|
|
"unsigned": self.unsigned,
|
|
|
|
"room_id": self.room_id,
|
|
|
|
"state_key": self.state_key,
|
|
|
|
});
|
|
|
|
|
|
|
|
serde_json::from_value(json).expect("Raw::from_value always works")
|
2020-04-29 10:18:45 +00:00
|
|
|
}
|
2020-07-27 19:53:28 +00:00
|
|
|
|
2020-07-26 13:41:28 +00:00
|
|
|
pub fn to_sync_state_event(&self) -> Raw<AnySyncStateEvent> {
|
2020-07-27 19:53:28 +00:00
|
|
|
let json = json!({
|
|
|
|
"content": self.content,
|
|
|
|
"type": self.kind,
|
|
|
|
"event_id": self.event_id,
|
|
|
|
"sender": self.sender,
|
|
|
|
"origin_server_ts": self.origin_server_ts,
|
|
|
|
"unsigned": self.unsigned,
|
|
|
|
"state_key": self.state_key,
|
|
|
|
});
|
|
|
|
|
|
|
|
serde_json::from_value(json).expect("Raw::from_value always works")
|
2020-06-22 11:26:09 +00:00
|
|
|
}
|
2020-07-27 19:53:28 +00:00
|
|
|
|
2020-07-26 13:41:28 +00:00
|
|
|
pub fn to_stripped_state_event(&self) -> Raw<AnyStrippedStateEvent> {
|
2020-07-27 19:53:28 +00:00
|
|
|
let json = json!({
|
|
|
|
"content": self.content,
|
|
|
|
"type": self.kind,
|
|
|
|
"sender": self.sender,
|
|
|
|
"state_key": self.state_key,
|
|
|
|
});
|
|
|
|
|
|
|
|
serde_json::from_value(json).expect("Raw::from_value always works")
|
2020-04-14 11:54:32 +00:00
|
|
|
}
|
2020-07-27 19:53:28 +00:00
|
|
|
|
2020-07-26 13:41:28 +00:00
|
|
|
pub fn to_member_event(&self) -> Raw<StateEvent<MemberEventContent>> {
|
2020-07-27 19:53:28 +00:00
|
|
|
let json = json!({
|
|
|
|
"content": self.content,
|
|
|
|
"type": self.kind,
|
|
|
|
"event_id": self.event_id,
|
|
|
|
"sender": self.sender,
|
|
|
|
"origin_server_ts": self.origin_server_ts,
|
|
|
|
"redacts": self.redacts,
|
|
|
|
"unsigned": self.unsigned,
|
|
|
|
"room_id": self.room_id,
|
|
|
|
"state_key": self.state_key,
|
|
|
|
});
|
|
|
|
|
|
|
|
serde_json::from_value(json).expect("Raw::from_value always works")
|
2020-06-12 11:18:25 +00:00
|
|
|
}
|
2020-04-04 09:53:37 +00:00
|
|
|
}
|
2020-07-28 13:00:23 +00:00
|
|
|
|
2020-08-18 20:26:03 +00:00
|
|
|
impl TryFrom<&state_res::StateEvent> for PduEvent {
|
|
|
|
type Error = Error;
|
|
|
|
fn try_from(pdu: &state_res::StateEvent) -> Result<Self> {
|
|
|
|
serde_json::from_value(json!({
|
|
|
|
"event_id": pdu.event_id(),
|
|
|
|
"room_id": pdu.room_id(),
|
|
|
|
"sender": pdu.sender(),
|
|
|
|
"origin": pdu.origin(),
|
|
|
|
"origin_server_ts": pdu.origin_server_ts(),
|
|
|
|
"event_type": pdu.kind(),
|
|
|
|
"content": pdu.content(),
|
|
|
|
"state_key": pdu.state_key(),
|
|
|
|
"prev_events": pdu.prev_event_ids(),
|
|
|
|
"depth": pdu.depth(),
|
|
|
|
"auth_events": pdu.auth_events(),
|
|
|
|
"redacts": pdu.redacts(),
|
|
|
|
"unsigned": pdu.unsigned(),
|
|
|
|
"hashes": pdu.hashes(),
|
|
|
|
"signatures": pdu.signatures(),
|
|
|
|
}))
|
|
|
|
.map_err(|_| Error::bad_database("Failed to convert PDU to ruma::Pdu type."))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-06 12:29:59 +00:00
|
|
|
impl PduEvent {
|
|
|
|
pub fn convert_for_state_res(&self) -> Result<state_res::StateEvent> {
|
|
|
|
serde_json::from_value(json!({
|
|
|
|
"event_id": self.event_id,
|
|
|
|
"room_id": self.room_id,
|
|
|
|
"sender": self.sender,
|
|
|
|
"origin": self.origin,
|
|
|
|
"origin_server_ts": self.origin_server_ts,
|
|
|
|
"type": self.kind,
|
|
|
|
"content": self.content,
|
|
|
|
"state_key": self.state_key,
|
|
|
|
"prev_events": self.prev_events
|
|
|
|
.iter()
|
2020-08-18 20:26:03 +00:00
|
|
|
// TODO How do we create one of these
|
2020-08-06 12:29:59 +00:00
|
|
|
.map(|id| (id, EventHash { sha256: "hello".into() }))
|
|
|
|
.collect::<Vec<_>>(),
|
|
|
|
"depth": self.depth,
|
|
|
|
"auth_events": self.auth_events
|
|
|
|
.iter()
|
2020-08-18 20:26:03 +00:00
|
|
|
// TODO How do we create one of these
|
2020-08-06 12:29:59 +00:00
|
|
|
.map(|id| (id, EventHash { sha256: "hello".into() }))
|
|
|
|
.collect::<Vec<_>>(),
|
|
|
|
"redacts": self.redacts,
|
|
|
|
"unsigned": self.unsigned,
|
|
|
|
"hashes": self.hashes,
|
|
|
|
"signatures": self.signatures,
|
|
|
|
}))
|
|
|
|
.map_err(|_| Error::bad_database("Failed to convert PDU to ruma::Pdu type."))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-28 13:00:23 +00:00
|
|
|
/// Build the start of a PDU in order to add it to the `Database`.
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct PduBuilder {
|
|
|
|
pub room_id: RoomId,
|
|
|
|
pub sender: UserId,
|
|
|
|
pub event_type: EventType,
|
|
|
|
pub content: serde_json::Value,
|
|
|
|
pub unsigned: Option<serde_json::Map<String, serde_json::Value>>,
|
|
|
|
pub state_key: Option<String>,
|
|
|
|
pub redacts: Option<EventId>,
|
|
|
|
}
|