ruma_federation_api/keys/
claim_keys.rs
1pub mod v1 {
6 use std::collections::BTreeMap;
11
12 use ruma_common::{
13 api::{request, response, Metadata},
14 encryption::OneTimeKey,
15 metadata,
16 serde::Raw,
17 OneTimeKeyAlgorithm, OwnedDeviceId, OwnedOneTimeKeyId, OwnedUserId,
18 };
19
20 const METADATA: Metadata = metadata! {
21 method: POST,
22 rate_limited: false,
23 authentication: ServerSignatures,
24 history: {
25 1.0 => "/_matrix/federation/v1/user/keys/claim",
26 }
27 };
28
29 #[request]
31 pub struct Request {
32 pub one_time_keys: OneTimeKeyClaims,
34 }
35
36 #[response]
38 pub struct Response {
39 pub one_time_keys: OneTimeKeys,
41 }
42
43 impl Request {
44 pub fn new(one_time_keys: OneTimeKeyClaims) -> Self {
46 Self { one_time_keys }
47 }
48 }
49
50 impl Response {
51 pub fn new(one_time_keys: OneTimeKeys) -> Self {
53 Self { one_time_keys }
54 }
55 }
56
57 pub type OneTimeKeyClaims = BTreeMap<OwnedUserId, BTreeMap<OwnedDeviceId, OneTimeKeyAlgorithm>>;
59
60 pub type OneTimeKeys = BTreeMap<
62 OwnedUserId,
63 BTreeMap<OwnedDeviceId, BTreeMap<OwnedOneTimeKeyId, Raw<OneTimeKey>>>,
64 >;
65}