2020-09-17 12:44:47 +00:00
|
|
|
use crate::Error;
|
2021-03-23 18:46:54 +00:00
|
|
|
use log::error;
|
2020-06-05 16:19:26 +00:00
|
|
|
use ruma::{
|
|
|
|
events::{
|
2021-05-20 21:46:52 +00:00
|
|
|
pdu::EventHash, room::member::MemberEventContent, AnyEphemeralRoomEvent, AnyRoomEvent,
|
|
|
|
AnyStateEvent, AnyStrippedStateEvent, AnySyncRoomEvent, AnySyncStateEvent, EventType,
|
|
|
|
StateEvent,
|
2020-06-05 16:19:26 +00:00
|
|
|
},
|
2021-04-26 16:20:20 +00:00
|
|
|
serde::{CanonicalJsonObject, CanonicalJsonValue, Raw},
|
2021-05-20 21:46:52 +00:00
|
|
|
state_res, EventId, MilliSecondsSinceUnixEpoch, RoomId, RoomVersionId, ServerName,
|
|
|
|
ServerSigningKeyId, UInt, UserId,
|
2020-09-15 14:13:54 +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;
|
2021-05-20 21:46:52 +00:00
|
|
|
use std::{cmp::Ordering, collections::BTreeMap, convert::TryFrom};
|
2020-04-04 09:53:37 +00:00
|
|
|
|
2020-12-22 17:45:35 +00:00
|
|
|
#[derive(Clone, Deserialize, Serialize, Debug)]
|
2020-04-04 09:53:37 +00:00
|
|
|
pub struct PduEvent {
|
|
|
|
pub event_id: EventId,
|
|
|
|
pub room_id: RoomId,
|
|
|
|
pub sender: UserId,
|
|
|
|
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>,
|
2020-12-31 13:40:49 +00:00
|
|
|
#[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
|
|
|
|
pub unsigned: BTreeMap<String, serde_json::Value>,
|
2020-04-04 09:53:37 +00:00
|
|
|
pub hashes: EventHash,
|
2020-12-04 23:16:17 +00:00
|
|
|
pub signatures: BTreeMap<Box<ServerName>, BTreeMap<ServerSigningKeyId, String>>,
|
2020-04-04 09:53:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl PduEvent {
|
2021-02-28 11:41:03 +00:00
|
|
|
#[tracing::instrument(skip(self))]
|
2020-09-17 12:44:47 +00:00
|
|
|
pub fn redact(&mut self, reason: &PduEvent) -> crate::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(),
|
2021-05-26 15:16:40 +00:00
|
|
|
serde_json::to_value(reason).expect("to_value(PduEvent) always works"),
|
2020-06-01 18:58:49 +00:00
|
|
|
);
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-02-28 11:41:03 +00:00
|
|
|
#[tracing::instrument(skip(self))]
|
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 {
|
2020-08-19 16:26:39 +00:00
|
|
|
json["redacts"] = json!(redacts);
|
|
|
|
}
|
|
|
|
|
|
|
|
serde_json::from_value(json).expect("Raw::from_value always works")
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This only works for events that are also AnyRoomEvents.
|
2021-02-28 11:41:03 +00:00
|
|
|
#[tracing::instrument(skip(self))]
|
2021-05-20 21:46:52 +00:00
|
|
|
pub fn to_any_event(&self) -> Raw<AnyEphemeralRoomEvent> {
|
2020-08-19 16:26:39 +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 {
|
2020-07-27 19:53:28 +00:00
|
|
|
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
|
|
|
|
2021-02-28 11:41:03 +00:00
|
|
|
#[tracing::instrument(skip(self))]
|
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
|
|
|
|
2021-02-28 11:41:03 +00:00
|
|
|
#[tracing::instrument(skip(self))]
|
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
|
|
|
|
2021-02-28 11:41:03 +00:00
|
|
|
#[tracing::instrument(skip(self))]
|
2020-07-26 13:41:28 +00:00
|
|
|
pub fn to_sync_state_event(&self) -> Raw<AnySyncStateEvent> {
|
2021-04-14 07:39:06 +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,
|
|
|
|
});
|
2020-07-27 19:53:28 +00:00
|
|
|
|
2021-04-14 07:39:06 +00:00
|
|
|
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
|
|
|
|
2021-02-28 11:41:03 +00:00
|
|
|
#[tracing::instrument(skip(self))]
|
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
|
|
|
|
2021-02-28 11:41:03 +00:00
|
|
|
#[tracing::instrument(skip(self))]
|
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-09-14 18:23:19 +00:00
|
|
|
|
2020-12-04 23:16:17 +00:00
|
|
|
/// This does not return a full `Pdu` it is only to satisfy ruma's types.
|
2021-02-28 11:41:03 +00:00
|
|
|
#[tracing::instrument]
|
2020-10-07 10:29:19 +00:00
|
|
|
pub fn convert_to_outgoing_federation_event(
|
2020-11-30 19:46:47 +00:00
|
|
|
mut pdu_json: CanonicalJsonObject,
|
2020-12-04 23:16:17 +00:00
|
|
|
) -> Raw<ruma::events::pdu::Pdu> {
|
2021-05-08 00:13:01 +00:00
|
|
|
if let Some(unsigned) = pdu_json
|
|
|
|
.get_mut("unsigned")
|
|
|
|
.and_then(|val| val.as_object_mut())
|
|
|
|
{
|
2020-11-30 19:46:47 +00:00
|
|
|
unsigned.remove("transaction_id");
|
2020-09-14 18:23:19 +00:00
|
|
|
}
|
|
|
|
|
2020-11-30 19:46:47 +00:00
|
|
|
pdu_json.remove("event_id");
|
|
|
|
|
|
|
|
// TODO: another option would be to convert it to a canonical string to validate size
|
|
|
|
// and return a Result<Raw<...>>
|
|
|
|
// serde_json::from_str::<Raw<_>>(
|
|
|
|
// ruma::serde::to_canonical_json_string(pdu_json).expect("CanonicalJson is valid serde_json::Value"),
|
|
|
|
// )
|
|
|
|
// .expect("Raw::from_value always works")
|
2020-09-25 10:26:29 +00:00
|
|
|
|
2020-11-30 19:46:47 +00:00
|
|
|
serde_json::from_value::<Raw<_>>(
|
|
|
|
serde_json::to_value(pdu_json).expect("CanonicalJson is valid serde_json::Value"),
|
|
|
|
)
|
|
|
|
.expect("Raw::from_value always works")
|
2020-09-14 18:23:19 +00:00
|
|
|
}
|
2020-07-28 13:00:23 +00:00
|
|
|
|
2020-12-31 13:40:49 +00:00
|
|
|
pub fn from_id_val(
|
|
|
|
event_id: &EventId,
|
2021-01-03 22:26:17 +00:00
|
|
|
mut json: CanonicalJsonObject,
|
2020-12-31 13:40:49 +00:00
|
|
|
) -> Result<Self, serde_json::Error> {
|
|
|
|
json.insert(
|
|
|
|
"event_id".to_string(),
|
2021-04-26 16:20:20 +00:00
|
|
|
CanonicalJsonValue::String(event_id.as_str().to_owned()),
|
2020-12-31 13:40:49 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
serde_json::from_value(serde_json::to_value(json).expect("valid JSON"))
|
2020-08-18 20:26:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-31 13:40:49 +00:00
|
|
|
impl state_res::Event for PduEvent {
|
|
|
|
fn event_id(&self) -> &EventId {
|
|
|
|
&self.event_id
|
|
|
|
}
|
|
|
|
|
|
|
|
fn room_id(&self) -> &RoomId {
|
|
|
|
&self.room_id
|
|
|
|
}
|
|
|
|
|
|
|
|
fn sender(&self) -> &UserId {
|
|
|
|
&self.sender
|
|
|
|
}
|
|
|
|
fn kind(&self) -> EventType {
|
|
|
|
self.kind.clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn content(&self) -> serde_json::Value {
|
|
|
|
self.content.clone()
|
|
|
|
}
|
2021-05-20 21:46:52 +00:00
|
|
|
fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch {
|
|
|
|
MilliSecondsSinceUnixEpoch(self.origin_server_ts)
|
2020-12-31 13:40:49 +00:00
|
|
|
}
|
|
|
|
fn state_key(&self) -> Option<String> {
|
|
|
|
self.state_key.clone()
|
|
|
|
}
|
|
|
|
fn prev_events(&self) -> Vec<EventId> {
|
|
|
|
self.prev_events.to_vec()
|
|
|
|
}
|
|
|
|
fn depth(&self) -> &UInt {
|
|
|
|
&self.depth
|
|
|
|
}
|
|
|
|
fn auth_events(&self) -> Vec<EventId> {
|
|
|
|
self.auth_events.to_vec()
|
|
|
|
}
|
|
|
|
fn redacts(&self) -> Option<&EventId> {
|
|
|
|
self.redacts.as_ref()
|
|
|
|
}
|
|
|
|
fn hashes(&self) -> &EventHash {
|
|
|
|
&self.hashes
|
|
|
|
}
|
|
|
|
fn signatures(&self) -> BTreeMap<Box<ServerName>, BTreeMap<ruma::ServerSigningKeyId, String>> {
|
|
|
|
self.signatures.clone()
|
|
|
|
}
|
|
|
|
fn unsigned(&self) -> &BTreeMap<String, serde_json::Value> {
|
|
|
|
&self.unsigned
|
2020-08-06 12:29:59 +00:00
|
|
|
}
|
2021-01-19 00:08:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// These impl's allow us to dedup state snapshots when resolving state
|
|
|
|
// for incoming events (federation/send/{txn}).
|
|
|
|
impl Eq for PduEvent {}
|
|
|
|
impl PartialEq for PduEvent {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.event_id == other.event_id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl PartialOrd for PduEvent {
|
|
|
|
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
|
|
|
|
self.event_id.partial_cmp(&other.event_id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl Ord for PduEvent {
|
|
|
|
fn cmp(&self, other: &Self) -> Ordering {
|
|
|
|
self.event_id.cmp(&other.event_id)
|
|
|
|
}
|
2020-08-06 12:29:59 +00:00
|
|
|
}
|
|
|
|
|
2020-12-04 22:16:29 +00:00
|
|
|
/// Generates a correct eventId for the incoming pdu.
|
|
|
|
///
|
2021-01-12 13:26:52 +00:00
|
|
|
/// Returns a tuple of the new `EventId` and the PDU as a `BTreeMap<String, CanonicalJsonValue>`.
|
2021-01-14 19:39:56 +00:00
|
|
|
pub(crate) fn gen_event_id_canonical_json(
|
2020-12-04 23:16:17 +00:00
|
|
|
pdu: &Raw<ruma::events::pdu::Pdu>,
|
2021-03-23 18:46:54 +00:00
|
|
|
) -> crate::Result<(EventId, CanonicalJsonObject)> {
|
|
|
|
let value = serde_json::from_str(pdu.json().get()).map_err(|e| {
|
|
|
|
error!("{:?}: {:?}", pdu, e);
|
|
|
|
Error::BadServerResponse("Invalid PDU in server response")
|
|
|
|
})?;
|
2020-12-04 22:16:29 +00:00
|
|
|
|
|
|
|
let event_id = EventId::try_from(&*format!(
|
|
|
|
"${}",
|
|
|
|
ruma::signatures::reference_hash(&value, &RoomVersionId::Version6)
|
|
|
|
.expect("ruma can calculate reference hashes")
|
|
|
|
))
|
|
|
|
.expect("ruma's reference hashes are valid event ids");
|
|
|
|
|
2021-03-23 18:46:54 +00:00
|
|
|
Ok((event_id, value))
|
2020-12-04 22:16:29 +00:00
|
|
|
}
|
|
|
|
|
2020-07-28 13:00:23 +00:00
|
|
|
/// Build the start of a PDU in order to add it to the `Database`.
|
2020-09-08 15:32:03 +00:00
|
|
|
#[derive(Debug, Deserialize)]
|
2020-07-28 13:00:23 +00:00
|
|
|
pub struct PduBuilder {
|
2020-09-12 19:30:07 +00:00
|
|
|
#[serde(rename = "type")]
|
2020-07-28 13:00:23 +00:00
|
|
|
pub event_type: EventType,
|
|
|
|
pub content: serde_json::Value,
|
2020-12-31 13:40:49 +00:00
|
|
|
pub unsigned: Option<BTreeMap<String, serde_json::Value>>,
|
2020-07-28 13:00:23 +00:00
|
|
|
pub state_key: Option<String>,
|
|
|
|
pub redacts: Option<EventId>,
|
|
|
|
}
|