2021-02-06 09:59:03 +00:00
|
|
|
use std::{fs::File, io::Read};
|
|
|
|
|
2020-11-24 06:58:50 +00:00
|
|
|
use clap::{App, AppSettings, Arg};
|
2020-05-16 08:09:44 +01:00
|
|
|
|
2021-02-06 09:59:03 +00:00
|
|
|
pub fn cli_init() -> AppConfig {
|
|
|
|
let app = App::new("paperoni")
|
2020-11-24 06:58:50 +00:00
|
|
|
.settings(&[
|
|
|
|
AppSettings::ArgRequiredElseHelp,
|
|
|
|
AppSettings::UnifiedHelpMessage,
|
|
|
|
])
|
2021-01-24 14:54:33 +00:00
|
|
|
.version("0.2.2-alpha1")
|
2020-11-24 06:58:50 +00:00
|
|
|
.about(
|
|
|
|
"
|
|
|
|
Paperoni is an article downloader.
|
|
|
|
It takes a url and downloads the article content from it and saves it to an epub.
|
|
|
|
",
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("urls")
|
|
|
|
.help("Urls of web articles")
|
|
|
|
.multiple(true),
|
|
|
|
)
|
2021-02-01 08:28:07 +00:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("file")
|
|
|
|
.short("f")
|
|
|
|
.long("file")
|
|
|
|
.help("Input file containing links")
|
|
|
|
.takes_value(true),
|
2021-02-06 09:59:03 +00:00
|
|
|
);
|
|
|
|
let arg_matches = app.get_matches();
|
|
|
|
let mut urls: Vec<String> = match arg_matches.value_of("file") {
|
|
|
|
Some(file_name) => {
|
|
|
|
if let Ok(mut file) = File::open(file_name) {
|
|
|
|
let mut content = String::new();
|
|
|
|
match file.read_to_string(&mut content) {
|
|
|
|
Ok(_) => content
|
|
|
|
.lines()
|
|
|
|
.filter(|line| !line.is_empty())
|
|
|
|
.map(|line| line.to_owned())
|
|
|
|
.collect(),
|
|
|
|
Err(_) => vec![],
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
println!("Unable to open file: {}", file_name);
|
|
|
|
vec![]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => vec![],
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(vals) = arg_matches.values_of("urls") {
|
|
|
|
urls.extend(
|
|
|
|
vals.filter(|val| !val.is_empty())
|
|
|
|
.map(|val| val.to_string()),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut app_config = AppConfig::new();
|
|
|
|
app_config.set_urls(urls);
|
|
|
|
app_config
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct AppConfig {
|
|
|
|
urls: Vec<String>,
|
2021-02-06 14:03:02 +00:00
|
|
|
max_conn: usize,
|
2021-02-06 09:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl AppConfig {
|
|
|
|
fn new() -> Self {
|
2021-02-06 14:03:02 +00:00
|
|
|
Self {
|
|
|
|
urls: vec![],
|
|
|
|
max_conn: 8,
|
|
|
|
}
|
2021-02-06 09:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn set_urls(&mut self, urls: Vec<String>) {
|
|
|
|
self.urls.extend(urls);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn urls(&self) -> &Vec<String> {
|
|
|
|
&self.urls
|
|
|
|
}
|
2021-02-06 14:03:02 +00:00
|
|
|
pub fn max_conn(&self) -> usize {
|
|
|
|
self.max_conn
|
|
|
|
}
|
2020-05-16 08:09:44 +01:00
|
|
|
}
|