imag/imag-store/src/update.rs

42 lines
1.3 KiB
Rust
Raw Normal View History

2016-01-28 18:41:09 +00:00
use std::ops::DerefMut;
use std::process::exit;
2016-01-28 18:41:09 +00:00
2016-01-23 15:29:04 +00:00
use libimagrt::runtime::Runtime;
use libimagstore::storeid::build_entry_path;
use libimagutil::trace::trace_error;
use util::build_toml_header;
2016-01-23 15:29:04 +00:00
pub fn update(rt: &Runtime) {
2016-01-28 18:41:09 +00:00
rt.cli()
.subcommand_matches("update")
.map(|scmd| {
scmd.value_of("id")
.map(|id| {
let path = build_entry_path(rt.store(), id);
if path.is_err() {
trace_error(&path.unwrap_err());
exit(1);
}
let path = path.unwrap();
rt.store()
.retrieve(path)
.map(|mut locked_e| {
let mut e = locked_e.deref_mut();
scmd.value_of("content")
.map(|new_content| {
*e.get_content_mut() = String::from(new_content);
debug!("New content set");
});
*e.get_header_mut() = build_toml_header(scmd, e.get_header().clone());
debug!("New header set");
})
2016-01-28 18:41:09 +00:00
})
});
2016-01-23 15:29:04 +00:00
}