You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

433 lines
13KB

  1. #[macro_use]
  2. extern crate serde_derive;
  3. extern crate toml;
  4. #[macro_use]
  5. extern crate errors;
  6. extern crate highlighting;
  7. extern crate chrono;
  8. extern crate globset;
  9. use std::collections::HashMap;
  10. use std::fs::File;
  11. use std::io::prelude::*;
  12. use std::path::{Path, PathBuf};
  13. use toml::{Value as Toml};
  14. use chrono::Utc;
  15. use globset::{Glob, GlobSet, GlobSetBuilder};
  16. use errors::{Result, ResultExt};
  17. use highlighting::THEME_SET;
  18. mod theme;
  19. use theme::Theme;
  20. // We want a default base url for tests
  21. static DEFAULT_BASE_URL: &'static str = "http://a-website.com";
  22. #[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
  23. #[serde(default)]
  24. pub struct Taxonomy {
  25. /// The name used in the URL, usually the plural
  26. pub name: String,
  27. /// If this is set, the list of individual taxonomy term page will be paginated
  28. /// by this much
  29. pub paginate: Option<usize>,
  30. pub paginate_path: Option<String>,
  31. /// Whether to generate a RSS feed only for each taxonomy term, defaults to false
  32. pub rss: bool,
  33. }
  34. impl Taxonomy {
  35. pub fn is_paginated(&self) -> bool {
  36. if let Some(paginate_by) = self.paginate {
  37. paginate_by > 0
  38. } else {
  39. false
  40. }
  41. }
  42. }
  43. impl Default for Taxonomy {
  44. fn default() -> Taxonomy {
  45. Taxonomy {
  46. name: String::new(),
  47. paginate: None,
  48. paginate_path: None,
  49. rss: false,
  50. }
  51. }
  52. }
  53. #[derive(Clone, Debug, Serialize, Deserialize)]
  54. #[serde(default)]
  55. pub struct Config {
  56. /// Base URL of the site, the only required config argument
  57. pub base_url: String,
  58. /// Theme to use
  59. pub theme: Option<String>,
  60. /// Title of the site. Defaults to None
  61. pub title: Option<String>,
  62. /// Description of the site
  63. pub description: Option<String>,
  64. /// The language used in the site. Defaults to "en"
  65. pub default_language: String,
  66. /// Languages list and translated strings
  67. pub translations: HashMap<String, Toml>,
  68. /// Whether to highlight all code blocks found in markdown files. Defaults to false
  69. pub highlight_code: bool,
  70. /// Which themes to use for code highlighting. See Readme for supported themes
  71. /// Defaults to "base16-ocean-dark"
  72. pub highlight_theme: String,
  73. /// Whether to generate RSS. Defaults to false
  74. pub generate_rss: bool,
  75. /// The number of articles to include in the RSS feed. Defaults to 10_000
  76. pub rss_limit: usize,
  77. pub taxonomies: Vec<Taxonomy>,
  78. /// Whether to compile the `sass` directory and output the css files into the static folder
  79. pub compile_sass: bool,
  80. /// Whether to build the search index for the content
  81. pub build_search_index: bool,
  82. /// A list of file glob patterns to ignore when processing the content folder. Defaults to none.
  83. /// Had to remove the PartialEq derive because GlobSet does not implement it. No impact
  84. /// because it's unused anyway (who wants to sort Configs?).
  85. pub ignored_content: Vec<String>,
  86. #[serde(skip_serializing, skip_deserializing)] // not a typo, 2 are needed
  87. pub ignored_content_globset: Option<GlobSet>,
  88. /// All user params set in [extra] in the config
  89. pub extra: HashMap<String, Toml>,
  90. /// Set automatically when instantiating the config. Used for cachebusting
  91. pub build_timestamp: Option<i64>,
  92. }
  93. impl Config {
  94. /// Parses a string containing TOML to our Config struct
  95. /// Any extra parameter will end up in the extra field
  96. pub fn parse(content: &str) -> Result<Config> {
  97. let mut config: Config = match toml::from_str(content) {
  98. Ok(c) => c,
  99. Err(e) => bail!(e)
  100. };
  101. if config.base_url.is_empty() || config.base_url == DEFAULT_BASE_URL {
  102. bail!("A base URL is required in config.toml with key `base_url`");
  103. }
  104. if !THEME_SET.themes.contains_key(&config.highlight_theme) {
  105. bail!("Highlight theme {} not available", config.highlight_theme)
  106. }
  107. config.build_timestamp = Some(Utc::now().timestamp());
  108. if !config.ignored_content.is_empty() {
  109. // Convert the file glob strings into a compiled glob set matcher. We want to do this once,
  110. // at program initialization, rather than for every page, for example. We arrange for the
  111. // globset matcher to always exist (even though it has to be an inside an Option at the
  112. // moment because of the TOML serializer); if the glob set is empty the `is_match` function
  113. // of the globber always returns false.
  114. let mut glob_set_builder = GlobSetBuilder::new();
  115. for pat in &config.ignored_content {
  116. let glob = match Glob::new(pat) {
  117. Ok(g) => g,
  118. Err(e) => bail!("Invalid ignored_content glob pattern: {}, error = {}", pat, e)
  119. };
  120. glob_set_builder.add(glob);
  121. }
  122. config.ignored_content_globset = Some(glob_set_builder.build().expect("Bad ignored_content in config file."));
  123. }
  124. Ok(config)
  125. }
  126. /// Parses a config file from the given path
  127. pub fn from_file<P: AsRef<Path>>(path: P) -> Result<Config> {
  128. let mut content = String::new();
  129. let path = path.as_ref();
  130. let file_name = path.file_name().unwrap();
  131. File::open(path)
  132. .chain_err(|| format!("No `{:?}` file found. Are you in the right directory?", file_name))?
  133. .read_to_string(&mut content)?;
  134. Config::parse(&content)
  135. }
  136. /// Makes a url, taking into account that the base url might have a trailing slash
  137. pub fn make_permalink(&self, path: &str) -> String {
  138. let trailing_bit = if path.ends_with('/') || path.is_empty() { "" } else { "/" };
  139. // Index section with a base url that has a trailing slash
  140. if self.base_url.ends_with('/') && path == "/" {
  141. self.base_url.clone()
  142. } else if path == "/" {
  143. // index section with a base url that doesn't have a trailing slash
  144. format!("{}/", self.base_url)
  145. } else if self.base_url.ends_with('/') && path.starts_with('/') {
  146. format!("{}{}{}", self.base_url, &path[1..], trailing_bit)
  147. } else if self.base_url.ends_with('/') {
  148. format!("{}{}{}", self.base_url, path, trailing_bit)
  149. } else if path.starts_with('/') {
  150. format!("{}{}{}", self.base_url, path, trailing_bit)
  151. } else {
  152. format!("{}/{}{}", self.base_url, path, trailing_bit)
  153. }
  154. }
  155. /// Merges the extra data from the theme with the config extra data
  156. fn add_theme_extra(&mut self, theme: &Theme) -> Result<()> {
  157. // 3 pass merging
  158. // 1. save config to preserve user
  159. let original = self.extra.clone();
  160. // 2. inject theme extra values
  161. for (key, val) in &theme.extra {
  162. self.extra.entry(key.to_string()).or_insert_with(|| val.clone());
  163. }
  164. // 3. overwrite with original config
  165. for (key, val) in &original {
  166. self.extra.entry(key.to_string()).or_insert_with(|| val.clone());
  167. }
  168. Ok(())
  169. }
  170. /// Parse the theme.toml file and merges the extra data from the theme
  171. /// with the config extra data
  172. pub fn merge_with_theme(&mut self, path: &PathBuf) -> Result<()> {
  173. let theme = Theme::from_file(path)?;
  174. self.add_theme_extra(&theme)
  175. }
  176. }
  177. impl Default for Config {
  178. fn default() -> Config {
  179. Config {
  180. base_url: DEFAULT_BASE_URL.to_string(),
  181. title: None,
  182. description: None,
  183. theme: None,
  184. highlight_code: true,
  185. highlight_theme: "base16-ocean-dark".to_string(),
  186. default_language: "en".to_string(),
  187. generate_rss: false,
  188. rss_limit: 10_000,
  189. taxonomies: Vec::new(),
  190. compile_sass: false,
  191. build_search_index: false,
  192. ignored_content: Vec::new(),
  193. ignored_content_globset: None,
  194. translations: HashMap::new(),
  195. extra: HashMap::new(),
  196. build_timestamp: Some(1),
  197. }
  198. }
  199. }
  200. /// Get and parse the config.
  201. /// If it doesn't succeed, exit
  202. pub fn get_config(path: &Path, filename: &str) -> Config {
  203. match Config::from_file(path.join(filename)) {
  204. Ok(c) => c,
  205. Err(e) => {
  206. println!("Failed to load {}", filename);
  207. println!("Error: {}", e);
  208. ::std::process::exit(1);
  209. }
  210. }
  211. }
  212. #[cfg(test)]
  213. mod tests {
  214. use super::{Config, Theme};
  215. #[test]
  216. fn can_import_valid_config() {
  217. let config = r#"
  218. title = "My site"
  219. base_url = "https://replace-this-with-your-url.com"
  220. "#;
  221. let config = Config::parse(config).unwrap();
  222. assert_eq!(config.title.unwrap(), "My site".to_string());
  223. }
  224. #[test]
  225. fn errors_when_invalid_type() {
  226. let config = r#"
  227. title = 1
  228. base_url = "https://replace-this-with-your-url.com"
  229. "#;
  230. let config = Config::parse(config);
  231. assert!(config.is_err());
  232. }
  233. #[test]
  234. fn errors_when_missing_required_field() {
  235. // base_url is required
  236. let config = r#"
  237. title = ""
  238. "#;
  239. let config = Config::parse(config);
  240. assert!(config.is_err());
  241. }
  242. #[test]
  243. fn can_add_extra_values() {
  244. let config = r#"
  245. title = "My site"
  246. base_url = "https://replace-this-with-your-url.com"
  247. [extra]
  248. hello = "world"
  249. "#;
  250. let config = Config::parse(config);
  251. assert!(config.is_ok());
  252. assert_eq!(config.unwrap().extra.get("hello").unwrap().as_str().unwrap(), "world");
  253. }
  254. #[test]
  255. fn can_make_url_index_page_with_non_trailing_slash_url() {
  256. let mut config = Config::default();
  257. config.base_url = "http://vincent.is".to_string();
  258. assert_eq!(config.make_permalink(""), "http://vincent.is/");
  259. }
  260. #[test]
  261. fn can_make_url_index_page_with_railing_slash_url() {
  262. let mut config = Config::default();
  263. config.base_url = "http://vincent.is/".to_string();
  264. assert_eq!(config.make_permalink(""), "http://vincent.is/");
  265. }
  266. #[test]
  267. fn can_make_url_with_non_trailing_slash_base_url() {
  268. let mut config = Config::default();
  269. config.base_url = "http://vincent.is".to_string();
  270. assert_eq!(config.make_permalink("hello"), "http://vincent.is/hello/");
  271. }
  272. #[test]
  273. fn can_make_url_with_trailing_slash_path() {
  274. let mut config = Config::default();
  275. config.base_url = "http://vincent.is/".to_string();
  276. assert_eq!(config.make_permalink("/hello"), "http://vincent.is/hello/");
  277. }
  278. #[test]
  279. fn can_make_url_with_localhost() {
  280. let mut config = Config::default();
  281. config.base_url = "http://127.0.0.1:1111".to_string();
  282. assert_eq!(config.make_permalink("/tags/rust"), "http://127.0.0.1:1111/tags/rust/");
  283. }
  284. #[test]
  285. fn can_merge_with_theme_data_and_preserve_config_value() {
  286. let config_str = r#"
  287. title = "My site"
  288. base_url = "https://replace-this-with-your-url.com"
  289. [extra]
  290. hello = "world"
  291. "#;
  292. let mut config = Config::parse(config_str).unwrap();
  293. let theme_str = r#"
  294. [extra]
  295. hello = "foo"
  296. a_value = 10
  297. "#;
  298. let theme = Theme::parse(theme_str).unwrap();
  299. assert!(config.add_theme_extra(&theme).is_ok());
  300. let extra = config.extra;
  301. assert_eq!(extra["hello"].as_str().unwrap(), "world".to_string());
  302. assert_eq!(extra["a_value"].as_integer().unwrap(), 10);
  303. }
  304. #[test]
  305. fn can_use_language_configuration() {
  306. let config = r#"
  307. base_url = "https://remplace-par-ton-url.fr"
  308. default_language = "fr"
  309. [translations]
  310. [translations.fr]
  311. title = "Un titre"
  312. [translations.en]
  313. title = "A title"
  314. "#;
  315. let config = Config::parse(config);
  316. assert!(config.is_ok());
  317. let translations = config.unwrap().translations;
  318. assert_eq!(translations["fr"]["title"].as_str().unwrap(), "Un titre");
  319. assert_eq!(translations["en"]["title"].as_str().unwrap(), "A title");
  320. }
  321. #[test]
  322. fn missing_ignored_content_results_in_empty_vector_and_empty_globset() {
  323. let config_str = r#"
  324. title = "My site"
  325. base_url = "example.com"
  326. "#;
  327. let config = Config::parse(config_str).unwrap();
  328. let v = config.ignored_content;
  329. assert_eq!(v.len(), 0);
  330. assert!(config.ignored_content_globset.is_none());
  331. }
  332. #[test]
  333. fn empty_ignored_content_results_in_empty_vector_and_empty_globset() {
  334. let config_str = r#"
  335. title = "My site"
  336. base_url = "example.com"
  337. ignored_content = []
  338. "#;
  339. let config = Config::parse(config_str).unwrap();
  340. assert_eq!(config.ignored_content.len(), 0);
  341. assert!(config.ignored_content_globset.is_none());
  342. }
  343. #[test]
  344. fn non_empty_ignored_content_results_in_vector_of_patterns_and_configured_globset() {
  345. let config_str = r#"
  346. title = "My site"
  347. base_url = "example.com"
  348. ignored_content = ["*.{graphml,iso}", "*.py?"]
  349. "#;
  350. let config = Config::parse(config_str).unwrap();
  351. let v = config.ignored_content;
  352. assert_eq!(v, vec!["*.{graphml,iso}", "*.py?"]);
  353. let g = config.ignored_content_globset.unwrap();
  354. assert_eq!(g.len(), 2);
  355. assert!(g.is_match("foo.graphml"));
  356. assert!(g.is_match("foo.iso"));
  357. assert!(!g.is_match("foo.png"));
  358. assert!(g.is_match("foo.py2"));
  359. assert!(g.is_match("foo.py3"));
  360. assert!(!g.is_match("foo.py"));
  361. }
  362. }