2016-10-01 15:35:06 +00:00
|
|
|
//
|
|
|
|
// imag - the personal information management suite for the commandline
|
|
|
|
// Copyright (C) 2015, 2016 Matthias Beyer <mail@beyermatthias.de> and contributors
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; version
|
|
|
|
// 2.1 of the License.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
//
|
|
|
|
|
2016-03-19 15:47:56 +00:00
|
|
|
extern crate clap;
|
|
|
|
#[macro_use] extern crate log;
|
|
|
|
#[macro_use] extern crate version;
|
2016-09-06 09:21:14 +00:00
|
|
|
extern crate itertools;
|
2016-03-19 15:47:56 +00:00
|
|
|
|
|
|
|
extern crate libimagnotes;
|
|
|
|
extern crate libimagrt;
|
2016-08-09 11:52:41 +00:00
|
|
|
extern crate libimagentryedit;
|
2016-05-16 16:59:02 +00:00
|
|
|
extern crate libimagerror;
|
2016-09-06 09:21:14 +00:00
|
|
|
extern crate libimagutil;
|
2016-03-19 15:47:56 +00:00
|
|
|
|
2016-09-06 09:21:14 +00:00
|
|
|
use itertools::Itertools;
|
|
|
|
|
2016-08-09 11:52:41 +00:00
|
|
|
use libimagentryedit::edit::Edit;
|
2016-03-19 15:47:56 +00:00
|
|
|
use libimagrt::runtime::Runtime;
|
2016-05-18 17:06:05 +00:00
|
|
|
use libimagrt::setup::generate_runtime_setup;
|
2016-03-19 15:47:56 +00:00
|
|
|
use libimagnotes::note::Note;
|
2017-09-14 17:57:48 +00:00
|
|
|
use libimagnotes::notestore::*;
|
|
|
|
use libimagerror::trace::MapErrTrace;
|
2016-09-06 09:21:14 +00:00
|
|
|
use libimagutil::info_result::*;
|
|
|
|
use libimagutil::warn_result::WarnResult;
|
2016-03-19 15:47:56 +00:00
|
|
|
|
2017-09-14 17:57:48 +00:00
|
|
|
|
2016-03-19 15:47:56 +00:00
|
|
|
mod ui;
|
|
|
|
use ui::build_ui;
|
|
|
|
|
|
|
|
fn main() {
|
2016-05-18 17:06:05 +00:00
|
|
|
let rt = generate_runtime_setup("imag-notes",
|
|
|
|
&version!()[..],
|
|
|
|
"Note taking helper",
|
|
|
|
build_ui);
|
2016-03-19 15:47:56 +00:00
|
|
|
|
|
|
|
rt.cli()
|
|
|
|
.subcommand_name()
|
|
|
|
.map(|name| {
|
|
|
|
debug!("Call: {}", name);
|
|
|
|
match name {
|
|
|
|
"create" => create(&rt),
|
|
|
|
"delete" => delete(&rt),
|
|
|
|
"edit" => edit(&rt),
|
|
|
|
"list" => list(&rt),
|
|
|
|
_ => {
|
|
|
|
debug!("Unknown command"); // More error handling
|
|
|
|
},
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-03-19 19:22:15 +00:00
|
|
|
fn name_from_cli(rt: &Runtime, subcmd: &str) -> String {
|
|
|
|
rt.cli().subcommand_matches(subcmd).unwrap().value_of("name").map(String::from).unwrap()
|
|
|
|
}
|
2016-03-19 15:47:56 +00:00
|
|
|
|
2016-03-19 19:22:15 +00:00
|
|
|
fn create(rt: &Runtime) {
|
2016-03-26 15:06:12 +00:00
|
|
|
let name = name_from_cli(rt, "create");
|
2017-09-14 17:57:48 +00:00
|
|
|
let mut note = rt
|
|
|
|
.store()
|
|
|
|
.new_note(name.clone(), String::new())
|
|
|
|
.map_err_trace_exit(1)
|
|
|
|
.unwrap();
|
2016-03-26 15:06:12 +00:00
|
|
|
|
2017-09-14 17:57:48 +00:00
|
|
|
if rt.cli().subcommand_matches("create").unwrap().is_present("edit") {
|
|
|
|
let _ = note
|
|
|
|
.edit_content(rt)
|
|
|
|
.map_warn_err_str("Editing failed")
|
|
|
|
.map_err_trace_exit(1);
|
2016-03-26 15:06:12 +00:00
|
|
|
}
|
2016-03-19 15:47:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn delete(rt: &Runtime) {
|
2017-09-14 17:57:48 +00:00
|
|
|
let _ = rt.store()
|
|
|
|
.delete_note(name_from_cli(rt, "delete"))
|
2016-09-06 09:21:14 +00:00
|
|
|
.map_info_str("Ok")
|
2017-09-14 17:57:48 +00:00
|
|
|
.map_err_trace_exit(1);
|
2016-03-19 15:47:56 +00:00
|
|
|
}
|
|
|
|
|
2016-03-25 15:38:17 +00:00
|
|
|
fn edit(rt: &Runtime) {
|
2017-09-14 17:57:48 +00:00
|
|
|
let name = name_from_cli(rt, "edit");
|
|
|
|
let _ = rt
|
|
|
|
.store()
|
|
|
|
.get_note(name.clone())
|
|
|
|
.map_err_trace_exit(1)
|
|
|
|
.unwrap()
|
|
|
|
.map(|mut note| {
|
|
|
|
let _ = note
|
|
|
|
.edit_content(rt)
|
|
|
|
.map_warn_err_str("Editing failed")
|
|
|
|
.map_err_trace_exit(1);
|
|
|
|
})
|
|
|
|
.unwrap_or_else(|| {
|
|
|
|
error!("Cannot find note with name '{}'", name);
|
|
|
|
});
|
2016-03-19 15:47:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn list(rt: &Runtime) {
|
|
|
|
use std::cmp::Ordering;
|
|
|
|
|
2017-09-14 17:57:48 +00:00
|
|
|
rt.store()
|
|
|
|
.all_notes()
|
2016-09-06 09:21:14 +00:00
|
|
|
.map_err_trace_exit(1)
|
|
|
|
.map(|iter| {
|
2017-09-14 17:57:48 +00:00
|
|
|
let notes = iter
|
|
|
|
.filter_map(|noteid| rt.store().get(noteid).map_err_trace_exit(1).unwrap())
|
2016-10-25 07:33:59 +00:00
|
|
|
.sorted_by(|note_a, note_b| {
|
2016-09-06 09:21:14 +00:00
|
|
|
if let (Ok(a), Ok(b)) = (note_a.get_name(), note_b.get_name()) {
|
|
|
|
return a.cmp(&b)
|
|
|
|
} else {
|
|
|
|
return Ordering::Greater;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
for note in notes.iter() {
|
|
|
|
note.get_name()
|
|
|
|
.map(|name| println!("{}", name))
|
|
|
|
.map_err_trace()
|
|
|
|
.ok();
|
2016-03-19 15:47:56 +00:00
|
|
|
}
|
|
|
|
})
|
2016-09-06 09:21:14 +00:00
|
|
|
.ok();
|
2016-03-19 15:47:56 +00:00
|
|
|
}
|
|
|
|
|