use std::collections::HashMap; use std::path::{Path, PathBuf}; use std::result::Result as StdResult; use tera::{Tera, Context as TeraContext}; use serde::ser::{SerializeStruct, self}; use config::Config; use front_matter::{SectionFrontMatter, split_section_content}; use errors::{Result, ResultExt}; use utils::fs::{read_file, find_related_assets}; use utils::templates::render_template; use utils::site::get_reading_analytics; use rendering::{RenderContext, Header, render_content}; use page::Page; use file_info::FileInfo; #[derive(Clone, Debug, PartialEq)] pub struct Section { /// All info about the actual file pub file: FileInfo, /// The front matter meta-data pub meta: SectionFrontMatter, /// The URL path of the page pub path: String, /// The components for the path of that page pub components: Vec, /// The full URL for that page pub permalink: String, /// The actual content of the page, in markdown pub raw_content: String, /// The HTML rendered of the page pub content: String, /// All the non-md files we found next to the .md file pub assets: Vec, /// All direct pages of that section pub pages: Vec, /// All pages that cannot be sorted in this section pub ignored_pages: Vec, /// All direct subsections pub subsections: Vec
, /// Toc made from the headers of the markdown file pub toc: Vec
, /// How many words in the raw content pub word_count: Option, /// How long would it take to read the raw content. /// See `get_reading_analytics` on how it is calculated pub reading_time: Option, } impl Section { pub fn new>(file_path: P, meta: SectionFrontMatter) -> Section { let file_path = file_path.as_ref(); Section { file: FileInfo::new_section(file_path), meta, path: "".to_string(), components: vec![], permalink: "".to_string(), raw_content: "".to_string(), assets: vec![], content: "".to_string(), pages: vec![], ignored_pages: vec![], subsections: vec![], toc: vec![], word_count: None, reading_time: None, } } pub fn parse(file_path: &Path, content: &str, config: &Config) -> Result
{ let (meta, content) = split_section_content(file_path, content)?; let mut section = Section::new(file_path, meta); section.raw_content = content.clone(); let (word_count, reading_time) = get_reading_analytics(§ion.raw_content); section.word_count = Some(word_count); section.reading_time = Some(reading_time); section.path = format!("{}/", section.file.components.join("/")); section.components = section.path.split('/') .map(|p| p.to_string()) .filter(|p| !p.is_empty()) .collect::>(); section.permalink = config.make_permalink(§ion.path); Ok(section) } /// Read and parse a .md file into a Page struct pub fn from_file>(path: P, config: &Config) -> Result
{ let path = path.as_ref(); let content = read_file(path)?; let mut section = Section::parse(path, &content, config)?; let parent_dir = path.parent().unwrap(); let assets = find_related_assets(parent_dir); if let Some(ref globset) = config.ignored_content_globset { // `find_related_assets` only scans the immediate directory (it is not recursive) so our // filtering only needs to work against the file_name component, not the full suffix. If // `find_related_assets` was changed to also return files in subdirectories, we could // use `PathBuf.strip_prefix` to remove the parent directory and then glob-filter // against the remaining path. Note that the current behaviour effectively means that // the `ignored_content` setting in the config file is limited to single-file glob // patterns (no "**" patterns). section.assets = assets.into_iter() .filter(|path| match path.file_name() { None => true, Some(file) => !globset.is_match(file) } ).collect(); } else { section.assets = assets; } Ok(section) } pub fn get_template_name(&self) -> String { match self.meta.template { Some(ref l) => l.to_string(), None => { if self.is_index() { return "index.html".to_string(); } "section.html".to_string() } } } /// We need access to all pages url to render links relative to content /// so that can't happen at the same time as parsing pub fn render_markdown(&mut self, permalinks: &HashMap, tera: &Tera, config: &Config, base_path: &Path) -> Result<()> { let mut context = RenderContext::new( tera, config, &self.permalink, permalinks, base_path, self.meta.insert_anchor_links, ); context.tera_context.insert("section", self); let res = render_content(&self.raw_content, &context) .chain_err(|| format!("Failed to render content of {}", self.file.path.display()))?; self.content = res.body; self.toc = res.toc; Ok(()) } /// Renders the page using the default layout, unless specified in front-matter pub fn render_html(&self, tera: &Tera, config: &Config) -> Result { let tpl_name = self.get_template_name(); let mut context = TeraContext::new(); context.insert("config", config); context.insert("section", self); context.insert("current_url", &self.permalink); context.insert("current_path", &self.path); render_template(&tpl_name, tera, &context, &config.theme) .chain_err(|| format!("Failed to render section '{}'", self.file.path.display())) } /// Is this the index section? pub fn is_index(&self) -> bool { self.file.components.is_empty() } /// Returns all the paths of the pages belonging to that section pub fn all_pages_path(&self) -> Vec { let mut paths = vec![]; paths.extend(self.pages.iter().map(|p| p.file.path.clone())); paths.extend(self.ignored_pages.iter().map(|p| p.file.path.clone())); paths } /// Whether the page given belongs to that section pub fn is_child_page(&self, path: &PathBuf) -> bool { self.all_pages_path().contains(path) } /// Creates a vectors of asset URLs. fn serialize_assets(&self) -> Vec { self.assets.iter() .filter_map(|asset| asset.file_name()) .filter_map(|filename| filename.to_str()) .map(|filename| self.path.clone() + filename) .collect() } pub fn clone_without_pages(&self) -> Section { let mut subsections = vec![]; for subsection in &self.subsections { subsections.push(subsection.clone_without_pages()); } Section { file: self.file.clone(), meta: self.meta.clone(), path: self.path.clone(), components: self.components.clone(), permalink: self.permalink.clone(), raw_content: self.raw_content.clone(), content: self.content.clone(), assets: self.assets.clone(), toc: self.toc.clone(), subsections, pages: vec![], ignored_pages: vec![], word_count: self.word_count, reading_time: self.reading_time, } } } impl ser::Serialize for Section { fn serialize(&self, serializer: S) -> StdResult where S: ser::Serializer { let mut state = serializer.serialize_struct("section", 13)?; state.serialize_field("content", &self.content)?; state.serialize_field("permalink", &self.permalink)?; state.serialize_field("title", &self.meta.title)?; state.serialize_field("description", &self.meta.description)?; state.serialize_field("extra", &self.meta.extra)?; state.serialize_field("path", &self.path)?; state.serialize_field("components", &self.components)?; state.serialize_field("permalink", &self.permalink)?; state.serialize_field("pages", &self.pages)?; state.serialize_field("subsections", &self.subsections)?; state.serialize_field("word_count", &self.word_count)?; state.serialize_field("reading_time", &self.reading_time)?; state.serialize_field("toc", &self.toc)?; let assets = self.serialize_assets(); state.serialize_field("assets", &assets)?; state.end() } } /// Used to create a default index section if there is no _index.md in the root content directory impl Default for Section { fn default() -> Section { Section { file: FileInfo::default(), meta: SectionFrontMatter::default(), path: "".to_string(), components: vec![], permalink: "".to_string(), raw_content: "".to_string(), assets: vec![], content: "".to_string(), pages: vec![], ignored_pages: vec![], subsections: vec![], toc: vec![], reading_time: None, word_count: None, } } } #[cfg(test)] mod tests { use std::io::Write; use std::fs::{File, create_dir}; use tempfile::tempdir; use globset::{Glob, GlobSetBuilder}; use config::Config; use super::Section; #[test] fn section_with_assets_gets_right_info() { let tmp_dir = tempdir().expect("create temp dir"); let path = tmp_dir.path(); create_dir(&path.join("content")).expect("create content temp dir"); create_dir(&path.join("content").join("posts")).expect("create posts temp dir"); let nested_path = path.join("content").join("posts").join("with-assets"); create_dir(&nested_path).expect("create nested temp dir"); let mut f = File::create(nested_path.join("_index.md")).unwrap(); f.write_all(b"+++\n+++\n").unwrap(); File::create(nested_path.join("example.js")).unwrap(); File::create(nested_path.join("graph.jpg")).unwrap(); File::create(nested_path.join("fail.png")).unwrap(); let res = Section::from_file( nested_path.join("_index.md").as_path(), &Config::default(), ); assert!(res.is_ok()); let section = res.unwrap(); assert_eq!(section.assets.len(), 3); assert_eq!(section.permalink, "http://a-website.com/posts/with-assets/"); } #[test] fn section_with_ignored_assets_filters_out_correct_files() { let tmp_dir = tempdir().expect("create temp dir"); let path = tmp_dir.path(); create_dir(&path.join("content")).expect("create content temp dir"); create_dir(&path.join("content").join("posts")).expect("create posts temp dir"); let nested_path = path.join("content").join("posts").join("with-assets"); create_dir(&nested_path).expect("create nested temp dir"); let mut f = File::create(nested_path.join("_index.md")).unwrap(); f.write_all(b"+++\nslug=\"hey\"\n+++\n").unwrap(); File::create(nested_path.join("example.js")).unwrap(); File::create(nested_path.join("graph.jpg")).unwrap(); File::create(nested_path.join("fail.png")).unwrap(); let mut gsb = GlobSetBuilder::new(); gsb.add(Glob::new("*.{js,png}").unwrap()); let mut config = Config::default(); config.ignored_content_globset = Some(gsb.build().unwrap()); let res = Section::from_file( nested_path.join("_index.md").as_path(), &config, ); assert!(res.is_ok()); let page = res.unwrap(); assert_eq!(page.assets.len(), 1); assert_eq!(page.assets[0].file_name().unwrap().to_str(), Some("graph.jpg")); } }