1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
//! `POST /_matrix/client/*/account/3pid/email/requestToken`
//!
//! Request a 3PID management token with a 3rd party email.
pub mod v3 {
//! `/v3/` ([spec])
//!
//! [spec]: https://spec.matrix.org/latest/client-server-api/#post_matrixclientv3account3pidemailrequesttoken
use js_int::UInt;
use ruma_common::{
api::{request, response, Metadata},
metadata, OwnedClientSecret, OwnedSessionId,
};
use crate::account::IdentityServerInfo;
const METADATA: Metadata = metadata! {
method: POST,
rate_limited: false,
authentication: None,
history: {
1.0 => "/_matrix/client/r0/account/3pid/email/requestToken",
1.1 => "/_matrix/client/v3/account/3pid/email/requestToken",
}
};
/// Request type for the `request_3pid_management_token_via_email` endpoint.
#[request(error = crate::Error)]
pub struct Request {
/// Client-generated secret string used to protect this session.
pub client_secret: OwnedClientSecret,
/// The email address.
pub email: String,
/// Used to distinguish protocol level retries from requests to re-send the email.
pub send_attempt: UInt,
/// Return URL for identity server to redirect the client back to.
#[serde(skip_serializing_if = "Option::is_none")]
pub next_link: Option<String>,
/// Optional identity server hostname and access token.
#[serde(flatten, skip_serializing_if = "Option::is_none")]
#[deprecated = "Since Matrix Client-Server API r0.6.0."]
pub identity_server_info: Option<IdentityServerInfo>,
}
/// Response type for the `request_3pid_management_token_via_email` endpoint.
#[response(error = crate::Error)]
pub struct Response {
/// The session identifier given by the identity server.
pub sid: OwnedSessionId,
/// URL to submit validation token to.
///
/// If omitted, verification happens without client.
///
/// If you activate the `compat-empty-string-null` feature, this field being an empty
/// string in JSON will result in `None` here during deserialization.
#[serde(skip_serializing_if = "Option::is_none")]
#[cfg_attr(
feature = "compat-empty-string-null",
serde(default, deserialize_with = "ruma_common::serde::empty_string_as_none")
)]
pub submit_url: Option<String>,
}
impl Request {
/// Creates a new `Request` with the client secret, email and send-attempt counter.
#[allow(deprecated)]
pub fn new(client_secret: OwnedClientSecret, email: String, send_attempt: UInt) -> Self {
Self { client_secret, email, send_attempt, next_link: None, identity_server_info: None }
}
}
impl Response {
/// Creates a new `Response` with the given session identifier.
pub fn new(sid: OwnedSessionId) -> Self {
Self { sid, submit_url: None }
}
}
}