use axum::extract::{Path, State}; use axum::http::StatusCode; use axum::response::{IntoResponse, Response}; use tower_cookies::Cookies; use crate::application::auth::AuthenticatedUser; use crate::application::errors::map_app_error; use crate::application::routes::api::images::resolve_image_url; use crate::application::routes::render_html; use crate::application::state::AppState; use crate::domain::entity_type::EntityType; use crate::domain::ids::GearId; use crate::presentation::web::templates::{GearDetailTemplate, GearEditTemplate}; use crate::presentation::web::views::GearDetailView; #[tracing::instrument(skip(state, cookies))] pub(crate) async fn gear_detail_page( State(state): State, cookies: Cookies, Path(id): Path, ) -> Result { let is_authenticated = crate::application::routes::is_authenticated(&state, &cookies).await; let gear = state .gear_repo .get(id) .await .map_err(|e| map_app_error(e.into()))?; let image_url = resolve_image_url(&state, EntityType::Gear, i64::from(id)).await; let view = GearDetailView::from(gear); let template = GearDetailTemplate { nav_active: "", is_authenticated, version_info: &crate::VERSION_INFO, base_url: crate::base_url(), edit_url: format!("/gear/{id}/edit"), gear: view, image_url, }; render_html(template).map(IntoResponse::into_response) } #[tracing::instrument(skip(state, _auth_user))] pub(crate) async fn gear_edit_page( State(state): State, _auth_user: AuthenticatedUser, Path(id): Path, ) -> Result { let gear = state .gear_repo .get(id) .await .map_err(|e| map_app_error(e.into()))?; let image_url = resolve_image_url(&state, EntityType::Gear, i64::from(id)).await; let template = GearEditTemplate { nav_active: "", is_authenticated: true, version_info: &crate::VERSION_INFO, id: gear.id.to_string(), category: gear.category.display_label().to_string(), make: gear.make, model: gear.model, image_url, }; render_html(template).map(IntoResponse::into_response) }