1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
use regex::Regex;
use serde_derive::{Deserialize, Serialize};
use std::time::Duration;
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(default, rename_all = "kebab-case")]
pub struct Config {
pub follow_web_links: bool,
pub traverse_parent_directories: bool,
#[serde(with = "regex_serde")]
pub exclude: Vec<Regex>,
#[serde(default = "default_user_agent")]
pub user_agent: String,
#[serde(default = "default_cache_timeout")]
pub cache_timeout: u64,
}
impl Config {
pub const DEFAULT_CACHE_TIMEOUT: Duration =
Duration::from_secs(60 * 60 * 12);
pub const DEFAULT_USER_AGENT: &'static str =
concat!(env!("CARGO_PKG_NAME"), "-", env!("CARGO_PKG_VERSION"));
pub fn should_skip(&self, link: &str) -> bool {
self.exclude.iter().any(|pat| pat.find(link).is_some())
}
}
impl Default for Config {
fn default() -> Config {
Config {
follow_web_links: false,
traverse_parent_directories: false,
exclude: Vec::new(),
user_agent: default_user_agent(),
cache_timeout: Config::DEFAULT_CACHE_TIMEOUT.as_secs(),
}
}
}
fn default_cache_timeout() -> u64 { Config::DEFAULT_CACHE_TIMEOUT.as_secs() }
fn default_user_agent() -> String { Config::DEFAULT_USER_AGENT.to_string() }
mod regex_serde {
use regex::Regex;
use serde::{
de::{Deserialize, Deserializer, Error},
ser::{SerializeSeq, Serializer},
};
#[allow(clippy::ptr_arg)]
pub fn serialize<S>(re: &Vec<Regex>, ser: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut seq = ser.serialize_seq(Some(re.len()))?;
for pattern in re {
seq.serialize_element(pattern.as_str())?;
}
seq.end()
}
pub fn deserialize<'de, D>(de: D) -> Result<Vec<Regex>, D::Error>
where
D: Deserializer<'de>,
{
let raw = Vec::<String>::deserialize(de)?;
let mut patterns = Vec::new();
for pat in raw {
let re = Regex::new(&pat).map_err(D::Error::custom)?;
patterns.push(re);
}
Ok(patterns)
}
}
impl PartialEq for Config {
fn eq(&self, other: &Config) -> bool {
let Config {
follow_web_links,
traverse_parent_directories,
ref exclude,
ref user_agent,
cache_timeout,
} = self;
*follow_web_links == other.follow_web_links
&& *traverse_parent_directories == other.traverse_parent_directories
&& exclude.len() == other.exclude.len()
&& *user_agent == other.user_agent
&& *cache_timeout == other.cache_timeout
&& exclude
.iter()
.zip(other.exclude.iter())
.all(|(l, r)| l.as_str() == r.as_str())
}
}
#[cfg(test)]
mod tests {
use super::*;
use toml;
const CONFIG: &str = r#"follow-web-links = true
traverse-parent-directories = true
exclude = ["google\\.com"]
user-agent = "Internet Explorer"
cache-timeout = 3600
"#;
#[test]
fn deserialize_a_config() {
let should_be = Config {
follow_web_links: true,
traverse_parent_directories: true,
exclude: vec![Regex::new(r"google\.com").unwrap()],
user_agent: String::from("Internet Explorer"),
cache_timeout: 3600,
};
let got: Config = toml::from_str(CONFIG).unwrap();
assert_eq!(got, should_be);
}
#[test]
fn round_trip_config() {
let deserialized: Config = toml::from_str(CONFIG).unwrap();
let reserialized = toml::to_string(&deserialized).unwrap();
assert_eq!(reserialized, CONFIG);
}
}