Skip to main content

HttpRequest

Struct HttpRequest 

Source
pub struct HttpRequest {
    pub query: Vec<(String, String)>,
    pub body: Vec<(String, String)>,
    pub octet_string: Option<String>,
}
Expand description

Decoded HTTP request inputs for a binding.

Fields§

§query: Vec<(String, String)>

URL-decoded query parameters (HTTP-Redirect).

§body: Vec<(String, String)>

Form body parameters (HTTP-POST / SimpleSign).

§octet_string: Option<String>

Signed octet string for detached-signature verification.

Implementations§

Source§

impl HttpRequest

Source

pub fn redirect(query: Vec<(String, String)>) -> Self

HTTP-Redirect request from query pairs.

Source

pub fn post(body: Vec<(String, String)>) -> Self

HTTP-POST/SimpleSign request from body pairs.

Examples found in repository?
examples/raw_compat.rs (line 62)
12fn main() -> Result<(), Box<dyn std::error::Error>> {
13    use saml_rs::constants::signature_algorithm::RSA_SHA256;
14    use saml_rs::raw::metadata::{Endpoint, IdpMetadataConfig, SpMetadataConfig};
15    use saml_rs::raw::{
16        Binding, EntitySetting, HttpRequest, IdentityProvider, LoginResponseOptions,
17        ServiceProvider, User,
18    };
19
20    let privkey = include_str!("../tests/fixtures/key/sp_privkey.pem");
21    let cert = include_str!("../tests/fixtures/key/sp_signing_cert.cer");
22    let signing = || {
23        let mut setting = EntitySetting::default();
24        setting.private_key = Some(privkey.into());
25        setting.signing_cert = Some(cert.into());
26        setting.request_signature_algorithm = RSA_SHA256.into();
27        setting
28    };
29
30    let idp = IdentityProvider::from_config(
31        &IdpMetadataConfig {
32            entity_id: "https://idp.example.com/metadata".into(),
33            signing_certs: vec![cert.into()],
34            want_authn_requests_signed: true,
35            single_sign_on_service: vec![Endpoint::new(
36                Binding::Post,
37                "https://idp.example.com/sso",
38            )],
39            ..Default::default()
40        },
41        signing(),
42    )?;
43    let sp = ServiceProvider::from_config(
44        &SpMetadataConfig {
45            entity_id: "https://sp.example.com/metadata".into(),
46            authn_requests_signed: true,
47            want_assertions_signed: true,
48            signing_certs: vec![cert.into()],
49            assertion_consumer_service: vec![Endpoint::new(
50                Binding::Post,
51                "https://sp.example.com/acs",
52            )],
53            ..Default::default()
54        },
55        signing(),
56    )?;
57
58    let request = sp.create_login_request(&idp, Binding::Post, None)?;
59    let parsed = idp.parse_login_request(
60        &sp,
61        Binding::Post,
62        &HttpRequest::post(vec![("SAMLRequest".into(), request.context.clone())]),
63    )?;
64    let response = idp.create_login_response(
65        &sp,
66        Binding::Post,
67        &User::new("alice@example.com"),
68        &LoginResponseOptions {
69            in_response_to: parsed.extract.get_str("request.id"),
70            ..Default::default()
71        },
72    )?;
73    let result = sp.parse_login_response_with_request_id(
74        &idp,
75        Binding::Post,
76        &HttpRequest::post(vec![("SAMLResponse".into(), response.context)]),
77        &request.id,
78    )?;
79    println!(
80        "raw compatibility authenticated = {:?}",
81        result.extract.get_str("nameID")
82    );
83    Ok(())
84}

Trait Implementations§

Source§

impl Clone for HttpRequest

Source§

fn clone(&self) -> HttpRequest

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for HttpRequest

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for HttpRequest

Source§

fn default() -> HttpRequest

Returns the “default value” for a type. Read more
Source§

impl TryFrom<BrowserInput<AuthnRequest>> for HttpRequest

Source§

type Error = SamlError

The type returned in the event of a conversion error.
Source§

fn try_from(value: BrowserInput<AuthnRequest>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<BrowserInput<LogoutRequest>> for HttpRequest

Source§

type Error = SamlError

The type returned in the event of a conversion error.
Source§

fn try_from(value: BrowserInput<LogoutRequest>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<BrowserInput<LogoutResponse>> for HttpRequest

Source§

type Error = SamlError

The type returned in the event of a conversion error.
Source§

fn try_from(value: BrowserInput<LogoutResponse>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<BrowserInput<SsoResponse>> for HttpRequest

Source§

type Error = SamlError

The type returned in the event of a conversion error.
Source§

fn try_from(value: BrowserInput<SsoResponse>) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V