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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
use std::{borrow::Cow, collections::BTreeMap};
use maplit::btreemap;
use ruma_common::{serde::StringEnum, RoomVersionId};
use serde::{Deserialize, Serialize};
use serde_json::{from_value as from_json_value, to_value as to_json_value, Value as JsonValue};
use self::iter::{CapabilitiesIter, CapabilityRef};
use crate::PrivOwnedStr;
pub mod iter;
pub mod v3;
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct Capabilities {
#[serde(
rename = "m.change_password",
default,
skip_serializing_if = "ChangePasswordCapability::is_default"
)]
pub change_password: ChangePasswordCapability,
#[serde(
rename = "m.room_versions",
default,
skip_serializing_if = "RoomVersionsCapability::is_default"
)]
pub room_versions: RoomVersionsCapability,
#[serde(
rename = "m.set_displayname",
default,
skip_serializing_if = "SetDisplayNameCapability::is_default"
)]
pub set_displayname: SetDisplayNameCapability,
#[serde(
rename = "m.set_avatar_url",
default,
skip_serializing_if = "SetAvatarUrlCapability::is_default"
)]
pub set_avatar_url: SetAvatarUrlCapability,
#[serde(
rename = "m.3pid_changes",
default,
skip_serializing_if = "ThirdPartyIdChangesCapability::is_default"
)]
pub thirdparty_id_changes: ThirdPartyIdChangesCapability,
#[serde(flatten)]
custom_capabilities: BTreeMap<String, JsonValue>,
}
impl Capabilities {
pub fn new() -> Self {
Default::default()
}
pub fn get(&self, capability: &str) -> Option<Cow<'_, JsonValue>> {
fn serialize<T: Serialize>(cap: &T) -> JsonValue {
to_json_value(cap).expect("capability serialization to succeed")
}
match capability {
"m.change_password" => Some(Cow::Owned(serialize(&self.change_password))),
"m.room_versions" => Some(Cow::Owned(serialize(&self.room_versions))),
"m.set_displayname" => Some(Cow::Owned(serialize(&self.set_displayname))),
"m.set_avatar_url" => Some(Cow::Owned(serialize(&self.set_avatar_url))),
"m.3pid_changes" => Some(Cow::Owned(serialize(&self.thirdparty_id_changes))),
_ => self.custom_capabilities.get(capability).map(Cow::Borrowed),
}
}
pub fn set(&mut self, capability: &str, value: JsonValue) -> serde_json::Result<()> {
match capability {
"m.change_password" => self.change_password = from_json_value(value)?,
"m.room_versions" => self.room_versions = from_json_value(value)?,
"m.set_displayname" => self.set_displayname = from_json_value(value)?,
"m.set_avatar_url" => self.set_avatar_url = from_json_value(value)?,
"m.3pid_changes" => self.thirdparty_id_changes = from_json_value(value)?,
_ => {
self.custom_capabilities.insert(capability.to_owned(), value);
}
}
Ok(())
}
pub fn iter(&self) -> CapabilitiesIter<'_> {
CapabilitiesIter::new(self)
}
}
impl<'a> IntoIterator for &'a Capabilities {
type Item = CapabilityRef<'a>;
type IntoIter = CapabilitiesIter<'a>;
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct ChangePasswordCapability {
pub enabled: bool,
}
impl ChangePasswordCapability {
pub fn new(enabled: bool) -> Self {
Self { enabled }
}
pub fn is_default(&self) -> bool {
self.enabled
}
}
impl Default for ChangePasswordCapability {
fn default() -> Self {
Self { enabled: true }
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct RoomVersionsCapability {
pub default: RoomVersionId,
pub available: BTreeMap<RoomVersionId, RoomVersionStability>,
}
impl RoomVersionsCapability {
pub fn new(
default: RoomVersionId,
available: BTreeMap<RoomVersionId, RoomVersionStability>,
) -> Self {
Self { default, available }
}
pub fn is_default(&self) -> bool {
self.default == RoomVersionId::V1
&& self.available.len() == 1
&& self
.available
.get(&RoomVersionId::V1)
.map(|stability| *stability == RoomVersionStability::Stable)
.unwrap_or(false)
}
}
impl Default for RoomVersionsCapability {
fn default() -> Self {
Self {
default: RoomVersionId::V1,
available: btreemap! { RoomVersionId::V1 => RoomVersionStability::Stable },
}
}
}
#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/src/doc/string_enum.md"))]
#[derive(Clone, Debug, PartialEq, Eq, StringEnum)]
#[ruma_enum(rename_all = "lowercase")]
#[non_exhaustive]
pub enum RoomVersionStability {
Stable,
Unstable,
#[doc(hidden)]
_Custom(PrivOwnedStr),
}
impl RoomVersionStability {
pub fn as_str(&self) -> &str {
self.as_ref()
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct SetDisplayNameCapability {
pub enabled: bool,
}
impl SetDisplayNameCapability {
pub fn new(enabled: bool) -> Self {
Self { enabled }
}
pub fn is_default(&self) -> bool {
self.enabled
}
}
impl Default for SetDisplayNameCapability {
fn default() -> Self {
Self { enabled: true }
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct SetAvatarUrlCapability {
pub enabled: bool,
}
impl SetAvatarUrlCapability {
pub fn new(enabled: bool) -> Self {
Self { enabled }
}
pub fn is_default(&self) -> bool {
self.enabled
}
}
impl Default for SetAvatarUrlCapability {
fn default() -> Self {
Self { enabled: true }
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct ThirdPartyIdChangesCapability {
pub enabled: bool,
}
impl ThirdPartyIdChangesCapability {
pub fn new(enabled: bool) -> Self {
Self { enabled }
}
pub fn is_default(&self) -> bool {
self.enabled
}
}
impl Default for ThirdPartyIdChangesCapability {
fn default() -> Self {
Self { enabled: true }
}
}
#[cfg(test)]
mod tests {
use std::borrow::Cow;
use serde_json::json;
use super::Capabilities;
#[test]
fn capabilities_iter() -> serde_json::Result<()> {
let mut caps = Capabilities::new();
let custom_cap = json!({
"key": "value",
});
caps.set("m.some_random_capability", custom_cap)?;
let mut caps_iter = caps.iter();
let iter_res = caps_iter.next().unwrap();
assert_eq!(iter_res.name(), "m.change_password");
assert_eq!(iter_res.value(), Cow::Borrowed(&json!({ "enabled": true })));
let iter_res = caps_iter.next().unwrap();
assert_eq!(iter_res.name(), "m.room_versions");
assert_eq!(
iter_res.value(),
Cow::Borrowed(&json!({ "available": { "1": "stable" },"default" :"1" }))
);
let iter_res = caps_iter.next().unwrap();
assert_eq!(iter_res.name(), "m.set_displayname");
assert_eq!(iter_res.value(), Cow::Borrowed(&json!({ "enabled": true })));
let iter_res = caps_iter.next().unwrap();
assert_eq!(iter_res.name(), "m.set_avatar_url");
assert_eq!(iter_res.value(), Cow::Borrowed(&json!({ "enabled": true })));
let iter_res = caps_iter.next().unwrap();
assert_eq!(iter_res.name(), "m.3pid_changes");
assert_eq!(iter_res.value(), Cow::Borrowed(&json!({ "enabled": true })));
let iter_res = caps_iter.next().unwrap();
assert_eq!(iter_res.name(), "m.some_random_capability");
assert_eq!(iter_res.value(), Cow::Borrowed(&json!({ "key": "value" })));
assert!(caps_iter.next().is_none());
Ok(())
}
}