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-05-26 08:41:25 +00:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2016-05-26 08:35:26 +00:00
|
|
|
use clap::{Arg, ArgMatches};
|
|
|
|
|
|
|
|
use libimagstore::storeid::StoreId;
|
2016-08-28 11:04:09 +00:00
|
|
|
use libimagerror::into::IntoError;
|
|
|
|
|
|
|
|
use result::Result;
|
|
|
|
use error::MapErrInto;
|
2016-09-17 17:25:37 +00:00
|
|
|
use error::InteractionErrorKind as IEK;
|
2016-05-26 08:35:26 +00:00
|
|
|
|
|
|
|
pub fn id_argument<'a, 'b>() -> Arg<'a, 'b> {
|
|
|
|
Arg::with_name(id_argument_name())
|
|
|
|
.short(id_argument_short())
|
|
|
|
.long(id_argument_long())
|
|
|
|
.takes_value(true)
|
|
|
|
.multiple(true)
|
|
|
|
.help("Specify the Store-Id")
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn id_argument_name() -> &'static str {
|
|
|
|
"id-argument"
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn id_argument_short() -> &'static str {
|
|
|
|
"i"
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn id_argument_long() -> &'static str {
|
|
|
|
"id"
|
|
|
|
}
|
|
|
|
|
2016-08-28 11:04:09 +00:00
|
|
|
pub fn get_id(matches: &ArgMatches) -> Result<Vec<StoreId>> {
|
|
|
|
matches
|
|
|
|
.values_of(id_argument_name())
|
2016-09-17 17:25:37 +00:00
|
|
|
.ok_or(IEK::IdMissingError.into_error())
|
|
|
|
.map_err_into(IEK::CLIError)
|
2016-08-28 11:04:09 +00:00
|
|
|
.and_then(|vals| {
|
2016-05-26 08:35:26 +00:00
|
|
|
vals.into_iter()
|
2016-08-28 11:04:09 +00:00
|
|
|
.fold(Ok(vec![]), |acc, elem| {
|
|
|
|
acc.and_then(|mut v| {
|
|
|
|
let elem = StoreId::new_baseless(PathBuf::from(String::from(elem)));
|
2016-09-17 17:25:37 +00:00
|
|
|
let elem = try!(elem.map_err_into(IEK::StoreIdParsingError));
|
2016-08-28 11:04:09 +00:00
|
|
|
v.push(elem);
|
|
|
|
Ok(v)
|
|
|
|
})
|
2016-08-25 15:33:36 +00:00
|
|
|
})
|
2016-05-26 08:35:26 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-08-28 11:04:09 +00:00
|
|
|
pub fn get_or_select_id(matches: &ArgMatches, store_path: &PathBuf) -> Result<Vec<StoreId>> {
|
2016-05-26 08:41:25 +00:00
|
|
|
use interactor::{pick_file, default_menu_cmd};
|
|
|
|
|
2016-09-17 17:25:37 +00:00
|
|
|
match get_id(matches).map_err_into(IEK::IdSelectingError) {
|
2016-08-28 11:04:09 +00:00
|
|
|
Ok(v) => Ok(v),
|
|
|
|
Err(_) => {
|
|
|
|
let path = store_path.clone();
|
2016-09-17 17:25:37 +00:00
|
|
|
let p = try!(pick_file(default_menu_cmd, path).map_err_into(IEK::IdSelectingError));
|
|
|
|
let id = try!(StoreId::new_baseless(p).map_err_into(IEK::StoreIdParsingError));
|
2016-08-28 11:04:09 +00:00
|
|
|
Ok(vec![id])
|
|
|
|
},
|
|
|
|
}
|
2016-05-26 08:41:25 +00:00
|
|
|
}
|
|
|
|
|