diff options
Diffstat (limited to 'src/setup')
| -rw-r--r-- | src/setup/mod.rs | 2 | ||||
| -rw-r--r-- | src/setup/required.rs | 53 |
2 files changed, 37 insertions, 18 deletions
diff --git a/src/setup/mod.rs b/src/setup/mod.rs index 62972b3..a4b821c 100644 --- a/src/setup/mod.rs +++ b/src/setup/mod.rs @@ -3,4 +3,4 @@ pub mod repo; mod required; mod routes; -pub use self::{required::Layer as Required, routes::router}; +pub use self::{required::Required, routes::router}; diff --git a/src/setup/required.rs b/src/setup/required.rs index 5b7fe5b..2112e4b 100644 --- a/src/setup/required.rs +++ b/src/setup/required.rs @@ -5,34 +5,40 @@ use axum::{ }; use std::pin::Pin; use std::task::{Context, Poll}; -use tower::Service; +use tower::{Layer, Service}; use crate::{app::App, error::Internal}; -const UNAVAILABLE: (StatusCode, &str) = ( - StatusCode::SERVICE_UNAVAILABLE, - "initial setup not completed", -); - #[derive(Clone)] -pub struct Layer<F> { - app: App, - fallback: F, -} +pub struct Required(pub App); -impl Layer<(StatusCode, &'static str)> { - pub fn or_unavailable(app: App) -> Self { - Self::with_fallback(app, UNAVAILABLE) +impl Required { + pub fn with_fallback<F>(self, fallback: F) -> WithFallback<F> { + let Self(app) = self; + WithFallback { app, fallback } } } -impl<F> Layer<F> { - pub fn with_fallback(app: App, fallback: F) -> Self { - Layer { app, fallback } +impl<S> Layer<S> for Required { + type Service = Middleware<S, Unavailable>; + + fn layer(&self, inner: S) -> Self::Service { + let Self(app) = self.clone(); + Middleware { + inner, + app, + fallback: Unavailable, + } } } -impl<S, F> tower::Layer<S> for Layer<F> +#[derive(Clone)] +pub struct WithFallback<F> { + app: App, + fallback: F, +} + +impl<S, F> Layer<S> for WithFallback<F> where Self: Clone, { @@ -86,3 +92,16 @@ where }) } } + +#[derive(Clone)] +pub struct Unavailable; + +impl IntoResponse for Unavailable { + fn into_response(self) -> Response { + ( + StatusCode::SERVICE_UNAVAILABLE, + "initial setup not completed", + ) + .into_response() + } +} |
