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.

441 lines
14KB

  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_by: 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_by {
  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_by: 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. /// Whether to check all external links for validity
  89. pub check_external_links: bool,
  90. /// A list of directories containing extra syntax definitions to load.
  91. pub extra_syntaxes: Vec<String>,
  92. /// All user params set in [extra] in the config
  93. pub extra: HashMap<String, Toml>,
  94. /// Set automatically when instantiating the config. Used for cachebusting
  95. pub build_timestamp: Option<i64>,
  96. }
  97. impl Config {
  98. /// Parses a string containing TOML to our Config struct
  99. /// Any extra parameter will end up in the extra field
  100. pub fn parse(content: &str) -> Result<Config> {
  101. let mut config: Config = match toml::from_str(content) {
  102. Ok(c) => c,
  103. Err(e) => bail!(e)
  104. };
  105. if config.base_url.is_empty() || config.base_url == DEFAULT_BASE_URL {
  106. bail!("A base URL is required in config.toml with key `base_url`");
  107. }
  108. if !THEME_SET.themes.contains_key(&config.highlight_theme) {
  109. bail!("Highlight theme {} not available", config.highlight_theme)
  110. }
  111. config.build_timestamp = Some(Utc::now().timestamp());
  112. if !config.ignored_content.is_empty() {
  113. // Convert the file glob strings into a compiled glob set matcher. We want to do this once,
  114. // at program initialization, rather than for every page, for example. We arrange for the
  115. // globset matcher to always exist (even though it has to be an inside an Option at the
  116. // moment because of the TOML serializer); if the glob set is empty the `is_match` function
  117. // of the globber always returns false.
  118. let mut glob_set_builder = GlobSetBuilder::new();
  119. for pat in &config.ignored_content {
  120. let glob = match Glob::new(pat) {
  121. Ok(g) => g,
  122. Err(e) => bail!("Invalid ignored_content glob pattern: {}, error = {}", pat, e)
  123. };
  124. glob_set_builder.add(glob);
  125. }
  126. config.ignored_content_globset = Some(glob_set_builder.build().expect("Bad ignored_content in config file."));
  127. }
  128. Ok(config)
  129. }
  130. /// Parses a config file from the given path
  131. pub fn from_file<P: AsRef<Path>>(path: P) -> Result<Config> {
  132. let mut content = String::new();
  133. let path = path.as_ref();
  134. let file_name = path.file_name().unwrap();
  135. File::open(path)
  136. .chain_err(|| format!("No `{:?}` file found. Are you in the right directory?", file_name))?
  137. .read_to_string(&mut content)?;
  138. Config::parse(&content)
  139. }
  140. /// Makes a url, taking into account that the base url might have a trailing slash
  141. pub fn make_permalink(&self, path: &str) -> String {
  142. let trailing_bit = if path.ends_with('/') || path.is_empty() { "" } else { "/" };
  143. // Index section with a base url that has a trailing slash
  144. if self.base_url.ends_with('/') && path == "/" {
  145. self.base_url.clone()
  146. } else if path == "/" {
  147. // index section with a base url that doesn't have a trailing slash
  148. format!("{}/", self.base_url)
  149. } else if self.base_url.ends_with('/') && path.starts_with('/') {
  150. format!("{}{}{}", self.base_url, &path[1..], trailing_bit)
  151. } else if self.base_url.ends_with('/') {
  152. format!("{}{}{}", self.base_url, path, trailing_bit)
  153. } else if path.starts_with('/') {
  154. format!("{}{}{}", self.base_url, path, trailing_bit)
  155. } else {
  156. format!("{}/{}{}", self.base_url, path, trailing_bit)
  157. }
  158. }
  159. /// Merges the extra data from the theme with the config extra data
  160. fn add_theme_extra(&mut self, theme: &Theme) -> Result<()> {
  161. // 3 pass merging
  162. // 1. save config to preserve user
  163. let original = self.extra.clone();
  164. // 2. inject theme extra values
  165. for (key, val) in &theme.extra {
  166. self.extra.entry(key.to_string()).or_insert_with(|| val.clone());
  167. }
  168. // 3. overwrite with original config
  169. for (key, val) in &original {
  170. self.extra.entry(key.to_string()).or_insert_with(|| val.clone());
  171. }
  172. Ok(())
  173. }
  174. /// Parse the theme.toml file and merges the extra data from the theme
  175. /// with the config extra data
  176. pub fn merge_with_theme(&mut self, path: &PathBuf) -> Result<()> {
  177. let theme = Theme::from_file(path)?;
  178. self.add_theme_extra(&theme)
  179. }
  180. }
  181. impl Default for Config {
  182. fn default() -> Config {
  183. Config {
  184. base_url: DEFAULT_BASE_URL.to_string(),
  185. title: None,
  186. description: None,
  187. theme: None,
  188. highlight_code: true,
  189. highlight_theme: "base16-ocean-dark".to_string(),
  190. default_language: "en".to_string(),
  191. generate_rss: false,
  192. rss_limit: 10_000,
  193. taxonomies: Vec::new(),
  194. compile_sass: false,
  195. check_external_links: false,
  196. build_search_index: false,
  197. ignored_content: Vec::new(),
  198. ignored_content_globset: None,
  199. translations: HashMap::new(),
  200. extra_syntaxes: Vec::new(),
  201. extra: HashMap::new(),
  202. build_timestamp: Some(1),
  203. }
  204. }
  205. }
  206. /// Get and parse the config.
  207. /// If it doesn't succeed, exit
  208. pub fn get_config(path: &Path, filename: &str) -> Config {
  209. match Config::from_file(path.join(filename)) {
  210. Ok(c) => c,
  211. Err(e) => {
  212. println!("Failed to load {}", filename);
  213. println!("Error: {}", e);
  214. ::std::process::exit(1);
  215. }
  216. }
  217. }
  218. #[cfg(test)]
  219. mod tests {
  220. use super::{Config, Theme};
  221. #[test]
  222. fn can_import_valid_config() {
  223. let config = r#"
  224. title = "My site"
  225. base_url = "https://replace-this-with-your-url.com"
  226. "#;
  227. let config = Config::parse(config).unwrap();
  228. assert_eq!(config.title.unwrap(), "My site".to_string());
  229. }
  230. #[test]
  231. fn errors_when_invalid_type() {
  232. let config = r#"
  233. title = 1
  234. base_url = "https://replace-this-with-your-url.com"
  235. "#;
  236. let config = Config::parse(config);
  237. assert!(config.is_err());
  238. }
  239. #[test]
  240. fn errors_when_missing_required_field() {
  241. // base_url is required
  242. let config = r#"
  243. title = ""
  244. "#;
  245. let config = Config::parse(config);
  246. assert!(config.is_err());
  247. }
  248. #[test]
  249. fn can_add_extra_values() {
  250. let config = r#"
  251. title = "My site"
  252. base_url = "https://replace-this-with-your-url.com"
  253. [extra]
  254. hello = "world"
  255. "#;
  256. let config = Config::parse(config);
  257. assert!(config.is_ok());
  258. assert_eq!(config.unwrap().extra.get("hello").unwrap().as_str().unwrap(), "world");
  259. }
  260. #[test]
  261. fn can_make_url_index_page_with_non_trailing_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_index_page_with_railing_slash_url() {
  268. let mut config = Config::default();
  269. config.base_url = "http://vincent.is/".to_string();
  270. assert_eq!(config.make_permalink(""), "http://vincent.is/");
  271. }
  272. #[test]
  273. fn can_make_url_with_non_trailing_slash_base_url() {
  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_trailing_slash_path() {
  280. let mut config = Config::default();
  281. config.base_url = "http://vincent.is/".to_string();
  282. assert_eq!(config.make_permalink("/hello"), "http://vincent.is/hello/");
  283. }
  284. #[test]
  285. fn can_make_url_with_localhost() {
  286. let mut config = Config::default();
  287. config.base_url = "http://127.0.0.1:1111".to_string();
  288. assert_eq!(config.make_permalink("/tags/rust"), "http://127.0.0.1:1111/tags/rust/");
  289. }
  290. #[test]
  291. fn can_merge_with_theme_data_and_preserve_config_value() {
  292. let config_str = r#"
  293. title = "My site"
  294. base_url = "https://replace-this-with-your-url.com"
  295. [extra]
  296. hello = "world"
  297. "#;
  298. let mut config = Config::parse(config_str).unwrap();
  299. let theme_str = r#"
  300. [extra]
  301. hello = "foo"
  302. a_value = 10
  303. "#;
  304. let theme = Theme::parse(theme_str).unwrap();
  305. assert!(config.add_theme_extra(&theme).is_ok());
  306. let extra = config.extra;
  307. assert_eq!(extra["hello"].as_str().unwrap(), "world".to_string());
  308. assert_eq!(extra["a_value"].as_integer().unwrap(), 10);
  309. }
  310. #[test]
  311. fn can_use_language_configuration() {
  312. let config = r#"
  313. base_url = "https://remplace-par-ton-url.fr"
  314. default_language = "fr"
  315. [translations]
  316. [translations.fr]
  317. title = "Un titre"
  318. [translations.en]
  319. title = "A title"
  320. "#;
  321. let config = Config::parse(config);
  322. assert!(config.is_ok());
  323. let translations = config.unwrap().translations;
  324. assert_eq!(translations["fr"]["title"].as_str().unwrap(), "Un titre");
  325. assert_eq!(translations["en"]["title"].as_str().unwrap(), "A title");
  326. }
  327. #[test]
  328. fn missing_ignored_content_results_in_empty_vector_and_empty_globset() {
  329. let config_str = r#"
  330. title = "My site"
  331. base_url = "example.com"
  332. "#;
  333. let config = Config::parse(config_str).unwrap();
  334. let v = config.ignored_content;
  335. assert_eq!(v.len(), 0);
  336. assert!(config.ignored_content_globset.is_none());
  337. }
  338. #[test]
  339. fn empty_ignored_content_results_in_empty_vector_and_empty_globset() {
  340. let config_str = r#"
  341. title = "My site"
  342. base_url = "example.com"
  343. ignored_content = []
  344. "#;
  345. let config = Config::parse(config_str).unwrap();
  346. assert_eq!(config.ignored_content.len(), 0);
  347. assert!(config.ignored_content_globset.is_none());
  348. }
  349. #[test]
  350. fn non_empty_ignored_content_results_in_vector_of_patterns_and_configured_globset() {
  351. let config_str = r#"
  352. title = "My site"
  353. base_url = "example.com"
  354. ignored_content = ["*.{graphml,iso}", "*.py?"]
  355. "#;
  356. let config = Config::parse(config_str).unwrap();
  357. let v = config.ignored_content;
  358. assert_eq!(v, vec!["*.{graphml,iso}", "*.py?"]);
  359. let g = config.ignored_content_globset.unwrap();
  360. assert_eq!(g.len(), 2);
  361. assert!(g.is_match("foo.graphml"));
  362. assert!(g.is_match("foo.iso"));
  363. assert!(!g.is_match("foo.png"));
  364. assert!(g.is_match("foo.py2"));
  365. assert!(g.is_match("foo.py3"));
  366. assert!(!g.is_match("foo.py"));
  367. }
  368. }