Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago Filter ignored content in page.rs.
* Add ignored_content to the Config structure.
* Use the GlobSet crate to parse the glob patterns into a matcher, which
is created once at program initialization. If there are no patterns in
ignored_content, an empty globber is created, which excludes no files.
This is consistent with the existing behaviour of Gutenberg, before
this feature was added.
* Bail if there are any errors in the glob patterns.
* Add a call to the globber in page.rs to actually do the filtering.
* Update documentation.
A note on the Config structure
------------------------------
* I had to remove the PartialEq derive from the Config structure as it
does not work for the GlobSet type. No harm is done, Config does not
need to be PartialEq anyway, since there is no need to sort Configs.
* The implementation follows the pattern of the existing config settings
in that it uses an Option<...>. This would appear unnecessary, in that
an empty vec could be used as the default, but it appears to be needed
by the TOML parsing. A better approach would be to use a separate
SerializableConfig and map to/from a Config struct. This would also
allow the elimination of most, if not all, of the other Options in
the Config structure, but that ought to be another PR.
6 years ago |
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466 |
- #[macro_use]
- extern crate serde_derive;
- extern crate toml;
- #[macro_use]
- extern crate errors;
- extern crate chrono;
- extern crate globset;
- extern crate highlighting;
-
- use std::collections::HashMap;
- use std::fs::File;
- use std::io::prelude::*;
- use std::path::{Path, PathBuf};
-
- use chrono::Utc;
- use globset::{Glob, GlobSet, GlobSetBuilder};
- use toml::Value as Toml;
-
- use errors::{Result, ResultExt};
- use highlighting::THEME_SET;
-
- mod theme;
-
- use theme::Theme;
-
- // We want a default base url for tests
- static DEFAULT_BASE_URL: &'static str = "http://a-website.com";
-
- #[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
- #[serde(default)]
- pub struct Taxonomy {
- /// The name used in the URL, usually the plural
- pub name: String,
- /// If this is set, the list of individual taxonomy term page will be paginated
- /// by this much
- pub paginate_by: Option<usize>,
- pub paginate_path: Option<String>,
- /// Whether to generate a RSS feed only for each taxonomy term, defaults to false
- pub rss: bool,
- }
-
- impl Taxonomy {
- pub fn is_paginated(&self) -> bool {
- if let Some(paginate_by) = self.paginate_by {
- paginate_by > 0
- } else {
- false
- }
- }
- }
-
- impl Default for Taxonomy {
- fn default() -> Taxonomy {
- Taxonomy {
- name: String::new(),
- paginate_by: None,
- paginate_path: None,
- rss: false,
- }
- }
- }
-
- #[derive(Clone, Debug, Serialize, Deserialize)]
- #[serde(default)]
- pub struct Config {
- /// Base URL of the site, the only required config argument
- pub base_url: String,
-
- /// Theme to use
- pub theme: Option<String>,
- /// Title of the site. Defaults to None
- pub title: Option<String>,
- /// Description of the site
- pub description: Option<String>,
-
- /// The language used in the site. Defaults to "en"
- pub default_language: String,
- /// Languages list and translated strings
- pub translations: HashMap<String, Toml>,
-
- /// Whether to highlight all code blocks found in markdown files. Defaults to false
- pub highlight_code: bool,
- /// Which themes to use for code highlighting. See Readme for supported themes
- /// Defaults to "base16-ocean-dark"
- pub highlight_theme: String,
-
- /// Whether to generate RSS. Defaults to false
- pub generate_rss: bool,
- /// The number of articles to include in the RSS feed. Defaults to 10_000
- pub rss_limit: usize,
-
- pub taxonomies: Vec<Taxonomy>,
-
- /// Whether to compile the `sass` directory and output the css files into the static folder
- pub compile_sass: bool,
- /// Whether to build the search index for the content
- pub build_search_index: bool,
- /// A list of file glob patterns to ignore when processing the content folder. Defaults to none.
- /// Had to remove the PartialEq derive because GlobSet does not implement it. No impact
- /// because it's unused anyway (who wants to sort Configs?).
- pub ignored_content: Vec<String>,
- #[serde(skip_serializing, skip_deserializing)] // not a typo, 2 are needed
- pub ignored_content_globset: Option<GlobSet>,
-
- /// Whether to check all external links for validity
- pub check_external_links: bool,
-
- /// A list of directories to search for additional `.sublime-syntax` files in.
- pub extra_syntaxes: Vec<String>,
-
- /// All user params set in [extra] in the config
- pub extra: HashMap<String, Toml>,
-
- /// Set automatically when instantiating the config. Used for cachebusting
- pub build_timestamp: Option<i64>,
- }
-
- impl Config {
- /// Parses a string containing TOML to our Config struct
- /// Any extra parameter will end up in the extra field
- pub fn parse(content: &str) -> Result<Config> {
- let mut config: Config = match toml::from_str(content) {
- Ok(c) => c,
- Err(e) => bail!(e),
- };
-
- if config.base_url.is_empty() || config.base_url == DEFAULT_BASE_URL {
- bail!("A base URL is required in config.toml with key `base_url`");
- }
-
- if !THEME_SET.themes.contains_key(&config.highlight_theme) {
- bail!("Highlight theme {} not available", config.highlight_theme)
- }
-
- config.build_timestamp = Some(Utc::now().timestamp());
-
- if !config.ignored_content.is_empty() {
- // Convert the file glob strings into a compiled glob set matcher. We want to do this once,
- // at program initialization, rather than for every page, for example. We arrange for the
- // globset matcher to always exist (even though it has to be an inside an Option at the
- // moment because of the TOML serializer); if the glob set is empty the `is_match` function
- // of the globber always returns false.
- let mut glob_set_builder = GlobSetBuilder::new();
- for pat in &config.ignored_content {
- let glob = match Glob::new(pat) {
- Ok(g) => g,
- Err(e) => bail!(
- "Invalid ignored_content glob pattern: {}, error = {}",
- pat,
- e
- ),
- };
- glob_set_builder.add(glob);
- }
- config.ignored_content_globset = Some(
- glob_set_builder
- .build()
- .expect("Bad ignored_content in config file."),
- );
- }
-
- Ok(config)
- }
-
- /// Parses a config file from the given path
- pub fn from_file<P: AsRef<Path>>(path: P) -> Result<Config> {
- let mut content = String::new();
- let path = path.as_ref();
- let file_name = path.file_name().unwrap();
- File::open(path)
- .chain_err(|| {
- format!(
- "No `{:?}` file found. Are you in the right directory?",
- file_name
- )
- })?
- .read_to_string(&mut content)?;
-
- Config::parse(&content)
- }
-
- /// Makes a url, taking into account that the base url might have a trailing slash
- pub fn make_permalink(&self, path: &str) -> String {
- let trailing_bit = if path.ends_with('/') || path.is_empty() {
- ""
- } else {
- "/"
- };
-
- // Index section with a base url that has a trailing slash
- if self.base_url.ends_with('/') && path == "/" {
- self.base_url.clone()
- } else if path == "/" {
- // index section with a base url that doesn't have a trailing slash
- format!("{}/", self.base_url)
- } else if self.base_url.ends_with('/') && path.starts_with('/') {
- format!("{}{}{}", self.base_url, &path[1..], trailing_bit)
- } else if self.base_url.ends_with('/') {
- format!("{}{}{}", self.base_url, path, trailing_bit)
- } else if path.starts_with('/') {
- format!("{}{}{}", self.base_url, path, trailing_bit)
- } else {
- format!("{}/{}{}", self.base_url, path, trailing_bit)
- }
- }
-
- /// Merges the extra data from the theme with the config extra data
- fn add_theme_extra(&mut self, theme: &Theme) -> Result<()> {
- // 3 pass merging
- // 1. save config to preserve user
- let original = self.extra.clone();
- // 2. inject theme extra values
- for (key, val) in &theme.extra {
- self.extra
- .entry(key.to_string())
- .or_insert_with(|| val.clone());
- }
-
- // 3. overwrite with original config
- for (key, val) in &original {
- self.extra
- .entry(key.to_string())
- .or_insert_with(|| val.clone());
- }
-
- Ok(())
- }
-
- /// Parse the theme.toml file and merges the extra data from the theme
- /// with the config extra data
- pub fn merge_with_theme(&mut self, path: &PathBuf) -> Result<()> {
- let theme = Theme::from_file(path)?;
- self.add_theme_extra(&theme)
- }
- }
-
- impl Default for Config {
- fn default() -> Config {
- Config {
- base_url: DEFAULT_BASE_URL.to_string(),
- title: None,
- description: None,
- theme: None,
- highlight_code: true,
- highlight_theme: "base16-ocean-dark".to_string(),
- default_language: "en".to_string(),
- generate_rss: false,
- rss_limit: 10_000,
- taxonomies: Vec::new(),
- compile_sass: false,
- check_external_links: false,
- build_search_index: false,
- ignored_content: Vec::new(),
- ignored_content_globset: None,
- translations: HashMap::new(),
- extra_syntaxes: Vec::new(),
- extra: HashMap::new(),
- build_timestamp: Some(1),
- }
- }
- }
-
- /// Get and parse the config.
- /// If it doesn't succeed, exit
- pub fn get_config(path: &Path, filename: &str) -> Config {
- match Config::from_file(path.join(filename)) {
- Ok(c) => c,
- Err(e) => {
- println!("Failed to load {}", filename);
- println!("Error: {}", e);
- ::std::process::exit(1);
- }
- }
- }
-
- #[cfg(test)]
- mod tests {
- use super::{Config, Theme};
-
- #[test]
- fn can_import_valid_config() {
- let config = r#"
- title = "My site"
- base_url = "https://replace-this-with-your-url.com"
- "#;
-
- let config = Config::parse(config).unwrap();
- assert_eq!(config.title.unwrap(), "My site".to_string());
- }
-
- #[test]
- fn errors_when_invalid_type() {
- let config = r#"
- title = 1
- base_url = "https://replace-this-with-your-url.com"
- "#;
-
- let config = Config::parse(config);
- assert!(config.is_err());
- }
-
- #[test]
- fn errors_when_missing_required_field() {
- // base_url is required
- let config = r#"
- title = ""
- "#;
-
- let config = Config::parse(config);
- assert!(config.is_err());
- }
-
- #[test]
- fn can_add_extra_values() {
- let config = r#"
- title = "My site"
- base_url = "https://replace-this-with-your-url.com"
-
- [extra]
- hello = "world"
- "#;
-
- let config = Config::parse(config);
- assert!(config.is_ok());
- assert_eq!(
- config
- .unwrap()
- .extra
- .get("hello")
- .unwrap()
- .as_str()
- .unwrap(),
- "world"
- );
- }
-
- #[test]
- fn can_make_url_index_page_with_non_trailing_slash_url() {
- let mut config = Config::default();
- config.base_url = "http://vincent.is".to_string();
- assert_eq!(config.make_permalink(""), "http://vincent.is/");
- }
-
- #[test]
- fn can_make_url_index_page_with_railing_slash_url() {
- let mut config = Config::default();
- config.base_url = "http://vincent.is/".to_string();
- assert_eq!(config.make_permalink(""), "http://vincent.is/");
- }
-
- #[test]
- fn can_make_url_with_non_trailing_slash_base_url() {
- let mut config = Config::default();
- config.base_url = "http://vincent.is".to_string();
- assert_eq!(config.make_permalink("hello"), "http://vincent.is/hello/");
- }
-
- #[test]
- fn can_make_url_with_trailing_slash_path() {
- let mut config = Config::default();
- config.base_url = "http://vincent.is/".to_string();
- assert_eq!(config.make_permalink("/hello"), "http://vincent.is/hello/");
- }
-
- #[test]
- fn can_make_url_with_localhost() {
- let mut config = Config::default();
- config.base_url = "http://127.0.0.1:1111".to_string();
- assert_eq!(
- config.make_permalink("/tags/rust"),
- "http://127.0.0.1:1111/tags/rust/"
- );
- }
-
- #[test]
- fn can_merge_with_theme_data_and_preserve_config_value() {
- let config_str = r#"
- title = "My site"
- base_url = "https://replace-this-with-your-url.com"
-
- [extra]
- hello = "world"
- "#;
- let mut config = Config::parse(config_str).unwrap();
- let theme_str = r#"
- [extra]
- hello = "foo"
- a_value = 10
- "#;
- let theme = Theme::parse(theme_str).unwrap();
- assert!(config.add_theme_extra(&theme).is_ok());
- let extra = config.extra;
- assert_eq!(extra["hello"].as_str().unwrap(), "world".to_string());
- assert_eq!(extra["a_value"].as_integer().unwrap(), 10);
- }
-
- #[test]
- fn can_use_language_configuration() {
- let config = r#"
- base_url = "https://remplace-par-ton-url.fr"
- default_language = "fr"
-
- [translations]
- [translations.fr]
- title = "Un titre"
-
- [translations.en]
- title = "A title"
-
- "#;
-
- let config = Config::parse(config);
- assert!(config.is_ok());
- let translations = config.unwrap().translations;
- assert_eq!(translations["fr"]["title"].as_str().unwrap(), "Un titre");
- assert_eq!(translations["en"]["title"].as_str().unwrap(), "A title");
- }
-
- #[test]
- fn missing_ignored_content_results_in_empty_vector_and_empty_globset() {
- let config_str = r#"
- title = "My site"
- base_url = "example.com"
- "#;
-
- let config = Config::parse(config_str).unwrap();
- let v = config.ignored_content;
- assert_eq!(v.len(), 0);
- assert!(config.ignored_content_globset.is_none());
- }
-
- #[test]
- fn empty_ignored_content_results_in_empty_vector_and_empty_globset() {
- let config_str = r#"
- title = "My site"
- base_url = "example.com"
- ignored_content = []
- "#;
-
- let config = Config::parse(config_str).unwrap();
- assert_eq!(config.ignored_content.len(), 0);
- assert!(config.ignored_content_globset.is_none());
- }
-
- #[test]
- fn non_empty_ignored_content_results_in_vector_of_patterns_and_configured_globset() {
- let config_str = r#"
- title = "My site"
- base_url = "example.com"
- ignored_content = ["*.{graphml,iso}", "*.py?"]
- "#;
-
- let config = Config::parse(config_str).unwrap();
- let v = config.ignored_content;
- assert_eq!(v, vec!["*.{graphml,iso}", "*.py?"]);
-
- let g = config.ignored_content_globset.unwrap();
- assert_eq!(g.len(), 2);
- assert!(g.is_match("foo.graphml"));
- assert!(g.is_match("foo.iso"));
- assert!(!g.is_match("foo.png"));
- assert!(g.is_match("foo.py2"));
- assert!(g.is_match("foo.py3"));
- assert!(!g.is_match("foo.py"));
- }
- }
|