From 65d558727ebc69bacd67719aba1663a665d1e76d Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 12 Mar 2018 14:43:02 +0100 Subject: [PATCH] Change ref creation to use UID from vcard object --- lib/domain/libimagcontact/src/error.rs | 5 +++++ lib/domain/libimagcontact/src/store.rs | 26 +++++++++++++------------- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/lib/domain/libimagcontact/src/error.rs b/lib/domain/libimagcontact/src/error.rs index 45535bde..37ff4c26 100644 --- a/lib/domain/libimagcontact/src/error.rs +++ b/lib/domain/libimagcontact/src/error.rs @@ -49,6 +49,11 @@ error_chain! { display("Entry {:?} not found", sid) } + UidMissing(path: String) { + description("Vcard object has no UID") + display("Vcard at {:?} has no UID", path) + } + } } diff --git a/lib/domain/libimagcontact/src/store.rs b/lib/domain/libimagcontact/src/store.rs index b2336a19..02ac57c2 100644 --- a/lib/domain/libimagcontact/src/store.rs +++ b/lib/domain/libimagcontact/src/store.rs @@ -20,21 +20,19 @@ use std::path::Path; use std::path::PathBuf; use std::result::Result as RResult; -use std::ffi::OsStr; use vobject::parse_component; -use uuid::Uuid; use libimagstore::store::Store; use libimagstore::store::FileLockEntry; use libimagstore::storeid::StoreIdIterator; use libimagentryref::refstore::RefStore; use libimagentryref::refstore::UniqueRefPathGenerator; -use libimagentryref::generators::sha1::Sha1; use libimagentryutil::isa::Is; use contact::IsContact; use error::ContactError as CE; +use error::ContactErrorKind as CEK; use error::Result; use util; @@ -49,17 +47,19 @@ impl UniqueRefPathGenerator for UniqueContactPathGenerator { /// A function which should generate a unique string for a Path fn unique_hash>(path: A) -> RResult { - debug!("Generating unique hash for path: {:?}", path.as_ref()); + use vobject::vcard::Vcard; - if let Some(p) = path.as_ref().file_stem().and_then(OsStr::to_str).map(String::from) { - debug!("Found UUID string: '{}'", p); - Uuid::parse_str(&p) - .map_err(CE::from) - .map(|u| format!("{}", u.hyphenated())) // FIXME I don't know how to do in not-ugly - } else { // else, we sha1 the (complete) content - debug!("Couldn't find UUID string, using SHA1 of contents"); - Sha1::unique_hash(path).map_err(CE::from) - } + debug!("Generating unique hash for path: {:?}", path.as_ref()); + util::read_to_string(path.as_ref()) + .and_then(|s| Vcard::build(&s).map_err(CE::from)) + .and_then(|card| { + card.uid() + .map(|u| u.raw().clone()) + .ok_or_else(|| { + let s = path.as_ref().to_str().unwrap_or("Unknown path"); + CEK::UidMissing(String::from(s)).into() + }) + }) } }