2016-12-06 08:27:03 +00:00
|
|
|
/// A page, can be a blog post or a basic page
|
2017-03-27 14:17:33 +00:00
|
|
|
use std::collections::HashMap;
|
2017-03-12 03:54:57 +00:00
|
|
|
use std::path::{Path, PathBuf};
|
2017-02-23 08:34:57 +00:00
|
|
|
use std::result::Result as StdResult;
|
2016-12-06 08:27:03 +00:00
|
|
|
|
2016-12-13 06:22:24 +00:00
|
|
|
|
2017-02-23 08:34:57 +00:00
|
|
|
use tera::{Tera, Context};
|
|
|
|
use serde::ser::{SerializeStruct, self};
|
2017-03-03 08:12:40 +00:00
|
|
|
use slug::slugify;
|
2016-12-06 08:27:03 +00:00
|
|
|
|
2016-12-11 06:05:03 +00:00
|
|
|
use errors::{Result, ResultExt};
|
2016-12-06 12:48:23 +00:00
|
|
|
use config::Config;
|
2017-05-15 03:23:19 +00:00
|
|
|
use front_matter::{PageFrontMatter, split_page_content};
|
2017-03-07 12:34:31 +00:00
|
|
|
use markdown::markdown_to_html;
|
2017-05-15 07:26:11 +00:00
|
|
|
use utils::{read_file};
|
|
|
|
use content::utils::{find_related_assets, find_content_components, get_reading_analytics};
|
2016-12-06 08:27:03 +00:00
|
|
|
|
|
|
|
|
2016-12-06 11:53:14 +00:00
|
|
|
|
2017-03-14 12:25:45 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq)]
|
2016-12-11 06:05:03 +00:00
|
|
|
pub struct Page {
|
2017-05-13 04:01:38 +00:00
|
|
|
/// The front matter meta-data
|
|
|
|
pub meta: PageFrontMatter,
|
2017-03-14 12:25:45 +00:00
|
|
|
/// The .md path
|
|
|
|
pub file_path: PathBuf,
|
2017-03-27 14:17:33 +00:00
|
|
|
/// The .md path, starting from the content directory, with / slashes
|
|
|
|
pub relative_path: String,
|
2017-03-14 12:25:45 +00:00
|
|
|
/// The parent directory of the file. Is actually the grand parent directory
|
|
|
|
/// if it's an asset folder
|
|
|
|
pub parent_path: PathBuf,
|
2017-02-23 08:34:57 +00:00
|
|
|
/// The name of the .md file
|
2017-03-14 12:25:45 +00:00
|
|
|
pub file_name: String,
|
|
|
|
/// The directories above our .md file
|
|
|
|
/// for example a file at content/kb/solutions/blabla.md will have 2 components:
|
2017-02-23 08:34:57 +00:00
|
|
|
/// `kb` and `solutions`
|
2017-03-14 12:25:45 +00:00
|
|
|
pub components: Vec<String>,
|
2017-02-23 08:34:57 +00:00
|
|
|
/// The actual content of the page, in markdown
|
2016-12-13 09:05:59 +00:00
|
|
|
pub raw_content: String,
|
2017-03-12 03:54:57 +00:00
|
|
|
/// All the non-md files we found next to the .md file
|
|
|
|
pub assets: Vec<PathBuf>,
|
2017-02-23 08:34:57 +00:00
|
|
|
/// The HTML rendered of the page
|
2016-12-11 06:05:03 +00:00
|
|
|
pub content: String,
|
2017-03-06 14:45:57 +00:00
|
|
|
|
|
|
|
/// The slug of that page.
|
|
|
|
/// First tries to find the slug in the meta and defaults to filename otherwise
|
|
|
|
pub slug: String,
|
2017-03-30 08:17:12 +00:00
|
|
|
/// The URL path of the page
|
|
|
|
pub path: String,
|
2017-03-06 14:45:57 +00:00
|
|
|
/// The full URL for that page
|
|
|
|
pub permalink: String,
|
2017-04-20 02:48:14 +00:00
|
|
|
/// The summary for the article, defaults to None
|
2017-03-07 03:42:14 +00:00
|
|
|
/// When <!-- more --> is found in the text, will take the content up to that part
|
|
|
|
/// as summary
|
2017-04-20 02:48:14 +00:00
|
|
|
pub summary: Option<String>,
|
2017-03-06 14:45:57 +00:00
|
|
|
|
2017-04-24 09:11:51 +00:00
|
|
|
/// The previous page, by whatever sorting is used for the index/section
|
2017-02-23 08:34:57 +00:00
|
|
|
pub previous: Option<Box<Page>>,
|
2017-04-24 09:11:51 +00:00
|
|
|
/// The next page, by whatever sorting is used for the index/section
|
2017-02-23 08:34:57 +00:00
|
|
|
pub next: Option<Box<Page>>,
|
2016-12-06 08:27:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-23 08:34:57 +00:00
|
|
|
impl Page {
|
2017-05-13 04:01:38 +00:00
|
|
|
pub fn new(meta: PageFrontMatter) -> Page {
|
2016-12-06 11:53:14 +00:00
|
|
|
Page {
|
2017-05-13 04:01:38 +00:00
|
|
|
meta: meta,
|
2017-03-14 12:25:45 +00:00
|
|
|
file_path: PathBuf::new(),
|
2017-03-27 14:17:33 +00:00
|
|
|
relative_path: String::new(),
|
2017-03-14 12:25:45 +00:00
|
|
|
parent_path: PathBuf::new(),
|
|
|
|
file_name: "".to_string(),
|
|
|
|
components: vec![],
|
2016-12-13 06:22:24 +00:00
|
|
|
raw_content: "".to_string(),
|
2017-03-12 03:54:57 +00:00
|
|
|
assets: vec![],
|
2016-12-06 11:53:14 +00:00
|
|
|
content: "".to_string(),
|
2017-03-06 14:45:57 +00:00
|
|
|
slug: "".to_string(),
|
2017-03-30 08:17:12 +00:00
|
|
|
path: "".to_string(),
|
2017-03-06 14:45:57 +00:00
|
|
|
permalink: "".to_string(),
|
2017-04-20 02:48:14 +00:00
|
|
|
summary: None,
|
2017-02-23 08:34:57 +00:00
|
|
|
previous: None,
|
|
|
|
next: None,
|
2016-12-06 11:53:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-12 03:54:57 +00:00
|
|
|
/// Parse a page given the content of the .md file
|
|
|
|
/// Files without front matter or with invalid front matter are considered
|
|
|
|
/// erroneous
|
2017-03-14 12:25:45 +00:00
|
|
|
pub fn parse(file_path: &Path, content: &str, config: &Config) -> Result<Page> {
|
2016-12-06 08:27:03 +00:00
|
|
|
// 1. separate front matter from content
|
2017-05-13 04:01:38 +00:00
|
|
|
let (meta, content) = split_page_content(file_path, content)?;
|
2017-02-23 08:34:57 +00:00
|
|
|
let mut page = Page::new(meta);
|
2017-03-14 12:25:45 +00:00
|
|
|
page.file_path = file_path.to_path_buf();
|
|
|
|
page.parent_path = page.file_path.parent().unwrap().to_path_buf();
|
|
|
|
page.raw_content = content;
|
2017-03-07 03:42:14 +00:00
|
|
|
|
2017-03-14 12:25:45 +00:00
|
|
|
let path = Path::new(file_path);
|
|
|
|
page.file_name = path.file_stem().unwrap().to_string_lossy().to_string();
|
|
|
|
|
2017-03-06 14:45:57 +00:00
|
|
|
page.slug = {
|
|
|
|
if let Some(ref slug) = page.meta.slug {
|
2017-03-07 07:43:27 +00:00
|
|
|
slug.trim().to_string()
|
2017-03-06 14:45:57 +00:00
|
|
|
} else {
|
2017-03-14 12:25:45 +00:00
|
|
|
slugify(page.file_name.clone())
|
2017-03-06 14:45:57 +00:00
|
|
|
}
|
|
|
|
};
|
2017-03-27 14:17:33 +00:00
|
|
|
page.components = find_content_components(&page.file_path);
|
|
|
|
page.relative_path = format!("{}/{}.md", page.components.join("/"), page.file_name);
|
2017-03-06 14:45:57 +00:00
|
|
|
|
2017-02-23 08:34:57 +00:00
|
|
|
// 4. Find sections
|
2016-12-13 10:14:49 +00:00
|
|
|
// Pages with custom urls exists outside of sections
|
2017-05-09 12:47:02 +00:00
|
|
|
let mut path_set = false;
|
2017-03-06 14:45:57 +00:00
|
|
|
if let Some(ref u) = page.meta.url {
|
2017-03-30 08:17:12 +00:00
|
|
|
page.path = u.trim().to_string();
|
2017-05-09 12:47:02 +00:00
|
|
|
path_set = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if !page.components.is_empty() {
|
2017-04-22 03:35:11 +00:00
|
|
|
// If we have a folder with an asset, don't consider it as a component
|
|
|
|
if page.file_name == "index" {
|
|
|
|
page.components.pop();
|
|
|
|
// also set parent_path to grandparent instead
|
|
|
|
page.parent_path = page.parent_path.parent().unwrap().to_path_buf();
|
2017-03-06 14:45:57 +00:00
|
|
|
}
|
2017-05-09 12:47:02 +00:00
|
|
|
if !path_set {
|
|
|
|
// Don't add a trailing slash to sections
|
|
|
|
page.path = format!("{}/{}", page.components.join("/"), page.slug);
|
|
|
|
}
|
|
|
|
} else if !path_set {
|
2017-04-22 03:35:11 +00:00
|
|
|
page.path = page.slug.clone();
|
2016-12-13 10:14:49 +00:00
|
|
|
}
|
2017-03-14 12:25:45 +00:00
|
|
|
|
2017-03-30 08:17:12 +00:00
|
|
|
page.permalink = config.make_permalink(&page.path);
|
2016-12-13 10:14:49 +00:00
|
|
|
|
2016-12-11 06:05:03 +00:00
|
|
|
Ok(page)
|
|
|
|
}
|
2016-12-06 11:53:14 +00:00
|
|
|
|
2017-03-12 03:54:57 +00:00
|
|
|
/// Read and parse a .md file into a Page struct
|
2017-03-06 14:45:57 +00:00
|
|
|
pub fn from_file<P: AsRef<Path>>(path: P, config: &Config) -> Result<Page> {
|
2016-12-13 06:22:24 +00:00
|
|
|
let path = path.as_ref();
|
2017-03-14 12:25:45 +00:00
|
|
|
let content = read_file(path)?;
|
|
|
|
let mut page = Page::parse(path, &content, config)?;
|
2017-03-19 10:29:43 +00:00
|
|
|
page.assets = find_related_assets(path.parent().unwrap());
|
2016-12-13 06:22:24 +00:00
|
|
|
|
2017-03-14 12:25:45 +00:00
|
|
|
if !page.assets.is_empty() && page.file_name != "index" {
|
2017-04-25 03:00:42 +00:00
|
|
|
bail!("Page `{}` has assets ({:?}) but is not named index.md", path.display(), page.assets);
|
2017-03-14 12:25:45 +00:00
|
|
|
}
|
2016-12-06 08:27:03 +00:00
|
|
|
|
2017-03-12 03:54:57 +00:00
|
|
|
Ok(page)
|
|
|
|
|
2016-12-11 06:05:03 +00:00
|
|
|
}
|
2016-12-06 08:27:03 +00:00
|
|
|
|
2017-03-27 14:17:33 +00:00
|
|
|
/// 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<String, String>, tera: &Tera, config: &Config) -> Result<()> {
|
|
|
|
self.content = markdown_to_html(&self.raw_content, permalinks, tera, config)?;
|
|
|
|
|
|
|
|
if self.raw_content.contains("<!-- more -->") {
|
2017-04-20 02:48:14 +00:00
|
|
|
self.summary = Some({
|
2017-03-27 14:17:33 +00:00
|
|
|
let summary = self.raw_content.splitn(2, "<!-- more -->").collect::<Vec<&str>>()[0];
|
|
|
|
markdown_to_html(summary, permalinks, tera, config)?
|
2017-04-20 02:48:14 +00:00
|
|
|
})
|
2017-03-27 14:17:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-03-06 13:45:33 +00:00
|
|
|
/// Renders the page using the default layout, unless specified in front-matter
|
2017-03-03 08:12:40 +00:00
|
|
|
pub fn render_html(&self, tera: &Tera, config: &Config) -> Result<String> {
|
2017-03-10 12:36:43 +00:00
|
|
|
let tpl_name = match self.meta.template {
|
|
|
|
Some(ref l) => l.to_string(),
|
|
|
|
None => "page.html".to_string()
|
|
|
|
};
|
2017-03-30 08:17:12 +00:00
|
|
|
|
2016-12-11 06:05:03 +00:00
|
|
|
let mut context = Context::new();
|
2017-03-10 12:36:43 +00:00
|
|
|
context.add("config", config);
|
2016-12-11 06:05:03 +00:00
|
|
|
context.add("page", self);
|
2017-03-30 08:17:12 +00:00
|
|
|
context.add("current_url", &self.permalink);
|
|
|
|
context.add("current_path", &self.path);
|
2016-12-13 06:22:24 +00:00
|
|
|
|
2017-03-10 12:36:43 +00:00
|
|
|
tera.render(&tpl_name, &context)
|
2017-03-25 06:52:51 +00:00
|
|
|
.chain_err(|| format!("Failed to render page '{}'", self.file_path.display()))
|
2016-12-11 06:05:03 +00:00
|
|
|
}
|
2016-12-06 08:27:03 +00:00
|
|
|
}
|
|
|
|
|
2017-05-13 04:01:38 +00:00
|
|
|
impl Default for Page {
|
|
|
|
fn default() -> Page {
|
|
|
|
Page {
|
|
|
|
meta: PageFrontMatter::default(),
|
|
|
|
file_path: PathBuf::new(),
|
|
|
|
relative_path: String::new(),
|
|
|
|
parent_path: PathBuf::new(),
|
|
|
|
file_name: "".to_string(),
|
|
|
|
components: vec![],
|
|
|
|
raw_content: "".to_string(),
|
|
|
|
assets: vec![],
|
|
|
|
content: "".to_string(),
|
|
|
|
slug: "".to_string(),
|
|
|
|
path: "".to_string(),
|
|
|
|
permalink: "".to_string(),
|
|
|
|
summary: None,
|
|
|
|
previous: None,
|
|
|
|
next: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-23 08:34:57 +00:00
|
|
|
impl ser::Serialize for Page {
|
|
|
|
fn serialize<S>(&self, serializer: S) -> StdResult<S::Ok, S::Error> where S: ser::Serializer {
|
2017-04-24 09:11:51 +00:00
|
|
|
let mut state = serializer.serialize_struct("page", 16)?;
|
2017-02-23 08:34:57 +00:00
|
|
|
state.serialize_field("content", &self.content)?;
|
|
|
|
state.serialize_field("title", &self.meta.title)?;
|
|
|
|
state.serialize_field("description", &self.meta.description)?;
|
|
|
|
state.serialize_field("date", &self.meta.date)?;
|
2017-03-06 14:45:57 +00:00
|
|
|
state.serialize_field("slug", &self.slug)?;
|
2017-03-30 08:17:12 +00:00
|
|
|
state.serialize_field("path", &format!("/{}", self.path))?;
|
2017-03-06 14:45:57 +00:00
|
|
|
state.serialize_field("permalink", &self.permalink)?;
|
2017-04-20 02:48:14 +00:00
|
|
|
state.serialize_field("summary", &self.summary)?;
|
2017-02-23 08:34:57 +00:00
|
|
|
state.serialize_field("tags", &self.meta.tags)?;
|
|
|
|
state.serialize_field("draft", &self.meta.draft)?;
|
|
|
|
state.serialize_field("category", &self.meta.category)?;
|
|
|
|
state.serialize_field("extra", &self.meta.extra)?;
|
2017-05-15 03:23:19 +00:00
|
|
|
let (word_count, reading_time) = get_reading_analytics(&self.raw_content);
|
2017-03-06 13:45:33 +00:00
|
|
|
state.serialize_field("word_count", &word_count)?;
|
|
|
|
state.serialize_field("reading_time", &reading_time)?;
|
2017-04-20 02:48:14 +00:00
|
|
|
state.serialize_field("previous", &self.previous)?;
|
|
|
|
state.serialize_field("next", &self.next)?;
|
2017-02-23 08:34:57 +00:00
|
|
|
state.end()
|
|
|
|
}
|
|
|
|
}
|