ruma_events/
room_key.rs
1use ruma_common::{EventEncryptionAlgorithm, OwnedRoomId};
6use ruma_macros::EventContent;
7use serde::{Deserialize, Serialize};
8
9#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
13#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
14#[ruma_event(type = "m.room_key", kind = ToDevice)]
15pub struct ToDeviceRoomKeyEventContent {
16 pub algorithm: EventEncryptionAlgorithm,
20
21 pub room_id: OwnedRoomId,
23
24 pub session_id: String,
26
27 pub session_key: String,
29
30 #[cfg(feature = "unstable-msc3061")]
34 #[serde(
35 default,
36 rename = "org.matrix.msc3061.shared_history",
37 skip_serializing_if = "ruma_common::serde::is_default"
38 )]
39 pub shared_history: bool,
40}
41
42impl ToDeviceRoomKeyEventContent {
43 pub fn new(
46 algorithm: EventEncryptionAlgorithm,
47 room_id: OwnedRoomId,
48 session_id: String,
49 session_key: String,
50 ) -> Self {
51 Self {
52 algorithm,
53 room_id,
54 session_id,
55 session_key,
56 #[cfg(feature = "unstable-msc3061")]
57 shared_history: false,
58 }
59 }
60}
61
62#[cfg(test)]
63mod tests {
64 use ruma_common::owned_room_id;
65 use serde_json::{json, to_value as to_json_value};
66
67 use super::ToDeviceRoomKeyEventContent;
68 use crate::EventEncryptionAlgorithm;
69
70 #[test]
71 fn serialization() {
72 let content = ToDeviceRoomKeyEventContent {
73 algorithm: EventEncryptionAlgorithm::MegolmV1AesSha2,
74 room_id: owned_room_id!("!testroomid:example.org"),
75 session_id: "SessId".into(),
76 session_key: "SessKey".into(),
77 #[cfg(feature = "unstable-msc3061")]
78 shared_history: true,
79 };
80
81 #[cfg(not(feature = "unstable-msc3061"))]
82 assert_eq!(
83 to_json_value(content).unwrap(),
84 json!({
85 "algorithm": "m.megolm.v1.aes-sha2",
86 "room_id": "!testroomid:example.org",
87 "session_id": "SessId",
88 "session_key": "SessKey",
89 })
90 );
91
92 #[cfg(feature = "unstable-msc3061")]
93 assert_eq!(
94 to_json_value(content).unwrap(),
95 json!({
96 "algorithm": "m.megolm.v1.aes-sha2",
97 "room_id": "!testroomid:example.org",
98 "session_id": "SessId",
99 "session_key": "SessKey",
100 "org.matrix.msc3061.shared_history": true,
101 })
102 );
103 }
104}