ruma_federation_api/keys/
claim_keys.rs

1//! `POST /_matrix/federation/*/user/keys/claim`
2//!
3//! Claim one-time keys for use in pre-key messages.
4
5pub mod v1 {
6    //! `/v1/` ([spec])
7    //!
8    //! [spec]: https://spec.matrix.org/latest/server-server-api/#post_matrixfederationv1userkeysclaim
9
10    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 type for the `claim_keys` endpoint.
30    #[request]
31    pub struct Request {
32        /// The keys to be claimed.
33        pub one_time_keys: OneTimeKeyClaims,
34    }
35
36    /// Response type for the `claim_keys` endpoint.
37    #[response]
38    pub struct Response {
39        /// One-time keys for the queried devices
40        pub one_time_keys: OneTimeKeys,
41    }
42
43    impl Request {
44        /// Creates a new `Request` with the given one time key claims.
45        pub fn new(one_time_keys: OneTimeKeyClaims) -> Self {
46            Self { one_time_keys }
47        }
48    }
49
50    impl Response {
51        /// Creates a new `Response` with the given one time keys.
52        pub fn new(one_time_keys: OneTimeKeys) -> Self {
53            Self { one_time_keys }
54        }
55    }
56
57    /// A claim for one time keys
58    pub type OneTimeKeyClaims = BTreeMap<OwnedUserId, BTreeMap<OwnedDeviceId, OneTimeKeyAlgorithm>>;
59
60    /// One time keys for use in pre-key messages
61    pub type OneTimeKeys = BTreeMap<
62        OwnedUserId,
63        BTreeMap<OwnedDeviceId, BTreeMap<OwnedOneTimeKeyId, Raw<OneTimeKey>>>,
64    >;
65}