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.

465 lines
14KB

  1. #[macro_use]
  2. extern crate serde_derive;
  3. extern crate toml;
  4. #[macro_use]
  5. extern crate errors;
  6. extern crate chrono;
  7. extern crate globset;
  8. extern crate highlighting;
  9. use std::collections::HashMap;
  10. use std::fs::File;
  11. use std::io::prelude::*;
  12. use std::path::{Path, PathBuf};
  13. use chrono::Utc;
  14. use globset::{Glob, GlobSet, GlobSetBuilder};
  15. use toml::Value as Toml;
  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 to search for additional `.sublime-syntax` files in.
  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!(
  123. "Invalid ignored_content glob pattern: {}, error = {}",
  124. pat,
  125. e
  126. ),
  127. };
  128. glob_set_builder.add(glob);
  129. }
  130. config.ignored_content_globset = Some(
  131. glob_set_builder
  132. .build()
  133. .expect("Bad ignored_content in config file."),
  134. );
  135. }
  136. Ok(config)
  137. }
  138. /// Parses a config file from the given path
  139. pub fn from_file<P: AsRef<Path>>(path: P) -> Result<Config> {
  140. let mut content = String::new();
  141. let path = path.as_ref();
  142. let file_name = path.file_name().unwrap();
  143. File::open(path)
  144. .chain_err(|| {
  145. format!(
  146. "No `{:?}` file found. Are you in the right directory?",
  147. file_name
  148. )
  149. })?
  150. .read_to_string(&mut content)?;
  151. Config::parse(&content)
  152. }
  153. /// Makes a url, taking into account that the base url might have a trailing slash
  154. pub fn make_permalink(&self, path: &str) -> String {
  155. let trailing_bit = if path.ends_with('/') || path.is_empty() {
  156. ""
  157. } else {
  158. "/"
  159. };
  160. // Index section with a base url that has a trailing slash
  161. if self.base_url.ends_with('/') && path == "/" {
  162. self.base_url.clone()
  163. } else if path == "/" {
  164. // index section with a base url that doesn't have a trailing slash
  165. format!("{}/", self.base_url)
  166. } else if self.base_url.ends_with('/') && path.starts_with('/') {
  167. format!("{}{}{}", self.base_url, &path[1..], trailing_bit)
  168. } else if self.base_url.ends_with('/') || path.starts_with('/') {
  169. format!("{}{}{}", self.base_url, path, trailing_bit)
  170. } else {
  171. format!("{}/{}{}", self.base_url, path, trailing_bit)
  172. }
  173. }
  174. /// Merges the extra data from the theme with the config extra data
  175. fn add_theme_extra(&mut self, theme: &Theme) -> Result<()> {
  176. // 3 pass merging
  177. // 1. save config to preserve user
  178. let original = self.extra.clone();
  179. // 2. inject theme extra values
  180. for (key, val) in &theme.extra {
  181. self.extra
  182. .entry(key.to_string())
  183. .or_insert_with(|| val.clone());
  184. }
  185. // 3. overwrite with original config
  186. for (key, val) in &original {
  187. self.extra
  188. .entry(key.to_string())
  189. .or_insert_with(|| val.clone());
  190. }
  191. Ok(())
  192. }
  193. /// Parse the theme.toml file and merges the extra data from the theme
  194. /// with the config extra data
  195. pub fn merge_with_theme(&mut self, path: &PathBuf) -> Result<()> {
  196. let theme = Theme::from_file(path)?;
  197. self.add_theme_extra(&theme)
  198. }
  199. }
  200. impl Default for Config {
  201. fn default() -> Config {
  202. Config {
  203. base_url: DEFAULT_BASE_URL.to_string(),
  204. title: None,
  205. description: None,
  206. theme: None,
  207. highlight_code: false,
  208. highlight_theme: "base16-ocean-dark".to_string(),
  209. default_language: "en".to_string(),
  210. generate_rss: false,
  211. rss_limit: 10_000,
  212. taxonomies: Vec::new(),
  213. compile_sass: false,
  214. check_external_links: false,
  215. build_search_index: false,
  216. ignored_content: Vec::new(),
  217. ignored_content_globset: None,
  218. translations: HashMap::new(),
  219. extra_syntaxes: Vec::new(),
  220. extra: HashMap::new(),
  221. build_timestamp: Some(1),
  222. }
  223. }
  224. }
  225. /// Get and parse the config.
  226. /// If it doesn't succeed, exit
  227. pub fn get_config(path: &Path, filename: &str) -> Config {
  228. match Config::from_file(path.join(filename)) {
  229. Ok(c) => c,
  230. Err(e) => {
  231. println!("Failed to load {}", filename);
  232. println!("Error: {}", e);
  233. ::std::process::exit(1);
  234. }
  235. }
  236. }
  237. #[cfg(test)]
  238. mod tests {
  239. use super::{Config, Theme};
  240. #[test]
  241. fn can_import_valid_config() {
  242. let config = r#"
  243. title = "My site"
  244. base_url = "https://replace-this-with-your-url.com"
  245. "#;
  246. let config = Config::parse(config).unwrap();
  247. assert_eq!(config.title.unwrap(), "My site".to_string());
  248. }
  249. #[test]
  250. fn errors_when_invalid_type() {
  251. let config = r#"
  252. title = 1
  253. base_url = "https://replace-this-with-your-url.com"
  254. "#;
  255. let config = Config::parse(config);
  256. assert!(config.is_err());
  257. }
  258. #[test]
  259. fn errors_when_missing_required_field() {
  260. // base_url is required
  261. let config = r#"
  262. title = ""
  263. "#;
  264. let config = Config::parse(config);
  265. assert!(config.is_err());
  266. }
  267. #[test]
  268. fn can_add_extra_values() {
  269. let config = r#"
  270. title = "My site"
  271. base_url = "https://replace-this-with-your-url.com"
  272. [extra]
  273. hello = "world"
  274. "#;
  275. let config = Config::parse(config);
  276. assert!(config.is_ok());
  277. assert_eq!(
  278. config
  279. .unwrap()
  280. .extra
  281. .get("hello")
  282. .unwrap()
  283. .as_str()
  284. .unwrap(),
  285. "world"
  286. );
  287. }
  288. #[test]
  289. fn can_make_url_index_page_with_non_trailing_slash_url() {
  290. let mut config = Config::default();
  291. config.base_url = "http://vincent.is".to_string();
  292. assert_eq!(config.make_permalink(""), "http://vincent.is/");
  293. }
  294. #[test]
  295. fn can_make_url_index_page_with_railing_slash_url() {
  296. let mut config = Config::default();
  297. config.base_url = "http://vincent.is/".to_string();
  298. assert_eq!(config.make_permalink(""), "http://vincent.is/");
  299. }
  300. #[test]
  301. fn can_make_url_with_non_trailing_slash_base_url() {
  302. let mut config = Config::default();
  303. config.base_url = "http://vincent.is".to_string();
  304. assert_eq!(config.make_permalink("hello"), "http://vincent.is/hello/");
  305. }
  306. #[test]
  307. fn can_make_url_with_trailing_slash_path() {
  308. let mut config = Config::default();
  309. config.base_url = "http://vincent.is/".to_string();
  310. assert_eq!(config.make_permalink("/hello"), "http://vincent.is/hello/");
  311. }
  312. #[test]
  313. fn can_make_url_with_localhost() {
  314. let mut config = Config::default();
  315. config.base_url = "http://127.0.0.1:1111".to_string();
  316. assert_eq!(
  317. config.make_permalink("/tags/rust"),
  318. "http://127.0.0.1:1111/tags/rust/"
  319. );
  320. }
  321. #[test]
  322. fn can_merge_with_theme_data_and_preserve_config_value() {
  323. let config_str = r#"
  324. title = "My site"
  325. base_url = "https://replace-this-with-your-url.com"
  326. [extra]
  327. hello = "world"
  328. "#;
  329. let mut config = Config::parse(config_str).unwrap();
  330. let theme_str = r#"
  331. [extra]
  332. hello = "foo"
  333. a_value = 10
  334. "#;
  335. let theme = Theme::parse(theme_str).unwrap();
  336. assert!(config.add_theme_extra(&theme).is_ok());
  337. let extra = config.extra;
  338. assert_eq!(extra["hello"].as_str().unwrap(), "world".to_string());
  339. assert_eq!(extra["a_value"].as_integer().unwrap(), 10);
  340. }
  341. #[test]
  342. fn can_use_language_configuration() {
  343. let config = r#"
  344. base_url = "https://remplace-par-ton-url.fr"
  345. default_language = "fr"
  346. [translations]
  347. [translations.fr]
  348. title = "Un titre"
  349. [translations.en]
  350. title = "A title"
  351. "#;
  352. let config = Config::parse(config);
  353. assert!(config.is_ok());
  354. let translations = config.unwrap().translations;
  355. assert_eq!(translations["fr"]["title"].as_str().unwrap(), "Un titre");
  356. assert_eq!(translations["en"]["title"].as_str().unwrap(), "A title");
  357. }
  358. #[test]
  359. fn missing_ignored_content_results_in_empty_vector_and_empty_globset() {
  360. let config_str = r#"
  361. title = "My site"
  362. base_url = "example.com"
  363. "#;
  364. let config = Config::parse(config_str).unwrap();
  365. let v = config.ignored_content;
  366. assert_eq!(v.len(), 0);
  367. assert!(config.ignored_content_globset.is_none());
  368. }
  369. #[test]
  370. fn empty_ignored_content_results_in_empty_vector_and_empty_globset() {
  371. let config_str = r#"
  372. title = "My site"
  373. base_url = "example.com"
  374. ignored_content = []
  375. "#;
  376. let config = Config::parse(config_str).unwrap();
  377. assert_eq!(config.ignored_content.len(), 0);
  378. assert!(config.ignored_content_globset.is_none());
  379. }
  380. #[test]
  381. fn non_empty_ignored_content_results_in_vector_of_patterns_and_configured_globset() {
  382. let config_str = r#"
  383. title = "My site"
  384. base_url = "example.com"
  385. ignored_content = ["*.{graphml,iso}", "*.py?"]
  386. "#;
  387. let config = Config::parse(config_str).unwrap();
  388. let v = config.ignored_content;
  389. assert_eq!(v, vec!["*.{graphml,iso}", "*.py?"]);
  390. let g = config.ignored_content_globset.unwrap();
  391. assert_eq!(g.len(), 2);
  392. assert!(g.is_match("foo.graphml"));
  393. assert!(g.is_match("foo.iso"));
  394. assert!(!g.is_match("foo.png"));
  395. assert!(g.is_match("foo.py2"));
  396. assert!(g.is_match("foo.py3"));
  397. assert!(!g.is_match("foo.py"));
  398. }
  399. }