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

38 lines
1019 B
Rust
Raw Normal View History

2024-05-10 12:25:18 +00:00
//! Handle requests for a single series.
2024-05-06 14:25:15 +00:00
use std::sync::Arc;
use poem::{
handler,
2024-05-09 12:24:45 +00:00
web::{Data, Path},
Response,
2024-05-06 14:25:15 +00:00
};
2024-05-09 12:24:45 +00:00
use crate::{app_state::AppState, data::book::Book, handlers::error::HandlerError, Accept};
2024-05-06 14:25:15 +00:00
2024-05-10 12:25:18 +00:00
/// Handle a request for a series with `id` and decide whether to render to html or OPDS.
2024-05-06 14:25:15 +00:00
#[handler]
pub async fn handler(
id: Path<u64>,
2024-05-09 12:24:45 +00:00
accept: Data<&Accept>,
2024-05-06 14:25:15 +00:00
state: Data<&Arc<AppState>>,
2024-05-09 12:24:45 +00:00
) -> Result<Response, 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>>();
2024-05-09 12:24:45 +00:00
match accept.0 {
Accept::Html => crate::handlers::html::series_single::handler(series, books).await,
Accept::Opds => crate::handlers::opds::series_single::handler(series, books).await,
}
2024-05-06 14:25:15 +00:00
}