If a ruma-events type fails deserialization, but the input was valid JSON, this should be treated as a validation failure instead of a deserialization failure. In this case, attempt to deserialize the json into a `serde_json::Value`, and only return a deserialization error if that fails.
327 lines
11 KiB
Rust
327 lines
11 KiB
Rust
use std::fmt::{Debug, Display, Formatter, Result as FmtResult};
|
|
|
|
use serde::{
|
|
de::{Error as SerdeError, Visitor},
|
|
Deserialize, Deserializer, Serialize, Serializer,
|
|
};
|
|
|
|
/// The type of an event.
|
|
#[derive(Clone, Debug, PartialEq)]
|
|
pub enum EventType {
|
|
/// m.direct
|
|
Direct,
|
|
|
|
/// m.room.aliases
|
|
RoomAliases,
|
|
|
|
/// m.room.redaction
|
|
RoomRedaction,
|
|
|
|
/// Any event that is not part of the specification.
|
|
Custom(String),
|
|
}
|
|
|
|
impl Display for EventType {
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
|
|
let event_type_str = match *self {
|
|
EventType::Direct => "m.direct",
|
|
EventType::RoomAliases => "m.room.aliases",
|
|
EventType::RoomRedaction => "m.room.redaction",
|
|
EventType::Custom(ref event_type) => event_type,
|
|
};
|
|
|
|
write!(f, "{}", event_type_str)
|
|
}
|
|
}
|
|
|
|
impl<'a> From<&'a str> for EventType {
|
|
fn from(s: &'a str) -> EventType {
|
|
match s {
|
|
"m.direct" => EventType::Direct,
|
|
"m.room.aliases" => EventType::RoomAliases,
|
|
"m.room.redaction" => EventType::RoomRedaction,
|
|
event_type => EventType::Custom(event_type.to_string()),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Serialize for EventType {
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
where
|
|
S: Serializer,
|
|
{
|
|
serializer.serialize_str(&self.to_string())
|
|
}
|
|
}
|
|
|
|
impl<'de> Deserialize<'de> for EventType {
|
|
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
|
|
where
|
|
D: Deserializer<'de>,
|
|
{
|
|
struct EventTypeVisitor;
|
|
|
|
impl<'de> Visitor<'de> for EventTypeVisitor {
|
|
type Value = EventType;
|
|
|
|
fn expecting(&self, formatter: &mut Formatter<'_>) -> FmtResult {
|
|
write!(formatter, "a Matrix event type as a string")
|
|
}
|
|
|
|
fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
|
|
where
|
|
E: SerdeError,
|
|
{
|
|
Ok(EventType::from(v))
|
|
}
|
|
}
|
|
|
|
deserializer.deserialize_str(EventTypeVisitor)
|
|
}
|
|
}
|
|
|
|
/// A basic event.
|
|
pub trait Event
|
|
where
|
|
Self: Debug + Serialize,
|
|
{
|
|
/// The type of this event's `content` field.
|
|
type Content: Debug + Serialize;
|
|
|
|
/// The event's content.
|
|
fn content(&self) -> &Self::Content;
|
|
|
|
/// The type of the event.
|
|
fn event_type(&self) -> EventType;
|
|
}
|
|
|
|
/// An event within the context of a room.
|
|
pub trait RoomEvent: Event {
|
|
/// The unique identifier for the event.
|
|
fn event_id(&self) -> &ruma_identifiers::EventId;
|
|
|
|
/// Timestamp (milliseconds since the UNIX epoch) on originating homeserver when this event was
|
|
/// sent.
|
|
fn origin_server_ts(&self) -> js_int::UInt;
|
|
|
|
/// The unique identifier for the room associated with this event.
|
|
///
|
|
/// This can be `None` if the event came from a context where there is
|
|
/// no ambiguity which room it belongs to, like a `/sync` response for example.
|
|
fn room_id(&self) -> Option<&ruma_identifiers::RoomId>;
|
|
|
|
/// The unique identifier for the user who sent this event.
|
|
fn sender(&self) -> &ruma_identifiers::UserId;
|
|
|
|
/// Additional key-value pairs not signed by the homeserver.
|
|
fn unsigned(&self) -> Option<&serde_json::Value>;
|
|
}
|
|
|
|
/// An event that describes persistent state about a room.
|
|
pub trait StateEvent: RoomEvent {
|
|
/// The previous content for this state key, if any.
|
|
fn prev_content(&self) -> Option<&Self::Content>;
|
|
|
|
/// A key that determines which piece of room state the event represents.
|
|
fn state_key(&self) -> &str;
|
|
}
|
|
|
|
/// An event that is malformed or otherwise invalid.
|
|
///
|
|
/// When attempting to create an event from a string of JSON data, an error in the input data may
|
|
/// cause deserialization to fail, or the JSON structure may not corresponded to ruma-events's
|
|
/// strict definition of the event's schema. If deserialization completely fails, this type will
|
|
/// provide a message with details about the deserialization error. If deserialization succeeds but
|
|
/// the event is otherwise invalid, a similar message will be provided, as well as a
|
|
/// `serde_json::Value` containing the raw JSON data as it was deserialized.
|
|
#[derive(Debug)]
|
|
pub struct InvalidEvent(InnerInvalidEvent);
|
|
|
|
/// An event that is malformed or otherwise invalid.
|
|
#[derive(Debug)]
|
|
enum InnerInvalidEvent {
|
|
/// An event that failed to deserialize from JSON.
|
|
Deserialization {
|
|
/// The deserialization error returned by serde.
|
|
error: serde_json::Error,
|
|
},
|
|
|
|
/// An event that deserialized but failed validation.
|
|
Validation {
|
|
/// The raw `serde_json::Value` representation of the invalid event.
|
|
json: serde_json::Value,
|
|
|
|
/// An message describing why the event was invalid.
|
|
message: String,
|
|
},
|
|
}
|
|
|
|
// See note about wrapping macro expansion in a module from `src/lib.rs`
|
|
pub mod common_case {
|
|
use std::convert::TryFrom;
|
|
|
|
use js_int::UInt;
|
|
use ruma_events_macros::ruma_event;
|
|
use ruma_identifiers::{EventId, RoomAliasId, RoomId, UserId};
|
|
use serde_json::Value;
|
|
|
|
ruma_event! {
|
|
/// Informs the room about what room aliases it has been given.
|
|
AliasesEvent {
|
|
kind: StateEvent,
|
|
event_type: RoomAliases,
|
|
content: {
|
|
/// A list of room aliases.
|
|
pub aliases: Vec<ruma_identifiers::RoomAliasId>,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn serialization_with_optional_fields_as_none() {
|
|
let event = AliasesEvent {
|
|
content: AliasesEventContent {
|
|
aliases: Vec::with_capacity(0),
|
|
},
|
|
event_id: EventId::try_from("$h29iv0s8:example.com").unwrap(),
|
|
origin_server_ts: UInt::try_from(1).unwrap(),
|
|
prev_content: None,
|
|
room_id: None,
|
|
sender: UserId::try_from("@carl:example.com").unwrap(),
|
|
state_key: "example.com".to_string(),
|
|
unsigned: None,
|
|
};
|
|
|
|
let actual = serde_json::to_string(&event).unwrap();
|
|
let expected = r#"{"content":{"aliases":[]},"event_id":"$h29iv0s8:example.com","origin_server_ts":1,"sender":"@carl:example.com","state_key":"example.com","type":"m.room.aliases"}"#;
|
|
|
|
assert_eq!(actual, expected);
|
|
}
|
|
|
|
#[test]
|
|
fn serialization_with_some_optional_fields_as_some() {
|
|
let event = AliasesEvent {
|
|
content: AliasesEventContent {
|
|
aliases: vec![RoomAliasId::try_from("#room:example.org").unwrap()],
|
|
},
|
|
event_id: EventId::try_from("$h29iv0s8:example.com").unwrap(),
|
|
origin_server_ts: UInt::try_from(1).unwrap(),
|
|
prev_content: Some(AliasesEventContent {
|
|
aliases: Vec::with_capacity(0),
|
|
}),
|
|
room_id: Some(RoomId::try_from("!n8f893n9:example.com").unwrap()),
|
|
sender: UserId::try_from("@carl:example.com").unwrap(),
|
|
state_key: "example.com".to_string(),
|
|
unsigned: None,
|
|
};
|
|
|
|
let actual = serde_json::to_string(&event).unwrap();
|
|
let expected = r##"{"content":{"aliases":["#room:example.org"]},"event_id":"$h29iv0s8:example.com","origin_server_ts":1,"prev_content":{"aliases":[]},"room_id":"!n8f893n9:example.com","sender":"@carl:example.com","state_key":"example.com","type":"m.room.aliases"}"##;
|
|
|
|
assert_eq!(actual, expected);
|
|
}
|
|
|
|
#[test]
|
|
fn serialization_with_all_optional_fields_as_some() {
|
|
let event = AliasesEvent {
|
|
content: AliasesEventContent {
|
|
aliases: vec![RoomAliasId::try_from("#room:example.org").unwrap()],
|
|
},
|
|
event_id: EventId::try_from("$h29iv0s8:example.com").unwrap(),
|
|
origin_server_ts: UInt::try_from(1).unwrap(),
|
|
prev_content: Some(AliasesEventContent {
|
|
aliases: Vec::with_capacity(0),
|
|
}),
|
|
room_id: Some(RoomId::try_from("!n8f893n9:example.com").unwrap()),
|
|
sender: UserId::try_from("@carl:example.com").unwrap(),
|
|
state_key: "example.com".to_string(),
|
|
unsigned: Some(serde_json::from_str::<Value>(r#"{"foo":"bar"}"#).unwrap()),
|
|
};
|
|
|
|
let actual = serde_json::to_string(&event).unwrap();
|
|
let expected = r##"{"content":{"aliases":["#room:example.org"]},"event_id":"$h29iv0s8:example.com","origin_server_ts":1,"prev_content":{"aliases":[]},"room_id":"!n8f893n9:example.com","sender":"@carl:example.com","state_key":"example.com","unsigned":{"foo":"bar"},"type":"m.room.aliases"}"##;
|
|
|
|
assert_eq!(actual, expected);
|
|
}
|
|
|
|
#[test]
|
|
fn deserialization() {
|
|
let json = r##"{"content":{"aliases":["#room:example.org"]},"event_id":"$h29iv0s8:example.com","origin_server_ts":1,"prev_content":{"aliases":[]},"room_id":"!n8f893n9:example.com","sender":"@carl:example.com","state_key":"example.com","unsigned":{"foo":"bar"},"type":"m.room.aliases"}"##;
|
|
|
|
let actual: AliasesEvent = json.parse().unwrap();
|
|
|
|
let expected = AliasesEvent {
|
|
content: AliasesEventContent {
|
|
aliases: vec![RoomAliasId::try_from("#room:example.org").unwrap()],
|
|
},
|
|
event_id: EventId::try_from("$h29iv0s8:example.com").unwrap(),
|
|
origin_server_ts: UInt::try_from(1).unwrap(),
|
|
prev_content: Some(AliasesEventContent {
|
|
aliases: Vec::with_capacity(0),
|
|
}),
|
|
room_id: Some(RoomId::try_from("!n8f893n9:example.com").unwrap()),
|
|
sender: UserId::try_from("@carl:example.com").unwrap(),
|
|
state_key: "example.com".to_string(),
|
|
unsigned: Some(serde_json::from_str::<Value>(r#"{"foo":"bar"}"#).unwrap()),
|
|
};
|
|
|
|
assert_eq!(actual, expected);
|
|
}
|
|
}
|
|
|
|
pub mod custom_event_type {
|
|
use ruma_events_macros::ruma_event;
|
|
use serde_json::Value;
|
|
|
|
ruma_event! {
|
|
/// A custom event.
|
|
CustomEvent {
|
|
kind: Event,
|
|
event_type: Custom,
|
|
content_type_alias: {
|
|
/// The payload for `CustomEvent`.
|
|
Value
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
pub mod extra_fields {
|
|
use ruma_events_macros::ruma_event;
|
|
|
|
ruma_event! {
|
|
/// A redaction of an event.
|
|
RedactionEvent {
|
|
kind: RoomEvent,
|
|
event_type: RoomRedaction,
|
|
fields: {
|
|
/// The ID of the event that was redacted.
|
|
pub redacts: ruma_identifiers::EventId
|
|
},
|
|
content: {
|
|
/// The reason for the redaction, if any.
|
|
pub reason: Option<String>,
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
pub mod type_alias {
|
|
use ruma_events_macros::ruma_event;
|
|
|
|
ruma_event! {
|
|
/// Informs the client about the rooms that are considered direct by a user.
|
|
DirectEvent {
|
|
kind: Event,
|
|
event_type: Direct,
|
|
content_type_alias: {
|
|
/// The payload of a `DirectEvent`.
|
|
///
|
|
/// A mapping of `UserId`'s to a collection of `RoomId`'s which are considered
|
|
/// *direct* for that particular user.
|
|
std::collections::HashMap<ruma_identifiers::UserId, Vec<ruma_identifiers::RoomId>>
|
|
}
|
|
}
|
|
}
|
|
}
|