imag/imag-store/src/update.rs

30 lines
874 B
Rust
Raw Normal View History

2016-01-28 18:41:09 +00:00
use std::path::PathBuf;
use std::ops::DerefMut;
2016-01-23 15:29:04 +00:00
use libimagrt::runtime::Runtime;
2016-01-28 18:41:09 +00:00
use util::build_toml_header;
use util::build_entry_path;
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| {
rt.store()
.retrieve(scmd.value_of("id").map(|id| build_entry_path(rt, id)).unwrap())
.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-23 15:29:04 +00:00
}