1
0
Fork 0
mirror of https://forgejo.ellis.link/continuwuation/continuwuity.git synced 2025-07-31 20:28:31 +00:00
continuwuity/src/service/pdu.rs

411 lines
13 KiB
Rust
Raw Normal View History

use crate::Error;
2020-06-05 18:19:26 +02:00
use ruma::{
canonical_json::redact_content_in_place,
2020-06-05 18:19:26 +02:00
events::{
2023-07-02 16:06:54 +02:00
room::member::RoomMemberEventContent, space::child::HierarchySpaceChildEvent,
AnyEphemeralRoomEvent, AnyMessageLikeEvent, AnyStateEvent, AnyStrippedStateEvent,
AnySyncStateEvent, AnySyncTimelineEvent, AnyTimelineEvent, StateEvent, TimelineEventType,
2020-06-05 18:19:26 +02:00
},
2022-10-09 17:25:06 +02:00
serde::Raw,
state_res, CanonicalJsonObject, CanonicalJsonValue, EventId, MilliSecondsSinceUnixEpoch,
OwnedEventId, OwnedRoomId, OwnedUserId, RoomId, RoomVersionId, UInt, UserId,
2020-09-15 16:13:54 +02:00
};
2020-04-04 11:53:37 +02:00
use serde::{Deserialize, Serialize};
use serde_json::{
json,
value::{to_raw_value, RawValue as RawJsonValue},
};
use std::{cmp::Ordering, collections::BTreeMap, sync::Arc};
use tracing::warn;
2020-04-04 11:53:37 +02:00
/// Content hashes of a PDU.
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct EventHash {
/// The SHA-256 hash.
pub sha256: String,
}
2020-12-22 12:45:35 -05:00
#[derive(Clone, Deserialize, Serialize, Debug)]
2020-04-04 11:53:37 +02:00
pub struct PduEvent {
pub event_id: Arc<EventId>,
2022-10-09 17:25:06 +02:00
pub room_id: OwnedRoomId,
pub sender: OwnedUserId,
2020-04-04 11:53:37 +02:00
pub origin_server_ts: UInt,
#[serde(rename = "type")]
2023-02-26 16:29:06 +01:00
pub kind: TimelineEventType,
pub content: Box<RawJsonValue>,
2020-04-04 11:53:37 +02:00
#[serde(skip_serializing_if = "Option::is_none")]
pub state_key: Option<String>,
pub prev_events: Vec<Arc<EventId>>,
2020-04-04 11:53:37 +02:00
pub depth: UInt,
pub auth_events: Vec<Arc<EventId>>,
2020-04-04 11:53:37 +02:00
#[serde(skip_serializing_if = "Option::is_none")]
pub redacts: Option<Arc<EventId>>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub unsigned: Option<Box<RawJsonValue>>,
2020-04-04 11:53:37 +02:00
pub hashes: EventHash,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub signatures: Option<Box<RawJsonValue>>, // BTreeMap<Box<ServerName>, BTreeMap<ServerSigningKeyId, String>>
2020-04-04 11:53:37 +02:00
}
impl PduEvent {
2021-02-28 12:41:03 +01:00
#[tracing::instrument(skip(self))]
pub fn redact(
&mut self,
room_version_id: RoomVersionId,
reason: &PduEvent,
) -> crate::Result<()> {
self.unsigned = None;
let mut content = serde_json::from_str(self.content.get())
.map_err(|_| Error::bad_database("PDU in db has invalid content."))?;
redact_content_in_place(&mut content, &room_version_id, self.kind.to_string())
.map_err(|e| Error::RedactionError(self.sender.server_name().to_owned(), e))?;
2020-05-26 10:27:51 +02:00
self.unsigned = Some(to_raw_value(&json!({
"redacted_because": serde_json::to_value(reason).expect("to_value(PduEvent) always works")
})).expect("to string always works"));
self.content = to_raw_value(&content).expect("to string always works");
2020-06-01 20:58:49 +02:00
Ok(())
}
pub fn remove_transaction_id(&mut self) -> crate::Result<()> {
if let Some(unsigned) = &self.unsigned {
let mut unsigned: BTreeMap<String, Box<RawJsonValue>> =
serde_json::from_str(unsigned.get())
.map_err(|_| Error::bad_database("Invalid unsigned in pdu event"))?;
unsigned.remove("transaction_id");
self.unsigned = Some(to_raw_value(&unsigned).expect("unsigned is valid"));
}
2020-06-09 15:13:17 +02:00
Ok(())
2020-05-26 10:27:51 +02:00
}
pub fn add_age(&mut self) -> crate::Result<()> {
let mut unsigned: BTreeMap<String, Box<RawJsonValue>> = self
.unsigned
.as_ref()
.map_or_else(|| Ok(BTreeMap::new()), |u| serde_json::from_str(u.get()))
.map_err(|_| Error::bad_database("Invalid unsigned in pdu event"))?;
unsigned.insert("age".to_owned(), to_raw_value(&1).unwrap());
self.unsigned = Some(to_raw_value(&unsigned).expect("unsigned is valid"));
Ok(())
}
2021-02-28 12:41:03 +01:00
#[tracing::instrument(skip(self))]
2022-10-09 17:25:06 +02:00
pub fn to_sync_room_event(&self) -> Raw<AnySyncTimelineEvent> {
2020-07-27 21:53:28 +02: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,
});
if let Some(unsigned) = &self.unsigned {
json["unsigned"] = json!(unsigned);
}
2020-07-27 21:53:28 +02:00
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")
}
/// This only works for events that are also AnyRoomEvents.
2021-02-28 12:41:03 +01:00
#[tracing::instrument(skip(self))]
pub fn to_any_event(&self) -> Raw<AnyEphemeralRoomEvent> {
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,
"room_id": self.room_id,
});
if let Some(unsigned) = &self.unsigned {
json["unsigned"] = json!(unsigned);
}
if let Some(state_key) = &self.state_key {
json["state_key"] = json!(state_key);
}
if let Some(redacts) = &self.redacts {
2020-07-27 21:53:28 +02:00
json["redacts"] = json!(redacts);
}
serde_json::from_value(json).expect("Raw::from_value always works")
}
2020-07-27 21:53:28 +02:00
2021-02-28 12:41:03 +01:00
#[tracing::instrument(skip(self))]
2022-10-09 17:25:06 +02:00
pub fn to_room_event(&self) -> Raw<AnyTimelineEvent> {
2020-07-27 21:53:28 +02: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,
"room_id": self.room_id,
});
if let Some(unsigned) = &self.unsigned {
json["unsigned"] = json!(unsigned);
}
2020-07-27 21:53:28 +02:00
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 11:53:37 +02:00
}
2020-07-27 21:53:28 +02:00
2023-06-25 19:31:40 +02:00
#[tracing::instrument(skip(self))]
pub fn to_message_like_event(&self) -> Raw<AnyMessageLikeEvent> {
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,
"room_id": self.room_id,
});
if let Some(unsigned) = &self.unsigned {
json["unsigned"] = json!(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")
}
2021-02-28 12:41:03 +01:00
#[tracing::instrument(skip(self))]
2020-07-26 15:41:28 +02:00
pub fn to_state_event(&self) -> Raw<AnyStateEvent> {
let mut json = json!({
2020-07-27 21:53:28 +02:00
"content": self.content,
"type": self.kind,
"event_id": self.event_id,
"sender": self.sender,
"origin_server_ts": self.origin_server_ts,
"room_id": self.room_id,
"state_key": self.state_key,
});
if let Some(unsigned) = &self.unsigned {
json["unsigned"] = json!(unsigned);
}
2020-07-27 21:53:28 +02:00
serde_json::from_value(json).expect("Raw::from_value always works")
}
2020-07-27 21:53:28 +02:00
2021-02-28 12:41:03 +01:00
#[tracing::instrument(skip(self))]
2020-07-26 15:41:28 +02:00
pub fn to_sync_state_event(&self) -> Raw<AnySyncStateEvent> {
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,
"state_key": self.state_key,
});
2020-07-27 21:53:28 +02:00
if let Some(unsigned) = &self.unsigned {
json["unsigned"] = json!(unsigned);
}
serde_json::from_value(json).expect("Raw::from_value always works")
}
2020-07-27 21:53:28 +02:00
2021-02-28 12:41:03 +01:00
#[tracing::instrument(skip(self))]
2020-07-26 15:41:28 +02:00
pub fn to_stripped_state_event(&self) -> Raw<AnyStrippedStateEvent> {
2020-07-27 21:53:28 +02: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-07-27 21:53:28 +02:00
2023-07-02 16:06:54 +02:00
#[tracing::instrument(skip(self))]
pub fn to_stripped_spacechild_state_event(&self) -> Raw<HierarchySpaceChildEvent> {
let json = json!({
"content": self.content,
"type": self.kind,
"sender": self.sender,
"state_key": self.state_key,
"origin_server_ts": self.origin_server_ts,
});
serde_json::from_value(json).expect("Raw::from_value always works")
}
2021-02-28 12:41:03 +01:00
#[tracing::instrument(skip(self))]
pub fn to_member_event(&self) -> Raw<StateEvent<RoomMemberEventContent>> {
let mut json = json!({
2020-07-27 21:53:28 +02:00
"content": self.content,
"type": self.kind,
"event_id": self.event_id,
"sender": self.sender,
"origin_server_ts": self.origin_server_ts,
"redacts": self.redacts,
"room_id": self.room_id,
"state_key": self.state_key,
});
if let Some(unsigned) = &self.unsigned {
json["unsigned"] = json!(unsigned);
}
2020-07-27 21:53:28 +02:00
serde_json::from_value(json).expect("Raw::from_value always works")
2020-06-12 13:18:25 +02:00
}
2020-09-14 20:23:19 +02:00
/// This does not return a full `Pdu` it is only to satisfy ruma's types.
2021-02-28 12:41:03 +01:00
#[tracing::instrument]
2020-10-07 12:29:19 +02:00
pub fn convert_to_outgoing_federation_event(
mut pdu_json: CanonicalJsonObject,
) -> Box<RawJsonValue> {
2021-05-08 02:13:01 +02:00
if let Some(unsigned) = pdu_json
.get_mut("unsigned")
.and_then(|val| val.as_object_mut())
{
unsigned.remove("transaction_id");
2020-09-14 20:23:19 +02: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")
to_raw_value(&pdu_json).expect("CanonicalJson is valid serde_json::Value")
2020-09-14 20:23:19 +02:00
}
pub fn from_id_val(
event_id: &EventId,
mut json: CanonicalJsonObject,
) -> Result<Self, serde_json::Error> {
json.insert(
"event_id".to_owned(),
2021-04-26 18:20:20 +02:00
CanonicalJsonValue::String(event_id.as_str().to_owned()),
);
serde_json::from_value(serde_json::to_value(json).expect("valid JSON"))
}
}
impl state_res::Event for PduEvent {
type Id = Arc<EventId>;
fn event_id(&self) -> &Self::Id {
&self.event_id
}
fn room_id(&self) -> &RoomId {
&self.room_id
}
fn sender(&self) -> &UserId {
&self.sender
}
2021-09-01 15:28:02 +02:00
2023-02-26 16:29:06 +01:00
fn event_type(&self) -> &TimelineEventType {
2021-09-01 15:28:02 +02:00
&self.kind
}
fn content(&self) -> &RawJsonValue {
2021-09-01 15:28:02 +02:00
&self.content
}
2021-09-01 15:28:02 +02:00
fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch {
MilliSecondsSinceUnixEpoch(self.origin_server_ts)
}
2021-09-01 15:28:02 +02:00
fn state_key(&self) -> Option<&str> {
self.state_key.as_deref()
}
2021-09-01 15:28:02 +02:00
fn prev_events(&self) -> Box<dyn DoubleEndedIterator<Item = &Self::Id> + '_> {
Box::new(self.prev_events.iter())
}
2021-09-01 15:28:02 +02:00
fn auth_events(&self) -> Box<dyn DoubleEndedIterator<Item = &Self::Id> + '_> {
Box::new(self.auth_events.iter())
}
2021-09-01 15:28:02 +02:00
fn redacts(&self) -> Option<&Self::Id> {
self.redacts.as_ref()
}
}
// 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> {
Some(self.cmp(other))
}
}
impl Ord for PduEvent {
fn cmp(&self, other: &Self) -> Ordering {
self.event_id.cmp(&other.event_id)
}
}
/// Generates a correct eventId for the incoming pdu.
///
/// Returns a tuple of the new `EventId` and the PDU as a `BTreeMap<String, CanonicalJsonValue>`.
pub(crate) fn gen_event_id_canonical_json(
pdu: &RawJsonValue,
room_version_id: &RoomVersionId,
2022-10-09 17:25:06 +02:00
) -> crate::Result<(OwnedEventId, CanonicalJsonObject)> {
2021-11-01 08:57:27 +00:00
let value: CanonicalJsonObject = serde_json::from_str(pdu.get()).map_err(|e| {
warn!("Error parsing incoming event {:?}: {:?}", pdu, e);
Error::BadServerResponse("Invalid PDU in server response")
})?;
2021-11-27 00:30:28 +01:00
let event_id = format!(
"${}",
2021-07-21 11:29:13 +02:00
// Anything higher than version3 behaves the same
ruma::signatures::reference_hash(&value, room_version_id)
.expect("ruma can calculate reference hashes")
2021-11-27 00:30:28 +01:00
)
.try_into()
.expect("ruma's reference hashes are valid event ids");
Ok((event_id, value))
}
2022-09-07 13:25:51 +02:00
/// Build the start of a PDU in order to add it to the Database.
2020-09-08 17:32:03 +02:00
#[derive(Debug, Deserialize)]
pub struct PduBuilder {
2020-09-12 21:30:07 +02:00
#[serde(rename = "type")]
2023-02-26 16:29:06 +01:00
pub event_type: TimelineEventType,
pub content: Box<RawJsonValue>,
pub unsigned: Option<BTreeMap<String, serde_json::Value>>,
pub state_key: Option<String>,
pub redacts: Option<Arc<EventId>>,
}