ruma_federation_api/query/
get_custom_information.rs

1//! `GET /_matrix/federation/*/query/{queryType}`
2//!
3//! Performs a single query request on the receiving homeserver. The query arguments are dependent
4//! on which type of query is being made.
5
6pub mod v1 {
7    //! `/v1/` ([spec])
8    //!
9    //! [spec]: https://spec.matrix.org/latest/server-server-api/#get_matrixfederationv1queryquerytype
10
11    use std::collections::BTreeMap;
12
13    use ruma_common::{
14        api::{request, response, Metadata},
15        metadata,
16    };
17    use serde_json::Value as JsonValue;
18
19    const METADATA: Metadata = metadata! {
20        method: GET,
21        rate_limited: false,
22        authentication: AccessToken,
23        history: {
24            1.0 => "/_matrix/federation/v1/query/:query_type",
25        }
26    };
27
28    /// Request type for the `get_custom_information` endpoint.
29    #[request]
30    pub struct Request {
31        /// The type of query to make.
32        #[ruma_api(path)]
33        pub query_type: String,
34
35        /// The query parameters.
36        #[ruma_api(query_all)]
37        pub params: BTreeMap<String, String>,
38    }
39
40    /// Response type for the `get_custom_information` endpoint.
41    #[response]
42    pub struct Response {
43        /// The body of the response.
44        #[ruma_api(body)]
45        pub body: JsonValue,
46    }
47
48    impl Request {
49        /// Creates a new request with the given type and query parameters.
50        pub fn new(query_type: String, params: BTreeMap<String, String>) -> Self {
51            Self { query_type, params }
52        }
53    }
54
55    impl Response {
56        /// Creates a new response with the given body.
57        pub fn new(body: JsonValue) -> Self {
58            Self { body }
59        }
60    }
61}