little-hesinde/rusty-library/src/data/book.rs

66 lines
2.0 KiB
Rust
Raw Normal View History

2024-05-06 08:40:34 +00:00
use std::{collections::HashMap, path::Path};
2024-05-06 18:54:58 +00:00
use calibre_db::data::{
author::Author as DbAuthor, book::Book as DbBook, series::Series as DbSeries,
};
2024-05-06 07:09:40 +00:00
use serde::Serialize;
2024-05-06 08:40:34 +00:00
use crate::app_state::AppState;
2024-05-06 07:09:40 +00:00
#[derive(Debug, Serialize)]
pub struct Book {
pub id: u64,
pub title: String,
pub sort: String,
pub path: String,
2024-05-06 18:54:58 +00:00
pub author: DbAuthor,
pub series: Option<(DbSeries, f64)>,
2024-05-06 08:40:34 +00:00
pub formats: HashMap<String, String>,
2024-05-06 07:09:40 +00:00
}
impl Book {
pub fn from_db_book(
db_book: &DbBook,
db_series: Option<(DbSeries, f64)>,
2024-05-06 18:54:58 +00:00
author: DbAuthor,
2024-05-06 08:40:34 +00:00
formats: HashMap<String, String>,
2024-05-06 07:09:40 +00:00
) -> Self {
Self {
id: db_book.id,
title: db_book.title.clone(),
sort: db_book.sort.clone(),
path: db_book.path.clone(),
2024-05-06 18:54:58 +00:00
author: author.clone(),
series: db_series.map(|x| (x.0, x.1)),
2024-05-06 08:40:34 +00:00
formats,
2024-05-06 07:09:40 +00:00
}
}
2024-05-06 08:40:34 +00:00
fn formats(book: &DbBook, library_path: &Path) -> HashMap<String, String> {
let book_path = library_path.join(&book.path);
let mut formats = HashMap::new();
for entry in book_path.read_dir().unwrap().flatten() {
if let Some(extension) = entry.path().extension() {
let format = match extension.to_string_lossy().to_string().as_str() {
"pdf" => Some("pdf".to_string()),
"epub" => Some("epub".to_string()),
_ => None,
};
if let Some(format) = format {
formats.insert(format, entry.file_name().to_string_lossy().to_string());
}
}
}
formats
}
pub fn full_book(book: &DbBook, state: &AppState) -> Option<Book> {
let formats = Book::formats(book, &state.config.library_path);
let author = state.calibre.book_author(book.id).ok()?;
let series = state.calibre.book_series(book.id).ok()?;
2024-05-06 18:54:58 +00:00
Some(Book::from_db_book(book, series, author, formats))
2024-05-06 08:40:34 +00:00
}
2024-05-06 07:09:40 +00:00
}