use axum::{ http::header::{HeaderMap, HeaderName}, middleware, routing::{get, post}, Router, }; use crate::{authorize, AppState, Error, RequestError, TopLevelPage}; mod routes; use routes::*; enum HtmxResponseHeaders { Trigger, PushUrl, } impl From for HeaderName { fn from(val: HtmxResponseHeaders) -> Self { match val { HtmxResponseHeaders::Trigger => HeaderName::from_static("hx-trigger"), HtmxResponseHeaders::PushUrl => HeaderName::from_static("hx-push-url"), } } } enum HtmxRequestHeaders { HtmxRequest, } impl From for HeaderName { fn from(val: HtmxRequestHeaders) -> Self { match val { HtmxRequestHeaders::HtmxRequest => HeaderName::from_static("hx-request"), } } } fn is_htmx(headers: &HeaderMap) -> bool { headers .get::(HtmxRequestHeaders::HtmxRequest.into()) .map(|value| value == "true") .unwrap_or(false) } fn get_referer<'a>(headers: &'a HeaderMap) -> Result<&'a str, Error> { headers .get("referer") .ok_or(Error::Request(RequestError::RefererNotFound))? .to_str() .map_err(|error| { Error::Request(RequestError::RefererInvalid { message: error.to_string(), }) }) } pub fn router(state: AppState) -> Router { Router::new() .route("/favicon.svg", get(icon)) .route("/assets/luggage.svg", get(icon)) .route( "/notfound", get(|| async { Error::Request(RequestError::NotFound { message: "hi".to_string(), }) }), ) .route("/debug", get(debug)) .merge( // thse are routes that require authentication Router::new() .route("/", get(root)) .nest( (&TopLevelPage::Trips.path()).into(), Router::new() .route("/", get(trips).post(trip_create)) .route("/types/", get(trips_types).post(trip_type_create)) .route("/types/:id/edit/name/submit", post(trips_types_edit_name)) .route("/:id/", get(trip)) .route("/:id/comment/submit", post(trip_comment_set)) .route("/:id/categories/:id/select", post(trip_category_select)) .route("/:id/packagelist/", get(trip_packagelist)) .route( "/:id/packagelist/item/:id/pack", post(trip_item_packagelist_set_pack_htmx), ) .route( "/:id/packagelist/item/:id/unpack", post(trip_item_packagelist_set_unpack_htmx), ) .route( "/:id/packagelist/item/:id/ready", post(trip_item_packagelist_set_ready_htmx), ) .route( "/:id/packagelist/item/:id/unready", post(trip_item_packagelist_set_unready_htmx), ) .route("/:id/state/:id", post(trip_state_set)) .route("/:id/total_weight", get(trip_total_weight_htmx)) .route("/:id/type/:id/add", get(trip_type_add)) .route("/:id/type/:id/remove", get(trip_type_remove)) .route("/:id/edit/:attribute/submit", post(trip_edit_attribute)) .route( "/:id/items/:id/pick", get(trip_item_set_pick).post(trip_item_set_pick_htmx), ) .route( "/:id/items/:id/unpick", get(trip_item_set_unpick).post(trip_item_set_unpick_htmx), ) .route( "/:id/items/:id/pack", get(trip_item_set_pack).post(trip_item_set_pack_htmx), ) .route( "/:id/items/:id/unpack", get(trip_item_set_unpack).post(trip_item_set_unpack_htmx), ) .route( "/:id/items/:id/ready", get(trip_item_set_ready).post(trip_item_set_ready_htmx), ) .route( "/:id/items/:id/unready", get(trip_item_set_unready).post(trip_item_set_unready_htmx), ), ) .nest( (&TopLevelPage::Inventory.path()).into(), Router::new() .route("/", get(inventory_inactive)) .route("/categories/:id/select", post(inventory_category_select)) .route("/category/", post(inventory_category_create)) .route("/category/:id/", get(inventory_active)) .route("/item/", post(inventory_item_create)) .route("/item/:id/", get(inventory_item)) .route("/item/:id/cancel", get(inventory_item_cancel)) .route("/item/:id/delete", get(inventory_item_delete)) .route("/item/:id/edit", post(inventory_item_edit)) .route("/item/name/validate", post(inventory_item_validate_name)), ) .layer(middleware::from_fn_with_state(state.clone(), authorize)), ) .fallback(|| async { Error::Request(RequestError::NotFound { message: "no route found".to_string(), }) }) .with_state(state) }