// // imag - the personal information management suite for the commandline // Copyright (C) 2015-2019 Matthias Beyer 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 // use std::collections::BTreeMap; use clap::ArgMatches; use vobject::icalendar::ICalendar; use vobject::icalendar::Event; use handlebars::Handlebars; use failure::Fallible as Result; use failure::Error; use failure::err_msg; use toml_query::read::TomlValueReadTypeExt; use chrono::NaiveDateTime; use libimagrt::runtime::Runtime; use libimagstore::store::FileLockEntry; use libimagentryref::reference::fassade::RefFassade; use libimagentryref::reference::Ref; use libimagentryref::reference::Config; use libimagentryref::hasher::default::DefaultHasher; use libimagerror::trace::MapErrTrace; pub struct ParsedEventFLE<'a> { inner: FileLockEntry<'a>, data: ICalendar, } impl<'a> ParsedEventFLE<'a> { /// Because libimagcalendar only links to the actual calendar data, we need to read the data and /// parse it. /// With this function, a FileLockEntry can be parsed to a ParsedEventFileLockEntry /// (ParsedEventFLE). pub fn parse(fle: FileLockEntry<'a>, refconfig: &Config) -> Result { fle.as_ref_with_hasher::() .get_path(refconfig) .and_then(|p| ::std::fs::read_to_string(p).map_err(Error::from)) .and_then(|s| ICalendar::build(&s).map_err(Error::from)) .map(|cal| ParsedEventFLE { inner: fle, data: cal, }) } pub fn get_entry(&self) -> &FileLockEntry<'a> { &self.inner } pub fn get_data(&self) -> &ICalendar { &self.data } } pub fn get_event_print_format(config_value_path: &'static str, rt: &Runtime, scmd: &ArgMatches) -> Result { scmd.value_of("format") .map(String::from) .map(Ok) .unwrap_or_else(|| { rt.config() .ok_or_else(|| err_msg("No configuration file"))? .read_string(config_value_path)? .ok_or_else(|| err_msg("Configuration 'contact.list_format' does not exist")) }) .and_then(|fmt| { let mut hb = Handlebars::new(); hb.register_template_string("format", fmt)?; hb.register_escape_fn(::handlebars::no_escape); ::libimaginteraction::format::register_all_color_helpers(&mut hb); ::libimaginteraction::format::register_all_format_helpers(&mut hb); Ok(hb) }) } pub fn build_data_object_for_handlebars<'a>(i: usize, event: &Event<'a>) -> BTreeMap<&'static str, String> { macro_rules! process_opt { ($t:expr, $text:expr) => { ($t).map(|obj| obj.into_raw()).unwrap_or_else(|| String::from($text)) } } let mut data = BTreeMap::new(); data.insert("i" , format!("{}", i)); data.insert("dtend" , process_opt!(event.dtend() , "")); data.insert("dtstart" , process_opt!(event.dtstart() , "")); data.insert("dtstamp" , process_opt!(event.dtstamp() , "")); data.insert("uid" , process_opt!(event.uid() , "")); data.insert("description" , process_opt!(event.description() , "")); data.insert("summary" , process_opt!(event.summary() , "")); data.insert("url" , process_opt!(event.url() , "")); data.insert("location" , process_opt!(event.location() , "")); data.insert("class" , process_opt!(event.class() , "")); data.insert("categories" , process_opt!(event.categories() , "")); data.insert("transp" , process_opt!(event.transp() , "")); data.insert("rrule" , process_opt!(event.rrule() , "")); data } pub fn kairos_parse(spec: &str) -> Result { match ::kairos::parser::parse(spec).map_err_trace_exit_unwrap() { ::kairos::parser::Parsed::Iterator(_) => { trace!("before-filter spec resulted in iterator"); Err(format_err!("Not a moment in time: {}", spec)) } ::kairos::parser::Parsed::TimeType(tt) => { trace!("before-filter spec resulted in timetype"); let tt = tt.calculate() .map_err_trace_exit_unwrap() .get_moment().unwrap_or_else(|| { error!("Not a moment in time: {}", spec); ::std::process::exit(1); }) .clone(); trace!("Before filter spec {} => {}", spec, tt); Ok(tt) } } }