ruma_identity_service_api/association/email/
validate_email_by_end_user.rs

1//! `GET /_matrix/identity/*/validate/email/submitToken`
2//!
3//! Validate ownership of an email ID by the end-user, after creation of a session.
4
5pub mod v2 {
6    //! `/v2/` ([spec])
7    //!
8    //! [spec]: https://spec.matrix.org/latest/identity-service-api/#get_matrixidentityv2validateemailsubmittoken
9
10    use ruma_common::{
11        api::{request, response, Metadata},
12        metadata, OwnedClientSecret, OwnedSessionId,
13    };
14
15    const METADATA: Metadata = metadata! {
16        method: GET,
17        rate_limited: false,
18        authentication: AccessToken,
19        history: {
20            1.0 => "/_matrix/identity/v2/validate/email/submitToken",
21        }
22    };
23
24    /// Request type for the `validate_email_by_end_user` endpoint.
25    #[request]
26    pub struct Request {
27        /// The session ID, generated by the `requestToken` call.
28        #[ruma_api(query)]
29        pub sid: OwnedSessionId,
30
31        /// The client secret that was supplied to the `requestToken` call.
32        #[ruma_api(query)]
33        pub client_secret: OwnedClientSecret,
34
35        /// The token generated by the `requestToken` call and emailed to the user.
36        #[ruma_api(query)]
37        pub token: String,
38    }
39
40    /// Response type for the `validate_email_by_end_user` endpoint.
41    #[response]
42    #[derive(Default)]
43    pub struct Response {}
44
45    impl Request {
46        /// Create a new `Request` with the given session ID, client secret and token.
47        pub fn new(sid: OwnedSessionId, client_secret: OwnedClientSecret, token: String) -> Self {
48            Self { sid, client_secret, token }
49        }
50    }
51
52    impl Response {
53        /// Create a new empty `Response`.
54        pub fn new() -> Self {
55            Self {}
56        }
57    }
58}