imag/libimaglink/src/external.rs

219 lines
7.9 KiB
Rust
Raw Normal View History

2016-04-08 21:35:04 +00:00
/// External linking is a complex implementation to be able to serve a clean and easy-to-use
/// interface.
///
/// Internally, there are no such things as "external links" (plural). Each Entry in the store can
/// only have _one_ external link.
///
/// This library does the following therefor: It allows you to have several external links with one
/// entry, which are internally one file in the store for each link, linked with "internal
/// linking".
///
/// This helps us greatly with deduplication of URLs.
///
use std::convert::Into;
2016-04-08 21:35:04 +00:00
use std::ops::Deref;
2016-04-09 13:49:50 +00:00
use std::ops::DerefMut;
use std::collections::BTreeMap;
use libimagstore::store::Entry;
2016-02-03 14:47:14 +00:00
use libimagstore::store::EntryHeader;
2016-04-08 21:35:04 +00:00
use libimagstore::store::FileLockEntry;
use libimagstore::store::Store;
use libimagstore::storeid::StoreId;
2016-04-09 13:49:50 +00:00
use libimagstore::storeid::IntoStoreId;
2016-02-03 14:47:14 +00:00
2016-04-08 21:35:04 +00:00
use error::LinkError as LE;
use error::LinkErrorKind as LEK;
2016-02-03 14:47:14 +00:00
use result::Result;
2016-04-08 21:35:04 +00:00
use internal::InternalLinker;
2016-04-09 13:49:50 +00:00
use module_path::ModuleEntryPath;
2016-02-03 14:47:14 +00:00
2016-02-03 18:59:22 +00:00
use toml::Value;
use toml::Table;
2016-02-23 10:50:42 +00:00
use url::Url;
2016-04-09 13:49:50 +00:00
use sodiumoxide::crypto::hash;
use sodiumoxide::crypto::hash::sha512::Digest;
2016-02-03 18:59:22 +00:00
2016-04-08 21:35:04 +00:00
/// "Link" Type, just an abstraction over FileLockEntry to have some convenience internally.
struct Link<'a> {
link: FileLockEntry<'a>
}
2016-04-08 21:35:04 +00:00
impl<'a> Link<'a> {
2016-04-08 21:35:04 +00:00
pub fn new(fle: FileLockEntry<'a>) -> Link<'a> {
Link { link: fle }
}
2016-04-08 21:35:04 +00:00
/// For interal use only. Load an Link from a store id, if this is actually a Link
fn retrieve(store: &'a Store, id: StoreId) -> Result<Option<Link<'a>>> {
store.retrieve(id)
.map(|fle| {
if let Some(_) = Link::get_link_uri_from_filelockentry(&fle) {
Some(Link {
link: fle
})
} else {
None
}
})
.map_err(|e| LE::new(LEK::StoreReadError, Some(Box::new(e))))
}
2016-04-08 21:35:04 +00:00
/// Get a link Url object from a FileLockEntry, ignore errors.
fn get_link_uri_from_filelockentry(file: &FileLockEntry<'a>) -> Option<Url> {
file.deref()
.get_header()
.read("imag.content.uri")
.ok()
.and_then(|opt| {
match opt {
Some(Value::String(s)) => Url::parse(&s[..]).ok(),
_ => None
}
})
}
2016-04-08 21:35:04 +00:00
pub fn get_url(&self) -> Result<Option<Url>> {
let opt = self.link
.deref()
.get_header()
.read("imag.content.uri");
match opt {
Ok(Some(Value::String(s))) => {
Url::parse(&s[..])
.map(|s| Some(s))
.map_err(|e| LE::new(LEK::EntryHeaderReadError, Some(Box::new(e))))
},
Ok(None) => Ok(None),
_ => Err(LE::new(LEK::EntryHeaderReadError, None))
}
}
}
2016-04-08 21:35:04 +00:00
pub trait ExternalLinker : InternalLinker {
2016-04-08 21:35:04 +00:00
/// Get the external links from the implementor object
2016-04-09 13:15:13 +00:00
fn get_external_links(&self, store: &Store) -> Result<Vec<Url>>;
2016-04-08 21:35:04 +00:00
/// Set the external links for the implementor object
2016-04-09 13:49:50 +00:00
fn set_external_links(&mut self, store: &Store, links: Vec<Url>) -> Result<()>;
2016-04-08 21:35:04 +00:00
/// Add an external link to the implementor object
fn add_external_link(&mut self, link: Url) -> Result<()>;
2016-02-03 18:59:22 +00:00
2016-04-08 21:35:04 +00:00
/// Remove an external link from the implementor object
fn remove_external_link(&mut self, link: Url) -> Result<()>;
2016-02-03 18:59:22 +00:00
2016-02-03 14:47:14 +00:00
}
2016-04-09 13:15:13 +00:00
/// Check whether the StoreId starts with `/link/external/`
fn is_link_store_id(id: &StoreId) -> bool {
id.starts_with("/link/external/")
}
fn get_external_link_from_file(entry: &FileLockEntry) -> Result<Url> {
Link::get_link_uri_from_filelockentry(entry) // TODO: Do not hide error by using this function
.ok_or(LE::new(LEK::StoreReadError, None))
}
2016-04-08 21:35:04 +00:00
/// Implement ExternalLinker for Entry, hiding the fact that there is no such thing as an external
/// link in an entry, but internal links to other entries which serve as external links, as one
/// entry in the store can only have one external link.
impl ExternalLinker for Entry {
2016-02-07 03:40:43 +00:00
2016-04-08 21:35:04 +00:00
/// Get the external links from the implementor object
2016-04-09 13:15:13 +00:00
fn get_external_links(&self, store: &Store) -> Result<Vec<Url>> {
2016-04-08 21:35:04 +00:00
// Iterate through all internal links and filter for FileLockEntries which live in
// /link/external/<SHA> -> load these files and get the external link from their headers,
// put them into the return vector.
2016-04-09 13:15:13 +00:00
self.get_internal_links()
.map(|vect| {
vect.into_iter()
.filter(is_link_store_id)
.map(|id| {
match store.retrieve(id) {
Ok(f) => get_external_link_from_file(&f),
Err(e) => Err(LE::new(LEK::StoreReadError, Some(Box::new(e)))),
}
})
.filter_map(|x| x.ok()) // TODO: Do not ignore error here
.collect()
})
.map_err(|e| LE::new(LEK::StoreReadError, Some(Box::new(e))))
2016-02-07 03:40:43 +00:00
}
2016-04-08 21:35:04 +00:00
/// Set the external links for the implementor object
2016-04-09 13:49:50 +00:00
fn set_external_links(&mut self, store: &Store, links: Vec<Url>) -> Result<()> {
2016-04-08 21:35:04 +00:00
// Take all the links, generate a SHA sum out of each one, filter out the already existing
// store entries and store the other URIs in the header of one FileLockEntry each, in
// the path /link/external/<SHA of the URL>
2016-04-09 13:49:50 +00:00
/// Convert a hash::sha512::Digest from sodiumoxide into a StoreId
fn hash_to_storeid(d: Digest) -> StoreId {
let hash = &d[..];
let v = Vec::from(hash);
let s = String::from_utf8(v).unwrap(); // TODO: Uncaught unwrap()
ModuleEntryPath::new(format!("external/{}", s)).into_storeid()
}
for link in links { // for all links
let hash = hash::hash(link.serialize().as_bytes());
let file_id = hash_to_storeid(hash);
let mut file = {
if let Ok(mut file) = store.retrieve(file_id.clone()) { // retrieve the file from the store
file
} else { // or
let res = store.create(file_id) // create it
.and_then(|mut file| {
{
let mut hdr = file.deref_mut().get_header_mut();
// Write the URI into the header
match hdr.set("imag.content", Value::Table(BTreeMap::new())) {
Ok(_) => {
let v = Value::String(link.serialize());
hdr.set("imag.content.uri", v);
Ok(())
},
Err(e) => Err(e),
}
}.map(|_| file)
})
.map_err(|e| LE::new(LEK::StoreWriteError, Some(Box::new(e))));
// And if that fails we can error
if let Err(e) = res {
return Err(e);
}
res.unwrap()
}
};
// then add an internal link to the new file or return an error if this fails
if let Err(e) = self.add_internal_link(file.deref_mut()) {
return Err(LE::new(LEK::StoreWriteError, Some(Box::new(e))));
}
}
Ok(())
2016-02-07 03:40:43 +00:00
}
2016-02-15 12:22:10 +00:00
2016-04-08 21:35:04 +00:00
/// Add an external link to the implementor object
fn add_external_link(&mut self, link: Url) -> Result<()> {
// get external links, add this one, save them
unimplemented!()
}
2016-04-08 21:35:04 +00:00
/// Remove an external link from the implementor object
fn remove_external_link(&mut self, link: Url) -> Result<()> {
// get external links, remove this one, save them
unimplemented!()
}
}
2016-04-08 21:35:04 +00:00