ruma_client_api/keys/
upload_keys.rs
1pub mod v3 {
6 use std::collections::BTreeMap;
11
12 use js_int::UInt;
13 use ruma_common::{
14 api::{request, response, Metadata},
15 encryption::{DeviceKeys, OneTimeKey},
16 metadata,
17 serde::Raw,
18 OneTimeKeyAlgorithm, OwnedOneTimeKeyId,
19 };
20
21 const METADATA: Metadata = metadata! {
22 method: POST,
23 rate_limited: false,
24 authentication: AccessToken,
25 history: {
26 1.0 => "/_matrix/client/r0/keys/upload",
27 1.1 => "/_matrix/client/v3/keys/upload",
28 }
29 };
30
31 #[request(error = crate::Error)]
33 #[derive(Default)]
34 pub struct Request {
35 #[serde(skip_serializing_if = "Option::is_none")]
39 pub device_keys: Option<Raw<DeviceKeys>>,
40
41 #[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
43 pub one_time_keys: BTreeMap<OwnedOneTimeKeyId, Raw<OneTimeKey>>,
44
45 #[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
47 pub fallback_keys: BTreeMap<OwnedOneTimeKeyId, Raw<OneTimeKey>>,
48 }
49
50 #[response(error = crate::Error)]
52 pub struct Response {
53 pub one_time_key_counts: BTreeMap<OneTimeKeyAlgorithm, UInt>,
56 }
57
58 impl Request {
59 pub fn new() -> Self {
61 Default::default()
62 }
63 }
64
65 impl Response {
66 pub fn new(one_time_key_counts: BTreeMap<OneTimeKeyAlgorithm, UInt>) -> Self {
68 Self { one_time_key_counts }
69 }
70 }
71}