ruma_client_api/account/
check_registration_token_validity.rs

1//! `GET /_matrix/client/*/register/m.login.registration_token/validity`
2//!
3//! Checks to see if the given registration token is valid.
4
5pub mod v1 {
6    //! `/v1/` ([spec])
7    //!
8    //! [spec]: https://spec.matrix.org/latest/client-server-api/#get_matrixclientv1registermloginregistration_tokenvalidity
9
10    use ruma_common::{
11        api::{request, response, Metadata},
12        metadata,
13    };
14
15    const METADATA: Metadata = metadata! {
16        method: GET,
17        rate_limited: true,
18        authentication: None,
19        history: {
20            unstable => "/_matrix/client/unstable/org.matrix.msc3231/register/org.matrix.msc3231.login.registration_token/validity",
21            1.2 => "/_matrix/client/v1/register/m.login.registration_token/validity",
22        }
23    };
24
25    /// Request type for the `check_registration_token_validity` endpoint.
26    #[request(error = crate::Error)]
27    pub struct Request {
28        /// The registration token to check the validity of.
29        #[ruma_api(query)]
30        pub token: String,
31    }
32
33    /// Response type for the `check_registration_token_validity` endpoint.
34    #[response(error = crate::Error)]
35    pub struct Response {
36        /// A flag to indicate that the registration token is valid.
37        pub valid: bool,
38    }
39
40    impl Request {
41        /// Creates a new `Request` with the given registration token.
42        pub fn new(token: String) -> Self {
43            Self { token }
44        }
45    }
46
47    impl Response {
48        /// Creates a new `Response` with the given validity flag.
49        pub fn new(valid: bool) -> Self {
50            Self { valid }
51        }
52    }
53}