little-hesinde/rusty-library/src/handlers/series_single.rs

42 lines
983 B
Rust
Raw Normal View History

2024-05-06 14:25:15 +00:00
use std::sync::Arc;
use poem::{
error::InternalServerError,
handler,
web::{Data, Html, Path},
};
use tera::Context;
use crate::{
2024-05-09 06:39:46 +00:00
app_state::AppState, data::book::Book, handlers::error::HandlerError, templates::TEMPLATES,
2024-05-06 14:25:15 +00:00
};
#[handler]
pub async fn handler(
id: Path<u64>,
state: Data<&Arc<AppState>>,
) -> Result<Html<String>, poem::Error> {
2024-05-09 06:39:46 +00:00
let series = state
.calibre
.scalar_series(*id)
.map_err(HandlerError::DataError)?;
let books = state
.calibre
.series_books(*id)
.map_err(HandlerError::DataError)?;
2024-05-06 14:25:15 +00:00
let books = books
.iter()
.filter_map(|x| Book::full_book(x, &state))
.collect::<Vec<Book>>();
let mut context = Context::new();
context.insert("title", &series.name);
context.insert("nav", "series");
2024-05-06 14:25:15 +00:00
context.insert("books", &books);
TEMPLATES
.render("book_list", &context)
.map_err(InternalServerError)
.map(Html)
}