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 85 86 87 88 89 90 91
//! `GET /_matrix/client/*/login/sso/redirect/{idpId}`
//!
//! Get the SSO login identity provider url.
pub mod v3 {
//! `/v3/` ([spec])
//!
//! [spec]: https://spec.matrix.org/latest/client-server-api/#get_matrixclientv3loginssoredirectidpid
use http::header::{LOCATION, SET_COOKIE};
use ruma_common::{
api::{request, response, Metadata},
metadata,
};
const METADATA: Metadata = metadata! {
method: GET,
rate_limited: false,
authentication: None,
history: {
unstable => "/_matrix/client/unstable/org.matrix.msc2858/login/sso/redirect/:idp_id",
1.1 => "/_matrix/client/v3/login/sso/redirect/:idp_id",
}
};
/// Request type for the `sso_login_with_provider` endpoint.
#[request(error = crate::Error)]
pub struct Request {
/// The ID of the provider to use for SSO login.
#[ruma_api(path)]
pub idp_id: String,
/// URL to which the homeserver should return the user after completing
/// authentication with the SSO identity provider.
#[ruma_api(query)]
#[serde(rename = "redirectUrl")]
pub redirect_url: String,
}
/// Response type for the `sso_login_with_provider` endpoint.
#[response(error = crate::Error, status = FOUND)]
pub struct Response {
/// Redirect URL to the SSO identity provider.
#[ruma_api(header = LOCATION)]
pub location: String,
/// Cookie storing state to secure the SSO process.
#[ruma_api(header = SET_COOKIE)]
pub cookie: Option<String>,
}
impl Request {
/// Creates a new `Request` with the given identity provider ID and redirect URL.
pub fn new(idp_id: String, redirect_url: String) -> Self {
Self { idp_id, redirect_url }
}
}
impl Response {
/// Creates a new `Response` with the given SSO URL.
pub fn new(location: String) -> Self {
Self { location, cookie: None }
}
}
#[cfg(all(test, feature = "client"))]
mod tests {
use ruma_common::api::{MatrixVersion, OutgoingRequest as _, SendAccessToken};
use super::Request;
#[test]
fn serialize_sso_login_with_provider_request_uri() {
let req = Request {
idp_id: "provider".to_owned(),
redirect_url: "https://example.com/sso".to_owned(),
}
.try_into_http_request::<Vec<u8>>(
"https://homeserver.tld",
SendAccessToken::None,
&[MatrixVersion::V1_1],
)
.unwrap();
assert_eq!(
req.uri().to_string(),
"https://homeserver.tld/_matrix/client/v3/login/sso/redirect/provider?redirectUrl=https%3A%2F%2Fexample.com%2Fsso"
);
}
}
}