1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
use ruma_macros::EventContent;
use serde::{Deserialize, Serialize};
use crate::{
serde::StringEnum, EventEncryptionAlgorithm, OwnedDeviceId, OwnedRoomId, OwnedTransactionId,
PrivOwnedStr,
};
#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
#[ruma_event(type = "m.room_key_request", kind = ToDevice)]
pub struct ToDeviceRoomKeyRequestEventContent {
pub action: Action,
pub body: Option<RequestedKeyInfo>,
pub requesting_device_id: OwnedDeviceId,
pub request_id: OwnedTransactionId,
}
impl ToDeviceRoomKeyRequestEventContent {
pub fn new(
action: Action,
body: Option<RequestedKeyInfo>,
requesting_device_id: OwnedDeviceId,
request_id: OwnedTransactionId,
) -> Self {
Self { action, body, requesting_device_id, request_id }
}
}
#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/src/doc/string_enum.md"))]
#[derive(Clone, Debug, PartialEq, Eq, StringEnum)]
#[ruma_enum(rename_all = "snake_case")]
#[non_exhaustive]
pub enum Action {
Request,
#[ruma_enum(rename = "request_cancellation")]
CancelRequest,
#[doc(hidden)]
_Custom(PrivOwnedStr),
}
impl Action {
pub fn as_str(&self) -> &str {
self.as_ref()
}
}
#[derive(Clone, Debug, Deserialize, Serialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct RequestedKeyInfo {
pub algorithm: EventEncryptionAlgorithm,
pub room_id: OwnedRoomId,
#[cfg_attr(
feature = "unstable-msc3700",
deprecated = "this field still needs to be sent but should not be used when received"
)]
pub sender_key: String,
pub session_id: String,
}
impl RequestedKeyInfo {
pub fn new(
algorithm: EventEncryptionAlgorithm,
room_id: OwnedRoomId,
sender_key: String,
session_id: String,
) -> Self {
Self { algorithm, room_id, sender_key, session_id }
}
}