From e2bbf451ad2eb6f21f8ec55aafaafa6aa7bd25f4 Mon Sep 17 00:00:00 2001 From: Vika Date: Fri, 22 Jul 2022 06:02:46 +0300 Subject: kittybox-indieauth: axum helpers for responses Some responses need to set Cache-Control and Pragma: no-cache headers according to RFC 6749. --- kittybox-rs/indieauth/src/lib.rs | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) (limited to 'kittybox-rs/indieauth/src/lib.rs') diff --git a/kittybox-rs/indieauth/src/lib.rs b/kittybox-rs/indieauth/src/lib.rs index cb99146..5896ebb 100644 --- a/kittybox-rs/indieauth/src/lib.rs +++ b/kittybox-rs/indieauth/src/lib.rs @@ -85,6 +85,18 @@ pub struct Profile { pub email: Option } +#[cfg(feature = "axum")] +impl axum_core::response::IntoResponse for Profile { + fn into_response(self) -> axum_core::response::Response { + use http::StatusCode; + + (StatusCode::OK, + [("Content-Type", "application/json")], + serde_json::to_vec(&self).unwrap()) + .into_response() + } +} + #[derive(Clone, Debug, PartialEq, Eq, Deserialize, Serialize)] pub struct State(String); impl State { @@ -157,6 +169,21 @@ pub enum GrantResponse { } } +#[cfg(feature = "axum")] +impl axum_core::response::IntoResponse for GrantResponse { + fn into_response(self) -> axum_core::response::Response { + use http::StatusCode; + + (StatusCode::OK, + [("Content-Type", "application/json"), + ("Cache-Control", "no-store"), + ("Pragma", "no-cache") + ], + serde_json::to_vec(&self).unwrap()) + .into_response() + } +} + /// Describes requests that the authorization endpoint might want to handle. /// /// This type mostly exists for ease-of-use with serde. @@ -257,6 +284,19 @@ impl From for Option { } } +#[cfg(feature = "axum")] +impl axum_core::response::IntoResponse for TokenIntrospectionResponse { + fn into_response(self) -> axum_core::response::Response { + use http::StatusCode; + + (StatusCode::OK, + [("Content-Type", "application/json")], + serde_json::to_vec(&self).unwrap()) + .into_response() + } +} + + #[derive(Debug, Serialize, Deserialize)] pub struct TokenRevocationRequest { pub token: String -- cgit 1.4.1