imag/imag-bookmark/src/main.rs

118 lines
3.6 KiB
Rust
Raw Normal View History

2016-05-18 19:42:06 +00:00
extern crate clap;
#[macro_use] extern crate log;
#[macro_use] extern crate version;
extern crate libimagbookmark;
extern crate libimagentrylink;
2016-07-08 19:42:39 +00:00
extern crate libimagentrytag;
2016-05-18 19:42:06 +00:00
extern crate libimagrt;
2016-07-08 19:42:39 +00:00
extern crate libimagerror;
2016-05-18 19:42:06 +00:00
extern crate libimagutil;
2016-07-14 18:54:53 +00:00
use std::process::exit;
2016-05-18 20:25:20 +00:00
use libimagentrytag::ui::{get_add_tags, get_remove_tags};
use libimagentrylink::internal::Link;
2016-07-08 19:42:39 +00:00
use libimagrt::runtime::Runtime;
use libimagrt::setup::generate_runtime_setup;
use libimagbookmark::collection::BookmarkCollection;
use libimagbookmark::link::Link as BookmarkLink;
use libimagerror::trace::{trace_error, trace_error_exit};
2016-05-18 20:25:20 +00:00
2016-05-18 19:42:06 +00:00
mod ui;
2016-05-18 20:25:20 +00:00
use ui::build_ui;
2016-05-18 19:42:06 +00:00
2016-05-18 19:27:56 +00:00
fn main() {
2016-05-18 20:25:20 +00:00
let rt = generate_runtime_setup("imag-bookmark",
&version!()[..],
"Bookmark collection tool",
build_ui);
rt.cli()
.subcommand_name()
.map(|name| {
debug!("Call {}", name);
match name {
"add" => add(&rt),
"collection" => collection(&rt),
"list" => list(&rt),
"remove" => remove(&rt),
_ => {
debug!("Unknown command"); // More error handling
},
}
});
}
fn add(rt: &Runtime) {
2016-07-08 19:42:39 +00:00
let scmd = rt.cli().subcommand_matches("add").unwrap();
let coll = scmd.value_of("collection").unwrap(); // enforced by clap
BookmarkCollection::get(rt.store(), coll)
.map(|mut collection| {
for url in scmd.values_of("urls").unwrap() { // enforced by clap
collection.add_link(BookmarkLink::from(url)).map_err(|e| trace_error(&e));
}
});
info!("Ready");
2016-05-18 20:25:20 +00:00
}
fn collection(rt: &Runtime) {
2016-07-14 18:54:53 +00:00
let scmd = rt.cli().subcommand_matches("collection").unwrap();
if scmd.is_present("add") { // adding a new collection
let name = scmd.value_of("add").unwrap();
if let Ok(_) = BookmarkCollection::new(rt.store(), name) {
info!("Created: {}", name);
} else {
warn!("Creating collection {} failed", name);
exit(1);
}
}
if scmd.is_present("remove") { // remove a collection
let name = scmd.value_of("remove").unwrap();
if let Ok(_) = BookmarkCollection::delete(rt.store(), name) {
info!("Deleted: {}", name);
} else {
warn!("Deleting collection {} failed", name);
exit(1);
}
}
2016-05-18 20:25:20 +00:00
}
fn list(rt: &Runtime) {
2016-07-14 19:04:11 +00:00
let scmd = rt.cli().subcommand_matches("list").unwrap();
let coll = scmd.value_of("collection").unwrap(); // enforced by clap
BookmarkCollection::get(rt.store(), coll)
.map(|collection| {
match collection.links() {
Ok(links) => {
debug!("Listing...");
for (i, link) in links.iter().enumerate() {
println!("{: >3}: {}", i, link);
};
debug!("... ready with listing");
},
Err(e) => trace_error_exit(&e, 1),
2016-07-14 19:04:11 +00:00
}
});
info!("Ready");
2016-05-18 20:25:20 +00:00
}
fn remove(rt: &Runtime) {
2016-07-14 18:49:36 +00:00
let scmd = rt.cli().subcommand_matches("remove").unwrap();
let coll = scmd.value_of("collection").unwrap(); // enforced by clap
BookmarkCollection::get(rt.store(), coll)
.map(|mut collection| {
for url in scmd.values_of("urls").unwrap() { // enforced by clap
collection.remove_link(BookmarkLink::from(url)).map_err(|e| trace_error(&e));
}
});
info!("Ready");
2016-05-18 19:27:56 +00:00
}
2016-05-18 19:42:06 +00:00