Add FromHashMap impl for Thesis

Signed-off-by: trivernis <trivernis@protonmail.com>
main
trivernis 4 years ago
parent 161a87076d
commit aa0b68939b
Signed by: Trivernis
GPG Key ID: DFFFCC2C7A02DB45

@ -81,6 +81,7 @@ impl FromHashMap for BibliographyType {
T_MISC => Some(Box::new(Self::Misc(*Misc::from_hash_map(map)?))),
T_REPOSITORY => Some(Box::new(Self::Repository(*Repository::from_hash_map(map)?))),
T_TECH_REPORT => Some(Box::new(Self::TechReport(*TechReport::from_hash_map(map)?))),
T_THESIS => Some(Box::new(Self::Thesis(*Thesis::from_hash_map(map)?))),
_ => None,
}
}

@ -1,4 +1,8 @@
use crate::utils::date::LocalDate;
use crate::bibliography::keys::{K_ADDRESS, K_AUTHOR, K_DATE, K_SCHOOL, K_TITLE};
use crate::bibliography::FromHashMap;
use crate::utils::date::{parse_date, LocalDate};
use std::collections::hash_map::RandomState;
use std::collections::HashMap;
/// A thesis source entry
#[derive(Clone, Debug)]
@ -22,3 +26,17 @@ impl Thesis {
}
}
}
impl FromHashMap for Thesis {
fn from_hash_map(map: &HashMap<String, String, RandomState>) -> Option<Box<Self>> {
let author = map.get(K_AUTHOR)?;
let title = map.get(K_TITLE)?;
let school = map.get(K_SCHOOL)?;
let date = map.get(K_DATE).and_then(|d| parse_date(d))?;
let mut thesis = Thesis::new(author.clone(), title.clone(), school.clone(), date.clone());
thesis.address = map.get(K_ADDRESS).cloned();
Some(Box::new(thesis))
}
}

@ -21,6 +21,7 @@ pub const K_ORGANIZATION: &str = "organization";
pub const K_CMS: &str = "cms";
pub const K_ACCESSED_AT: &str = "accessed_at";
pub const K_INSTITUTION: &str = "institution";
pub const K_SCHOOL: &str = "school";
pub const T_ARTICLE: &str = "article";
pub const T_BOOK: &str = "book";

@ -155,4 +155,19 @@ mod tests {
let entry = BibliographyEntry::from_hash_map(&map).unwrap();
assert_eq!(entry.bib_type.name(), "tech_report".to_string())
}
#[test]
fn it_creates_thesis_from_hashmaps() {
let mut map: HashMap<String, String> = HashMap::new();
map.insert("key".to_string(), "test_entry".to_string());
map.insert("type".to_string(), "thesis".to_string());
map.insert("author".to_string(), "test".to_string());
map.insert("title".to_string(), "test tech".to_string());
map.insert("school".to_string(), "test".to_string());
map.insert("note".to_string(), "This is a test".to_string());
map.insert("date".to_string(), "02.09.2020".to_string());
let entry = BibliographyEntry::from_hash_map(&map).unwrap();
assert_eq!(entry.bib_type.name(), "thesis".to_string())
}
}

Loading…
Cancel
Save