use std::{fs, num::NonZeroUsize, path::Path}; use chrono::{DateTime, Local}; use clap::{load_yaml, App, ArgMatches}; use flexi_logger::LevelFilter as LogLevel; use itertools::Itertools; type Error = crate::errors::CliError; const DEFAULT_MAX_CONN: usize = 8; #[derive(derive_builder::Builder)] pub struct AppConfig { /// Urls for store in epub pub urls: Vec, pub max_conn: usize, /// Path to file of multiple articles into a single epub pub merged: Option, pub output_directory: Option, pub log_level: LogLevel, pub can_disable_progress_bar: bool, pub start_time: DateTime, pub is_logging_to_file: bool, pub inline_toc: bool, pub css_config: CSSConfig, } impl AppConfig { pub fn init_with_cli() -> Result { let yaml_config = load_yaml!("cli_config.yml"); let app = App::from_yaml(yaml_config).version(clap::crate_version!()); Self::try_from(app.get_matches()) } fn init_merge_file(self) -> Result { self.merged .as_deref() .map(fs::File::create) .transpose() .err() .map(|err| Err(Error::InvalidOutputPath(err.to_string()))) .unwrap_or(Ok(self)) } fn init_logger(self) -> Result { use crate::logs; logs::init_logger(self.log_level, &self.start_time, self.is_logging_to_file) .map(|_| self) .map_err(Error::LogError) } } use std::convert::TryFrom; impl<'a> TryFrom> for AppConfig { type Error = Error; fn try_from(arg_matches: ArgMatches<'a>) -> Result { AppConfigBuilder::default() .urls({ let url_filter = |url: &str| { let url = url.trim(); if !url.is_empty() { Some(url.to_owned()) } else { None } }; let direct_urls = arg_matches .values_of("urls") .and_then(|urls| urls.map(url_filter).collect::>>()) .unwrap_or(Vec::new()); let file_urls = arg_matches .value_of("file") .map(fs::read_to_string) .transpose()? .and_then(|content| content.lines().map(url_filter).collect::>>()) .unwrap_or(Vec::new()); let urls = [direct_urls, file_urls] .concat() .into_iter() .unique() .collect_vec(); if !urls.is_empty() { Ok(urls) } else { Err(Error::NoUrls) } }?) .max_conn(match arg_matches.value_of("max-conn") { Some(max_conn) => max_conn.parse::()?.get(), None => DEFAULT_MAX_CONN, }) .merged(arg_matches.value_of("output-name").map(|name| { if name.ends_with(".epub") { name.to_owned() } else { name.to_string() + ".epub" } })) .can_disable_progress_bar( arg_matches.is_present("verbosity") && !arg_matches.is_present("log-to-file"), ) .log_level(match arg_matches.occurrences_of("verbosity") { 0 => { if !arg_matches.is_present("log-to-file") { LogLevel::Off } else { LogLevel::Debug } } 1 => LogLevel::Error, 2 => LogLevel::Warn, 3 => LogLevel::Info, 4..=u64::MAX => LogLevel::Debug, }) .is_logging_to_file(arg_matches.is_present("log-to-file")) .inline_toc(arg_matches.is_present("inline-toc")) .output_directory( arg_matches .value_of("output_directory") .map(|output_directory| { let path = Path::new(output_directory); if !path.exists() { Err(Error::OutputDirectoryNotExists) } else if !path.is_dir() { Err(Error::WrongOutputDirectory) } else { Ok(output_directory.to_owned()) } }) .transpose()?, ) .start_time(Local::now()) .css_config( match ( arg_matches.is_present("no-css"), arg_matches.is_present("no-header-css"), ) { (true, _) => CSSConfig::None, (_, true) => CSSConfig::NoHeaders, _ => CSSConfig::All, }, ) .try_init() } } impl AppConfigBuilder { pub fn try_init(&self) -> Result { self.build() .map_err(Error::AppBuildError)? .init_logger()? .init_merge_file() } } #[derive(Clone, Debug)] pub enum CSSConfig { All, NoHeaders, None, }