1//! `POST /_matrix/client/*/keys/query`
2//!
3//! Returns the current devices and identity keys for the given users.
45pub mod v3 {
6//! `/v3/` ([spec])
7 //!
8 //! [spec]: https://spec.matrix.org/latest/client-server-api/#post_matrixclientv3keysquery
910use std::{collections::BTreeMap, time::Duration};
1112use ruma_common::{
13 api::{request, response, Metadata},
14 encryption::{CrossSigningKey, DeviceKeys},
15 metadata,
16 serde::Raw,
17 OwnedDeviceId, OwnedUserId,
18 };
19use serde_json::Value as JsonValue;
2021const METADATA: Metadata = metadata! {
22 method: POST,
23 rate_limited: false,
24 authentication: AccessToken,
25 history: {
261.0 => "/_matrix/client/r0/keys/query",
271.1 => "/_matrix/client/v3/keys/query",
28 }
29 };
3031/// Request type for the `get_keys` endpoint.
32#[request(error = crate::Error)]
33 #[derive(Default)]
34pub struct Request {
35/// The time (in milliseconds) to wait when downloading keys from remote servers.
36 ///
37 /// 10 seconds is the recommended default.
38#[serde(
39 with = "ruma_common::serde::duration::opt_ms",
40 default,
41 skip_serializing_if = "Option::is_none"
42)]
43pub timeout: Option<Duration>,
4445/// The keys to be downloaded.
46 ///
47 /// An empty list indicates all devices for the corresponding user.
48pub device_keys: BTreeMap<OwnedUserId, Vec<OwnedDeviceId>>,
49 }
5051/// Response type for the `get_keys` endpoint.
52#[response(error = crate::Error)]
53 #[derive(Default)]
54pub struct Response {
55/// If any remote homeservers could not be reached, they are recorded here.
56 ///
57 /// The names of the properties are the names of the unreachable servers.
58#[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
59pub failures: BTreeMap<String, JsonValue>,
6061/// Information on the queried devices.
62#[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
63pub device_keys: BTreeMap<OwnedUserId, BTreeMap<OwnedDeviceId, Raw<DeviceKeys>>>,
6465/// Information on the master cross-signing keys of the queried users.
66#[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
67pub master_keys: BTreeMap<OwnedUserId, Raw<CrossSigningKey>>,
6869/// Information on the self-signing keys of the queried users.
70#[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
71pub self_signing_keys: BTreeMap<OwnedUserId, Raw<CrossSigningKey>>,
7273/// Information on the user-signing keys of the queried users.
74#[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
75pub user_signing_keys: BTreeMap<OwnedUserId, Raw<CrossSigningKey>>,
76 }
7778impl Request {
79/// Creates an empty `Request`.
80pub fn new() -> Self {
81 Default::default()
82 }
83 }
8485impl Response {
86/// Creates an empty `Response`.
87pub fn new() -> Self {
88 Default::default()
89 }
90 }
91}