1//! Types for the [`m.space.child`] event.
2//!
3//! [`m.space.child`]: https://spec.matrix.org/latest/client-server-api/#mspacechild
45use ruma_common::{MilliSecondsSinceUnixEpoch, OwnedRoomId, OwnedServerName, OwnedUserId};
6use ruma_macros::{Event, EventContent};
7use serde::{Deserialize, Serialize};
89/// The content of an `m.space.child` event.
10///
11/// The admins of a space can advertise rooms and subspaces for their space by setting
12/// `m.space.child` state events.
13///
14/// The `state_key` is the ID of a child room or space, and the content must contain a `via` key
15/// which gives a list of candidate servers that can be used to join the room.
16#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
17#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
18#[ruma_event(type = "m.space.child", kind = State, state_key_type = OwnedRoomId)]
19pub struct SpaceChildEventContent {
20/// List of candidate servers that can be used to join the room.
21pub via: Vec<OwnedServerName>,
2223/// Provide a default ordering of siblings in the room list.
24 ///
25 /// Rooms are sorted based on a lexicographic ordering of the Unicode codepoints of the
26 /// characters in `order` values. Rooms with no `order` come last, in ascending numeric order
27 /// of the origin_server_ts of their m.room.create events, or ascending lexicographic order of
28 /// their room_ids in case of equal `origin_server_ts`. `order`s which are not strings, or do
29 /// not consist solely of ascii characters in the range `\x20` (space) to `\x7E` (`~`), or
30 /// consist of more than 50 characters, are forbidden and the field should be ignored if
31 /// received.
32#[serde(skip_serializing_if = "Option::is_none")]
33pub order: Option<String>,
3435/// Space admins can mark particular children of a space as "suggested".
36 ///
37 /// This mainly serves as a hint to clients that that they can be displayed differently, for
38 /// example by showing them eagerly in the room list. A child which is missing the `suggested`
39 /// property is treated identically to a child with `"suggested": false`. A suggested child may
40 /// be a room or a subspace.
41 ///
42 /// Defaults to `false`.
43#[serde(default, skip_serializing_if = "ruma_common::serde::is_default")]
44pub suggested: bool,
45}
4647impl SpaceChildEventContent {
48/// Creates a new `SpaceChildEventContent` with the given routing servers.
49pub fn new(via: Vec<OwnedServerName>) -> Self {
50Self { via, order: None, suggested: false }
51 }
52}
5354/// An `m.space.child` event represented as a Stripped State Event with an added `origin_server_ts`
55/// key.
56#[derive(Clone, Debug, Event)]
57#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
58pub struct HierarchySpaceChildEvent {
59/// The content of the space child event.
60pub content: SpaceChildEventContent,
6162/// The fully-qualified ID of the user who sent this event.
63pub sender: OwnedUserId,
6465/// The room ID of the child.
66pub state_key: OwnedRoomId,
6768/// Timestamp in milliseconds on originating homeserver when this event was sent.
69pub origin_server_ts: MilliSecondsSinceUnixEpoch,
70}
7172#[cfg(test)]
73mod tests {
74use js_int::uint;
75use ruma_common::{server_name, MilliSecondsSinceUnixEpoch};
76use serde_json::{from_value as from_json_value, json, to_value as to_json_value};
7778use super::{HierarchySpaceChildEvent, SpaceChildEventContent};
7980#[test]
81fn space_child_serialization() {
82let content = SpaceChildEventContent {
83 via: vec![server_name!("example.com").to_owned()],
84 order: Some("uwu".to_owned()),
85 suggested: false,
86 };
8788let json = json!({
89"via": ["example.com"],
90"order": "uwu",
91 });
9293assert_eq!(to_json_value(&content).unwrap(), json);
94 }
9596#[test]
97fn space_child_empty_serialization() {
98let content = SpaceChildEventContent { via: vec![], order: None, suggested: false };
99100let json = json!({ "via": [] });
101102assert_eq!(to_json_value(&content).unwrap(), json);
103 }
104105#[test]
106fn hierarchy_space_child_deserialization() {
107let json = json!({
108"content": {
109"via": [
110"example.org"
111]
112 },
113"origin_server_ts": 1_629_413_349,
114"sender": "@alice:example.org",
115"state_key": "!a:example.org",
116"type": "m.space.child"
117});
118119let ev = from_json_value::<HierarchySpaceChildEvent>(json).unwrap();
120assert_eq!(ev.origin_server_ts, MilliSecondsSinceUnixEpoch(uint!(1_629_413_349)));
121assert_eq!(ev.sender, "@alice:example.org");
122assert_eq!(ev.state_key, "!a:example.org");
123assert_eq!(ev.content.via, ["example.org"]);
124assert_eq!(ev.content.order, None);
125assert!(!ev.content.suggested);
126 }
127}