cdb/src/db.rs

45 lines
1.1 KiB
Rust
Raw Normal View History

2024-06-22 00:05:22 +00:00
use crate::item::Item;
2024-05-03 16:22:59 +00:00
2024-06-22 00:05:22 +00:00
/// Item database
2024-05-03 16:22:59 +00:00
pub struct ItemDB {
index: mdq::Index,
}
impl ItemDB {
2024-06-22 00:05:22 +00:00
/// Create a new item database using `dir` as the base.
///
/// The directory should contain markdown documents with valid frontmatter to be parsed into `Item`s
2024-05-10 08:56:07 +00:00
pub async fn new(dir: &str) -> Self {
2024-05-03 16:22:59 +00:00
// scan for markdown item entries
let index = mdq::Index::new(dir, true);
for item in &index.documents {
2024-06-22 00:05:22 +00:00
let item = Item::new(item);
2024-07-24 14:38:56 +00:00
log::info!("Adding item {} to DB", item.name);
2024-05-03 16:22:59 +00:00
}
2024-05-10 08:56:07 +00:00
Self { index }
2024-05-03 16:22:59 +00:00
}
/// Retrieves an item by name
pub fn get_item(&self, item: &str) -> Option<Item> {
2024-06-22 00:05:22 +00:00
Some(
2024-05-03 16:22:59 +00:00
self.index
.documents
.iter()
2024-06-22 00:05:22 +00:00
.map(Item::new) // <-- todo : performance?
2024-05-03 16:22:59 +00:00
.find(|x| x.name == item)?,
2024-06-22 00:05:22 +00:00
)
2024-05-03 16:22:59 +00:00
}
/// Get all items
pub fn items(&self) -> Vec<String> {
let mut ret = vec![];
for item in &self.index.documents {
2024-06-22 00:05:22 +00:00
let item = Item::new(item);
2024-05-03 16:22:59 +00:00
ret.push(item.name);
}
ret
}
}