ruma_client_api/authenticated_media/
get_media_config.rs

1//! `GET /_matrix/client/*/media/config`
2//!
3//! Gets the config for the media repository.
4
5pub mod v1 {
6    //! `/v1/` ([spec])
7    //!
8    //! [spec]: https://spec.matrix.org/latest/client-server-api/#get_matrixclientv1mediaconfig
9
10    use js_int::UInt;
11    use ruma_common::{
12        api::{request, response, Metadata},
13        metadata,
14    };
15
16    const METADATA: Metadata = metadata! {
17        method: GET,
18        rate_limited: true,
19        authentication: AccessToken,
20        history: {
21            unstable => "/_matrix/client/unstable/org.matrix.msc3916/media/config",
22            1.11 => "/_matrix/client/v1/media/config",
23        }
24    };
25
26    /// Request type for the `get_media_config` endpoint.
27    #[request(error = crate::Error)]
28    #[derive(Default)]
29    pub struct Request {}
30
31    /// Response type for the `get_media_config` endpoint.
32    #[response(error = crate::Error)]
33    pub struct Response {
34        /// Maximum size of upload in bytes.
35        #[serde(rename = "m.upload.size")]
36        pub upload_size: UInt,
37    }
38
39    impl Request {
40        /// Creates an empty `Request`.
41        pub fn new() -> Self {
42            Self {}
43        }
44    }
45
46    impl Response {
47        /// Creates a new `Response` with the given maximum upload size.
48        pub fn new(upload_size: UInt) -> Self {
49            Self { upload_size }
50        }
51    }
52}