2017-05-16 04:37:00 +00:00
|
|
|
use std::collections::HashMap;
|
2017-04-18 05:07:02 +00:00
|
|
|
use std::fs::{remove_dir_all, copy, create_dir_all};
|
2017-03-14 12:25:45 +00:00
|
|
|
use std::path::{Path, PathBuf};
|
2017-03-03 08:12:40 +00:00
|
|
|
|
|
|
|
use glob::glob;
|
|
|
|
use tera::{Tera, Context};
|
2017-03-09 07:34:12 +00:00
|
|
|
use walkdir::WalkDir;
|
2017-03-03 08:12:40 +00:00
|
|
|
|
|
|
|
use errors::{Result, ResultExt};
|
|
|
|
use config::{Config, get_config};
|
2017-05-16 04:37:00 +00:00
|
|
|
use fs::{create_file, create_directory, ensure_directory_exists};
|
|
|
|
use content::{Page, Section, Paginator, SortBy, Taxonomy, populate_previous_and_next_pages, sort_pages};
|
2017-05-13 04:05:38 +00:00
|
|
|
use templates::{GUTENBERG_TERA, global_fns, render_redirect_template};
|
2017-05-22 11:28:43 +00:00
|
|
|
use front_matter::InsertAnchor;
|
2017-03-03 08:12:40 +00:00
|
|
|
|
2017-03-07 06:01:20 +00:00
|
|
|
|
2017-03-03 08:12:40 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Site {
|
2017-05-16 04:37:00 +00:00
|
|
|
/// The base path of the gutenberg site
|
2017-03-14 12:25:45 +00:00
|
|
|
pub base_path: PathBuf,
|
2017-05-16 04:37:00 +00:00
|
|
|
/// The parsed config for the site
|
2017-03-14 12:25:45 +00:00
|
|
|
pub config: Config,
|
|
|
|
pub pages: HashMap<PathBuf, Page>,
|
2017-05-09 11:24:44 +00:00
|
|
|
pub sections: HashMap<PathBuf, Section>,
|
2017-03-27 14:17:33 +00:00
|
|
|
pub tera: Tera,
|
2017-03-06 10:35:56 +00:00
|
|
|
live_reload: bool,
|
2017-03-14 12:25:45 +00:00
|
|
|
output_path: PathBuf,
|
2017-04-18 05:07:02 +00:00
|
|
|
static_path: PathBuf,
|
2017-05-16 04:37:00 +00:00
|
|
|
pub tags: Option<Taxonomy>,
|
|
|
|
pub categories: Option<Taxonomy>,
|
2017-05-13 13:37:01 +00:00
|
|
|
/// A map of all .md files (section and pages) and their permalink
|
|
|
|
/// We need that if there are relative links in the content that need to be resolved
|
2017-04-21 07:21:44 +00:00
|
|
|
pub permalinks: HashMap<String, String>,
|
2017-03-03 08:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Site {
|
2017-03-14 12:25:45 +00:00
|
|
|
/// Parse a site at the given path. Defaults to the current dir
|
|
|
|
/// Passing in a path is only used in tests
|
2017-03-25 04:18:15 +00:00
|
|
|
pub fn new<P: AsRef<Path>>(path: P, config_file: &str) -> Result<Site> {
|
2017-03-14 12:25:45 +00:00
|
|
|
let path = path.as_ref();
|
|
|
|
|
2017-04-28 07:18:18 +00:00
|
|
|
let tpl_glob = format!("{}/{}", path.to_string_lossy().replace("\\", "/"), "templates/**/*.*ml");
|
2017-03-14 12:25:45 +00:00
|
|
|
let mut tera = Tera::new(&tpl_glob).chain_err(|| "Error parsing templates")?;
|
2017-03-09 07:46:38 +00:00
|
|
|
tera.extend(&GUTENBERG_TERA)?;
|
|
|
|
|
2017-03-20 10:00:00 +00:00
|
|
|
let site = Site {
|
2017-03-14 12:25:45 +00:00
|
|
|
base_path: path.to_path_buf(),
|
2017-03-25 04:18:15 +00:00
|
|
|
config: get_config(path, config_file),
|
2017-03-03 08:12:40 +00:00
|
|
|
pages: HashMap::new(),
|
2017-05-09 11:24:44 +00:00
|
|
|
sections: HashMap::new(),
|
2017-03-27 14:17:33 +00:00
|
|
|
tera: tera,
|
2017-03-14 12:25:45 +00:00
|
|
|
live_reload: false,
|
2017-04-18 05:07:02 +00:00
|
|
|
output_path: path.join("public"),
|
|
|
|
static_path: path.join("static"),
|
2017-05-16 04:37:00 +00:00
|
|
|
tags: None,
|
|
|
|
categories: None,
|
2017-04-21 07:21:44 +00:00
|
|
|
permalinks: HashMap::new(),
|
2017-03-03 08:12:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(site)
|
|
|
|
}
|
|
|
|
|
2017-03-14 12:25:45 +00:00
|
|
|
/// What the function name says
|
|
|
|
pub fn enable_live_reload(&mut self) {
|
|
|
|
self.live_reload = true;
|
|
|
|
}
|
|
|
|
|
2017-05-09 12:47:02 +00:00
|
|
|
/// Get all the orphan (== without section) pages in the site
|
|
|
|
pub fn get_all_orphan_pages(&self) -> Vec<&Page> {
|
|
|
|
let mut pages_in_sections = vec![];
|
|
|
|
let mut orphans = vec![];
|
|
|
|
|
|
|
|
for s in self.sections.values() {
|
|
|
|
pages_in_sections.extend(s.all_pages_path());
|
|
|
|
}
|
|
|
|
|
|
|
|
for page in self.pages.values() {
|
2017-05-15 10:53:39 +00:00
|
|
|
if !pages_in_sections.contains(&page.file.path) {
|
2017-05-09 12:47:02 +00:00
|
|
|
orphans.push(page);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
orphans
|
|
|
|
}
|
|
|
|
|
2017-03-14 12:25:45 +00:00
|
|
|
/// Used by tests to change the output path to a tmp dir
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn set_output_path<P: AsRef<Path>>(&mut self, path: P) {
|
|
|
|
self.output_path = path.as_ref().to_path_buf();
|
|
|
|
}
|
|
|
|
|
2017-03-21 07:57:00 +00:00
|
|
|
/// Reads all .md files in the `content` directory and create pages/sections
|
2017-03-03 08:12:40 +00:00
|
|
|
/// out of them
|
2017-03-21 07:57:00 +00:00
|
|
|
pub fn load(&mut self) -> Result<()> {
|
2017-04-22 04:58:22 +00:00
|
|
|
let base_path = self.base_path.to_string_lossy().replace("\\", "/");
|
|
|
|
let content_glob = format!("{}/{}", base_path, "content/**/*.md");
|
2017-03-14 12:25:45 +00:00
|
|
|
|
|
|
|
for entry in glob(&content_glob).unwrap().filter_map(|e| e.ok()) {
|
|
|
|
let path = entry.as_path();
|
|
|
|
if path.file_name().unwrap() == "_index.md" {
|
2017-05-13 13:37:01 +00:00
|
|
|
self.add_section(path, false)?;
|
2017-03-14 12:25:45 +00:00
|
|
|
} else {
|
2017-05-13 13:37:01 +00:00
|
|
|
self.add_page(path, false)?;
|
2017-03-21 07:57:00 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-15 10:53:39 +00:00
|
|
|
// Insert a default index section if necessary so we don't need to create
|
|
|
|
// a _index.md to render the index page
|
2017-05-12 11:24:44 +00:00
|
|
|
let index_path = self.base_path.join("content").join("_index.md");
|
2017-05-12 07:30:01 +00:00
|
|
|
if !self.sections.contains_key(&index_path) {
|
2017-05-12 11:24:44 +00:00
|
|
|
let mut index_section = Section::default();
|
|
|
|
index_section.permalink = self.config.make_permalink("");
|
|
|
|
self.sections.insert(index_path, index_section);
|
2017-05-12 07:30:01 +00:00
|
|
|
}
|
2017-03-21 07:57:00 +00:00
|
|
|
|
2017-05-22 11:28:43 +00:00
|
|
|
// Silly thing needed to make the borrow checker happy
|
|
|
|
let mut pages_insert_anchors = HashMap::new();
|
|
|
|
for page in self.pages.values() {
|
|
|
|
pages_insert_anchors.insert(page.file.path.clone(), self.find_parent_section_insert_anchor(&page.file.parent.clone()));
|
|
|
|
}
|
|
|
|
|
2017-05-13 13:37:01 +00:00
|
|
|
// TODO: make that parallel
|
2017-03-27 14:17:33 +00:00
|
|
|
for page in self.pages.values_mut() {
|
2017-05-22 11:28:43 +00:00
|
|
|
let insert_anchor = pages_insert_anchors[&page.file.path];
|
|
|
|
page.render_markdown(&self.permalinks, &self.tera, &self.config, insert_anchor)?;
|
2017-03-27 14:17:33 +00:00
|
|
|
}
|
2017-05-13 13:37:01 +00:00
|
|
|
// TODO: make that parallel
|
2017-05-12 09:05:00 +00:00
|
|
|
for section in self.sections.values_mut() {
|
2017-05-13 13:37:01 +00:00
|
|
|
section.render_markdown(&self.permalinks, &self.tera, &self.config)?;
|
2017-05-12 09:05:00 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 07:57:00 +00:00
|
|
|
self.populate_sections();
|
|
|
|
self.populate_tags_and_categories();
|
|
|
|
|
2017-05-03 14:16:09 +00:00
|
|
|
self.tera.register_global_function("get_page", global_fns::make_get_page(&self.pages));
|
2017-05-23 11:03:25 +00:00
|
|
|
self.tera.register_global_function("get_section", global_fns::make_get_section(&self.sections));
|
2017-05-17 10:04:26 +00:00
|
|
|
self.register_get_url_fn();
|
2017-05-03 14:16:09 +00:00
|
|
|
|
2017-03-21 07:57:00 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-05-17 10:04:26 +00:00
|
|
|
/// Separate fn as it can be called in the serve command
|
|
|
|
pub fn register_get_url_fn(&mut self) {
|
|
|
|
self.tera.register_global_function("get_url", global_fns::make_get_url(self.permalinks.clone()));
|
|
|
|
}
|
|
|
|
|
2017-05-13 13:37:01 +00:00
|
|
|
/// Add a page to the site
|
|
|
|
/// The `render` parameter is used in the serve command, when rebuilding a page.
|
|
|
|
/// If `true`, it will also render the markdown for that page
|
|
|
|
/// Returns the previous page struct if there was one
|
|
|
|
pub fn add_page(&mut self, path: &Path, render: bool) -> Result<Option<Page>> {
|
2017-03-21 07:57:00 +00:00
|
|
|
let page = Page::from_file(&path, &self.config)?;
|
2017-05-15 10:53:39 +00:00
|
|
|
self.permalinks.insert(page.file.relative.clone(), page.permalink.clone());
|
|
|
|
let prev = self.pages.insert(page.file.path.clone(), page);
|
2017-03-21 07:57:00 +00:00
|
|
|
|
2017-05-13 13:37:01 +00:00
|
|
|
if render {
|
2017-05-22 11:28:43 +00:00
|
|
|
let insert_anchor = self.find_parent_section_insert_anchor(&self.pages[path].file.parent);
|
2017-05-13 13:37:01 +00:00
|
|
|
let mut page = self.pages.get_mut(path).unwrap();
|
2017-05-22 11:28:43 +00:00
|
|
|
page.render_markdown(&self.permalinks, &self.tera, &self.config, insert_anchor)?;
|
2017-05-13 13:37:01 +00:00
|
|
|
}
|
2017-05-12 11:24:44 +00:00
|
|
|
|
2017-05-13 13:37:01 +00:00
|
|
|
Ok(prev)
|
2017-03-21 07:57:00 +00:00
|
|
|
}
|
|
|
|
|
2017-05-13 13:37:01 +00:00
|
|
|
/// Add a section to the site
|
|
|
|
/// The `render` parameter is used in the serve command, when rebuilding a page.
|
|
|
|
/// If `true`, it will also render the markdown for that page
|
2017-05-15 10:53:39 +00:00
|
|
|
/// Returns the previous section struct if there was one
|
2017-05-13 13:37:01 +00:00
|
|
|
pub fn add_section(&mut self, path: &Path, render: bool) -> Result<Option<Section>> {
|
|
|
|
let section = Section::from_file(path, &self.config)?;
|
2017-05-15 10:53:39 +00:00
|
|
|
self.permalinks.insert(section.file.relative.clone(), section.permalink.clone());
|
|
|
|
let prev = self.sections.insert(section.file.path.clone(), section);
|
2017-05-11 05:33:23 +00:00
|
|
|
|
2017-05-13 13:37:01 +00:00
|
|
|
if render {
|
|
|
|
let mut section = self.sections.get_mut(path).unwrap();
|
|
|
|
section.render_markdown(&self.permalinks, &self.tera, &self.config)?;
|
2017-05-12 09:05:00 +00:00
|
|
|
}
|
2017-05-13 13:37:01 +00:00
|
|
|
|
|
|
|
Ok(prev)
|
2017-04-21 07:21:44 +00:00
|
|
|
}
|
|
|
|
|
2017-05-22 11:28:43 +00:00
|
|
|
/// Finds the insert_anchor for the parent section of the directory at `path`.
|
|
|
|
/// Defaults to `AnchorInsert::None` if no parent section found
|
|
|
|
pub fn find_parent_section_insert_anchor(&self, parent_path: &PathBuf) -> InsertAnchor {
|
|
|
|
match self.sections.get(&parent_path.join("_index.md")) {
|
2017-05-22 11:58:28 +00:00
|
|
|
Some(s) => s.meta.insert_anchor.unwrap(),
|
2017-05-22 11:28:43 +00:00
|
|
|
None => InsertAnchor::None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-21 07:57:00 +00:00
|
|
|
/// Find out the direct subsections of each subsection if there are some
|
|
|
|
/// as well as the pages for each section
|
2017-05-12 11:24:44 +00:00
|
|
|
pub fn populate_sections(&mut self) {
|
2017-03-14 12:25:45 +00:00
|
|
|
let mut grandparent_paths = HashMap::new();
|
2017-05-13 13:37:01 +00:00
|
|
|
for section in self.sections.values_mut() {
|
2017-05-15 10:53:39 +00:00
|
|
|
if let Some(ref grand_parent) = section.file.grand_parent {
|
2017-05-12 07:30:01 +00:00
|
|
|
grandparent_paths.entry(grand_parent.to_path_buf()).or_insert_with(|| vec![]).push(section.clone());
|
|
|
|
}
|
2017-05-13 13:37:01 +00:00
|
|
|
// Make sure the pages of a section are empty since we can call that many times on `serve`
|
|
|
|
section.pages = vec![];
|
|
|
|
section.ignored_pages = vec![];
|
2017-03-14 12:25:45 +00:00
|
|
|
}
|
2017-03-03 08:12:40 +00:00
|
|
|
|
2017-05-13 13:37:01 +00:00
|
|
|
for page in self.pages.values() {
|
2017-05-15 10:53:39 +00:00
|
|
|
let parent_section_path = page.file.parent.join("_index.md");
|
|
|
|
if self.sections.contains_key(&parent_section_path) {
|
|
|
|
self.sections.get_mut(&parent_section_path).unwrap().pages.push(page.clone());
|
2017-05-13 13:37:01 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-19 11:34:02 +00:00
|
|
|
|
2017-05-13 13:37:01 +00:00
|
|
|
for section in self.sections.values_mut() {
|
2017-05-15 10:53:39 +00:00
|
|
|
match grandparent_paths.get(§ion.file.parent) {
|
2017-03-14 12:25:45 +00:00
|
|
|
Some(paths) => section.subsections.extend(paths.clone()),
|
|
|
|
None => continue,
|
|
|
|
};
|
2017-03-03 08:12:40 +00:00
|
|
|
}
|
2017-05-13 13:37:01 +00:00
|
|
|
|
|
|
|
self.sort_sections_pages(None);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sorts the pages of the section at the given path
|
|
|
|
/// By default will sort all sections but can be made to only sort a single one by providing a path
|
|
|
|
pub fn sort_sections_pages(&mut self, only: Option<&Path>) {
|
2017-05-15 03:23:19 +00:00
|
|
|
for (path, section) in &mut self.sections {
|
2017-05-13 13:37:01 +00:00
|
|
|
if let Some(p) = only {
|
|
|
|
if p != path {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let (sorted_pages, cannot_be_sorted_pages) = sort_pages(section.pages.clone(), section.meta.sort_by());
|
|
|
|
section.pages = populate_previous_and_next_pages(&sorted_pages);
|
|
|
|
section.ignored_pages = cannot_be_sorted_pages;
|
|
|
|
}
|
2017-03-03 08:12:40 +00:00
|
|
|
}
|
|
|
|
|
2017-05-16 04:37:00 +00:00
|
|
|
/// Find all the tags and categories if it's asked in the config
|
2017-03-21 07:57:00 +00:00
|
|
|
pub fn populate_tags_and_categories(&mut self) {
|
2017-05-16 04:37:00 +00:00
|
|
|
let generate_tags_pages = self.config.generate_tags_pages.unwrap();
|
|
|
|
let generate_categories_pages = self.config.generate_categories_pages.unwrap();
|
|
|
|
if !generate_tags_pages && !generate_categories_pages {
|
|
|
|
return;
|
|
|
|
}
|
2017-03-20 03:42:43 +00:00
|
|
|
|
2017-05-16 04:37:00 +00:00
|
|
|
// TODO: can we pass a reference?
|
|
|
|
let (tags, categories) = Taxonomy::find_tags_and_categories(
|
|
|
|
self.pages.values().cloned().collect::<Vec<_>>()
|
|
|
|
);
|
|
|
|
if generate_tags_pages {
|
|
|
|
self.tags = Some(tags);
|
|
|
|
}
|
|
|
|
if generate_categories_pages {
|
|
|
|
self.categories = Some(categories);
|
2017-03-20 03:42:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-14 12:25:45 +00:00
|
|
|
/// Inject live reload script tag if in live reload mode
|
2017-03-06 10:35:56 +00:00
|
|
|
fn inject_livereload(&self, html: String) -> String {
|
|
|
|
if self.live_reload {
|
|
|
|
return html.replace(
|
|
|
|
"</body>",
|
|
|
|
r#"<script src="/livereload.js?port=1112&mindelay=10"></script></body>"#
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
html
|
|
|
|
}
|
|
|
|
|
2017-04-18 05:07:02 +00:00
|
|
|
/// Copy static file to public directory.
|
|
|
|
pub fn copy_static_file<P: AsRef<Path>>(&self, path: P) -> Result<()> {
|
|
|
|
let relative_path = path.as_ref().strip_prefix(&self.static_path).unwrap();
|
|
|
|
let target_path = self.output_path.join(relative_path);
|
|
|
|
if let Some(parent_directory) = target_path.parent() {
|
|
|
|
create_dir_all(parent_directory)?;
|
|
|
|
}
|
|
|
|
copy(path.as_ref(), &target_path)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-03-08 04:21:45 +00:00
|
|
|
/// Copy the content of the `static` folder into the `public` folder
|
2017-03-09 07:34:12 +00:00
|
|
|
pub fn copy_static_directory(&self) -> Result<()> {
|
2017-04-18 05:07:02 +00:00
|
|
|
for entry in WalkDir::new(&self.static_path).into_iter().filter_map(|e| e.ok()) {
|
|
|
|
let relative_path = entry.path().strip_prefix(&self.static_path).unwrap();
|
|
|
|
let target_path = self.output_path.join(relative_path);
|
2017-03-09 07:34:12 +00:00
|
|
|
|
|
|
|
if entry.path().is_dir() {
|
|
|
|
if !target_path.exists() {
|
2017-03-10 11:39:58 +00:00
|
|
|
create_directory(&target_path)?;
|
2017-03-09 07:34:12 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-04-18 05:07:02 +00:00
|
|
|
let entry_fullpath = self.base_path.join(entry.path());
|
|
|
|
self.copy_static_file(entry_fullpath)?;
|
2017-03-09 07:34:12 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-08 04:21:45 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-03-10 11:39:58 +00:00
|
|
|
/// Deletes the `public` directory if it exists
|
|
|
|
pub fn clean(&self) -> Result<()> {
|
2017-04-18 05:07:02 +00:00
|
|
|
if self.output_path.exists() {
|
2017-03-10 11:39:58 +00:00
|
|
|
// Delete current `public` directory so we can start fresh
|
2017-04-18 05:07:02 +00:00
|
|
|
remove_dir_all(&self.output_path).chain_err(|| "Couldn't delete `public` directory")?;
|
2017-03-10 11:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-05-03 08:52:49 +00:00
|
|
|
/// Renders a single content page
|
2017-06-16 12:53:28 +00:00
|
|
|
pub fn render_page(&self, page: &Page, section: Option<&Section>) -> Result<()> {
|
2017-05-16 04:37:00 +00:00
|
|
|
ensure_directory_exists(&self.output_path)?;
|
2017-03-03 08:12:40 +00:00
|
|
|
|
2017-05-01 08:10:22 +00:00
|
|
|
// Copy the nesting of the content directory if we have sections for that page
|
2017-05-08 10:29:37 +00:00
|
|
|
let mut current_path = self.output_path.to_path_buf();
|
2017-03-03 08:12:40 +00:00
|
|
|
|
2017-05-01 08:10:22 +00:00
|
|
|
for component in page.path.split('/') {
|
|
|
|
current_path.push(component);
|
2017-03-03 08:12:40 +00:00
|
|
|
|
2017-05-01 08:10:22 +00:00
|
|
|
if !current_path.exists() {
|
|
|
|
create_directory(¤t_path)?;
|
2017-03-03 08:12:40 +00:00
|
|
|
}
|
2017-05-01 08:10:22 +00:00
|
|
|
}
|
2017-03-03 08:12:40 +00:00
|
|
|
|
2017-05-01 08:10:22 +00:00
|
|
|
// Make sure the folder exists
|
|
|
|
create_directory(¤t_path)?;
|
2017-03-14 12:25:45 +00:00
|
|
|
|
2017-05-01 08:10:22 +00:00
|
|
|
// Finally, create a index.html file there with the page rendered
|
2017-06-16 12:53:28 +00:00
|
|
|
let output = page.render_html(&self.tera, &self.config, section)?;
|
2017-05-16 05:54:50 +00:00
|
|
|
create_file(¤t_path.join("index.html"), &self.inject_livereload(output))?;
|
2017-03-14 12:25:45 +00:00
|
|
|
|
2017-05-01 08:10:22 +00:00
|
|
|
// Copy any asset we found previously into the same directory as the index.html
|
|
|
|
for asset in &page.assets {
|
|
|
|
let asset_path = asset.as_path();
|
|
|
|
copy(&asset_path, ¤t_path.join(asset_path.file_name().unwrap()))?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2017-03-14 12:25:45 +00:00
|
|
|
|
2017-05-16 04:37:00 +00:00
|
|
|
/// Deletes the `public` directory and builds the site
|
2017-03-10 11:39:58 +00:00
|
|
|
pub fn build(&self) -> Result<()> {
|
|
|
|
self.clean()?;
|
2017-06-16 14:09:01 +00:00
|
|
|
// Render aliases first to allow overwriting
|
|
|
|
self.render_aliases()?;
|
2017-05-08 10:29:37 +00:00
|
|
|
self.render_sections()?;
|
|
|
|
self.render_orphan_pages()?;
|
2017-03-10 11:39:58 +00:00
|
|
|
self.render_sitemap()?;
|
2017-03-12 03:59:28 +00:00
|
|
|
if self.config.generate_rss.unwrap() {
|
|
|
|
self.render_rss_feed()?;
|
|
|
|
}
|
2017-03-20 12:40:03 +00:00
|
|
|
self.render_robots()?;
|
2017-05-13 13:37:01 +00:00
|
|
|
// `render_categories` and `render_tags` will check whether the config allows
|
|
|
|
// them to render or not
|
|
|
|
self.render_categories()?;
|
|
|
|
self.render_tags()?;
|
2017-03-20 12:40:03 +00:00
|
|
|
|
2017-03-10 11:39:58 +00:00
|
|
|
self.copy_static_directory()
|
|
|
|
}
|
2017-06-16 14:09:01 +00:00
|
|
|
|
|
|
|
pub fn render_aliases(&self) -> Result<()> {
|
|
|
|
for page in self.pages.values() {
|
|
|
|
if let Some(ref aliases) = page.meta.aliases {
|
|
|
|
for alias in aliases {
|
|
|
|
let mut output_path = self.output_path.to_path_buf();
|
|
|
|
for component in alias.split("/") {
|
|
|
|
output_path.push(&component);
|
|
|
|
|
|
|
|
if !output_path.exists() {
|
|
|
|
create_directory(&output_path)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
create_file(&output_path.join("index.html"), &render_redirect_template(&page.permalink, &self.tera)?)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
2017-03-10 11:39:58 +00:00
|
|
|
|
2017-05-03 08:52:49 +00:00
|
|
|
/// Renders robots.txt
|
2017-05-13 13:37:01 +00:00
|
|
|
pub fn render_robots(&self) -> Result<()> {
|
2017-05-16 04:37:00 +00:00
|
|
|
ensure_directory_exists(&self.output_path)?;
|
2017-03-20 12:40:03 +00:00
|
|
|
create_file(
|
2017-05-16 05:54:50 +00:00
|
|
|
&self.output_path.join("robots.txt"),
|
2017-03-27 14:17:33 +00:00
|
|
|
&self.tera.render("robots.txt", &Context::new())?
|
2017-03-20 12:40:03 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-05-16 04:37:00 +00:00
|
|
|
/// Renders all categories and the single category pages if there are some
|
2017-05-13 13:37:01 +00:00
|
|
|
pub fn render_categories(&self) -> Result<()> {
|
2017-05-16 04:37:00 +00:00
|
|
|
if let Some(ref categories) = self.categories {
|
|
|
|
self.render_taxonomy(categories)?;
|
2017-05-13 13:37:01 +00:00
|
|
|
}
|
2017-05-16 04:37:00 +00:00
|
|
|
|
|
|
|
Ok(())
|
2017-05-13 13:37:01 +00:00
|
|
|
}
|
|
|
|
|
2017-05-16 04:37:00 +00:00
|
|
|
/// Renders all tags and the single tag pages if there are some
|
2017-05-13 13:37:01 +00:00
|
|
|
pub fn render_tags(&self) -> Result<()> {
|
2017-05-16 04:37:00 +00:00
|
|
|
if let Some(ref tags) = self.tags {
|
|
|
|
self.render_taxonomy(tags)?;
|
2017-05-13 13:37:01 +00:00
|
|
|
}
|
2017-03-20 03:42:43 +00:00
|
|
|
|
2017-05-16 04:37:00 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2017-03-07 06:01:20 +00:00
|
|
|
|
2017-05-16 04:37:00 +00:00
|
|
|
fn render_taxonomy(&self, taxonomy: &Taxonomy) -> Result<()> {
|
2017-05-30 10:23:07 +00:00
|
|
|
if taxonomy.items.is_empty() {
|
|
|
|
return Ok(())
|
|
|
|
}
|
|
|
|
|
2017-05-16 04:37:00 +00:00
|
|
|
ensure_directory_exists(&self.output_path)?;
|
2017-03-07 06:01:20 +00:00
|
|
|
|
2017-05-16 04:37:00 +00:00
|
|
|
let output_path = self.output_path.join(&taxonomy.get_list_name());
|
|
|
|
let list_output = taxonomy.render_list(&self.tera, &self.config)?;
|
2017-03-10 11:39:58 +00:00
|
|
|
create_directory(&output_path)?;
|
2017-05-16 05:54:50 +00:00
|
|
|
create_file(&output_path.join("index.html"), &self.inject_livereload(list_output))?;
|
2017-03-07 06:01:20 +00:00
|
|
|
|
2017-05-16 04:37:00 +00:00
|
|
|
for item in &taxonomy.items {
|
|
|
|
let single_output = taxonomy.render_single_item(item, &self.tera, &self.config)?;
|
|
|
|
|
|
|
|
create_directory(&output_path.join(&item.slug))?;
|
2017-03-07 06:01:20 +00:00
|
|
|
create_file(
|
2017-05-16 05:54:50 +00:00
|
|
|
&output_path.join(&item.slug).join("index.html"),
|
2017-03-07 06:01:20 +00:00
|
|
|
&self.inject_livereload(single_output)
|
|
|
|
)?;
|
|
|
|
}
|
2017-03-06 14:45:57 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-05-13 13:37:01 +00:00
|
|
|
/// What it says on the tin
|
|
|
|
pub fn render_sitemap(&self) -> Result<()> {
|
2017-05-16 04:37:00 +00:00
|
|
|
ensure_directory_exists(&self.output_path)?;
|
|
|
|
|
2017-03-06 14:45:57 +00:00
|
|
|
let mut context = Context::new();
|
|
|
|
context.add("pages", &self.pages.values().collect::<Vec<&Page>>());
|
2017-03-19 10:40:31 +00:00
|
|
|
context.add("sections", &self.sections.values().collect::<Vec<&Section>>());
|
2017-03-20 03:42:43 +00:00
|
|
|
|
|
|
|
let mut categories = vec![];
|
2017-05-16 04:37:00 +00:00
|
|
|
if let Some(ref c) = self.categories {
|
|
|
|
let name = c.get_list_name();
|
|
|
|
categories.push(self.config.make_permalink(&name));
|
|
|
|
for item in &c.items {
|
2017-03-22 11:59:49 +00:00
|
|
|
categories.push(
|
2017-05-16 04:37:00 +00:00
|
|
|
self.config.make_permalink(&format!("{}/{}", &name, item.slug))
|
2017-03-22 11:59:49 +00:00
|
|
|
);
|
2017-03-20 03:42:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
context.add("categories", &categories);
|
|
|
|
|
|
|
|
let mut tags = vec![];
|
2017-05-16 04:37:00 +00:00
|
|
|
if let Some(ref t) = self.tags {
|
|
|
|
let name = t.get_list_name();
|
|
|
|
tags.push(self.config.make_permalink(&name));
|
|
|
|
for item in &t.items {
|
2017-03-22 11:59:49 +00:00
|
|
|
tags.push(
|
2017-05-16 04:37:00 +00:00
|
|
|
self.config.make_permalink(&format!("{}/{}", &name, item.slug))
|
2017-03-22 11:59:49 +00:00
|
|
|
);
|
2017-03-20 03:42:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
context.add("tags", &tags);
|
|
|
|
|
2017-03-27 14:17:33 +00:00
|
|
|
let sitemap = self.tera.render("sitemap.xml", &context)?;
|
2017-03-06 14:45:57 +00:00
|
|
|
|
2017-05-16 05:54:50 +00:00
|
|
|
create_file(&self.output_path.join("sitemap.xml"), &sitemap)?;
|
2017-03-06 14:45:57 +00:00
|
|
|
|
2017-03-03 08:12:40 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2017-03-07 07:43:27 +00:00
|
|
|
|
2017-05-13 13:37:01 +00:00
|
|
|
pub fn render_rss_feed(&self) -> Result<()> {
|
2017-05-16 04:37:00 +00:00
|
|
|
ensure_directory_exists(&self.output_path)?;
|
2017-05-08 10:29:37 +00:00
|
|
|
|
2017-03-07 07:43:27 +00:00
|
|
|
let mut context = Context::new();
|
2017-05-08 10:29:37 +00:00
|
|
|
let pages = self.pages.values()
|
2017-03-07 07:43:27 +00:00
|
|
|
.filter(|p| p.meta.date.is_some())
|
2017-05-20 14:45:31 +00:00
|
|
|
.take(self.config.rss_limit.unwrap()) // limit to the last n elements
|
2017-05-11 06:45:19 +00:00
|
|
|
.cloned()
|
2017-05-08 10:29:37 +00:00
|
|
|
.collect::<Vec<Page>>();
|
2017-03-07 07:43:27 +00:00
|
|
|
|
|
|
|
// Don't generate a RSS feed if none of the pages has a date
|
|
|
|
if pages.is_empty() {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
context.add("last_build_date", &pages[0].meta.date);
|
2017-05-08 10:29:37 +00:00
|
|
|
let (sorted_pages, _) = sort_pages(pages, SortBy::Date);
|
|
|
|
context.add("pages", &sorted_pages);
|
2017-03-07 07:43:27 +00:00
|
|
|
context.add("config", &self.config);
|
2017-03-10 11:39:58 +00:00
|
|
|
|
2017-03-10 13:19:36 +00:00
|
|
|
let rss_feed_url = if self.config.base_url.ends_with('/') {
|
2017-04-06 02:21:37 +00:00
|
|
|
format!("{}{}", self.config.base_url, "rss.xml")
|
2017-03-10 11:39:58 +00:00
|
|
|
} else {
|
2017-04-06 02:21:37 +00:00
|
|
|
format!("{}/{}", self.config.base_url, "rss.xml")
|
2017-03-10 11:39:58 +00:00
|
|
|
};
|
|
|
|
context.add("feed_url", &rss_feed_url);
|
2017-03-07 07:43:27 +00:00
|
|
|
|
2017-03-27 14:17:33 +00:00
|
|
|
let sitemap = self.tera.render("rss.xml", &context)?;
|
2017-03-07 07:43:27 +00:00
|
|
|
|
2017-05-16 05:54:50 +00:00
|
|
|
create_file(&self.output_path.join("rss.xml"), &sitemap)?;
|
2017-03-14 12:25:45 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-05-12 13:32:35 +00:00
|
|
|
/// Create a hashmap of paths to section
|
|
|
|
/// For example `content/posts/_index.md` key will be `posts`
|
|
|
|
fn get_sections_map(&self) -> HashMap<String, Section> {
|
|
|
|
self.sections
|
2017-05-09 11:24:44 +00:00
|
|
|
.values()
|
2017-05-15 10:53:39 +00:00
|
|
|
.map(|s| (s.file.components.join("/"), s.clone()))
|
2017-05-12 13:32:35 +00:00
|
|
|
.collect()
|
|
|
|
}
|
2017-03-14 12:25:45 +00:00
|
|
|
|
2017-05-12 13:32:35 +00:00
|
|
|
/// Renders a single section
|
2017-05-13 13:37:01 +00:00
|
|
|
pub fn render_section(&self, section: &Section, render_pages: bool) -> Result<()> {
|
2017-05-16 04:37:00 +00:00
|
|
|
ensure_directory_exists(&self.output_path)?;
|
2017-05-12 13:32:35 +00:00
|
|
|
let public = self.output_path.clone();
|
2017-03-14 12:25:45 +00:00
|
|
|
|
2017-05-12 13:32:35 +00:00
|
|
|
let mut output_path = public.to_path_buf();
|
2017-05-15 10:53:39 +00:00
|
|
|
for component in §ion.file.components {
|
2017-05-12 13:32:35 +00:00
|
|
|
output_path.push(component);
|
2017-03-14 12:25:45 +00:00
|
|
|
|
2017-05-12 13:32:35 +00:00
|
|
|
if !output_path.exists() {
|
|
|
|
create_directory(&output_path)?;
|
2017-05-11 05:33:23 +00:00
|
|
|
}
|
2017-05-12 13:32:35 +00:00
|
|
|
}
|
2017-05-11 05:33:23 +00:00
|
|
|
|
2017-05-13 13:37:01 +00:00
|
|
|
if render_pages {
|
|
|
|
for page in §ion.pages {
|
2017-06-16 12:53:28 +00:00
|
|
|
self.render_page(page, Some(section))?;
|
2017-05-13 13:37:01 +00:00
|
|
|
}
|
2017-05-12 13:32:35 +00:00
|
|
|
}
|
2017-05-11 05:33:23 +00:00
|
|
|
|
2017-05-12 13:32:35 +00:00
|
|
|
if !section.meta.should_render() {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
|
|
|
if section.meta.is_paginated() {
|
|
|
|
self.render_paginated(&output_path, section)?;
|
|
|
|
} else {
|
|
|
|
let output = section.render_html(
|
|
|
|
if section.is_index() { self.get_sections_map() } else { HashMap::new() },
|
|
|
|
&self.tera,
|
|
|
|
&self.config,
|
|
|
|
)?;
|
2017-05-16 05:54:50 +00:00
|
|
|
create_file(&output_path.join("index.html"), &self.inject_livereload(output))?;
|
2017-05-08 10:29:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-05-13 13:37:01 +00:00
|
|
|
pub fn render_index(&self) -> Result<()> {
|
|
|
|
self.render_section(&self.sections[&self.base_path.join("content").join("_index.md")], false)
|
|
|
|
}
|
|
|
|
|
2017-05-12 13:32:35 +00:00
|
|
|
/// Renders all sections
|
2017-05-13 13:37:01 +00:00
|
|
|
pub fn render_sections(&self) -> Result<()> {
|
2017-05-12 13:32:35 +00:00
|
|
|
for section in self.sections.values() {
|
2017-05-13 13:37:01 +00:00
|
|
|
self.render_section(section, true)?;
|
2017-05-12 13:32:35 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-05-08 10:29:37 +00:00
|
|
|
/// Renders all pages that do not belong to any sections
|
2017-05-13 13:37:01 +00:00
|
|
|
pub fn render_orphan_pages(&self) -> Result<()> {
|
2017-05-16 04:37:00 +00:00
|
|
|
ensure_directory_exists(&self.output_path)?;
|
2017-05-08 10:29:37 +00:00
|
|
|
|
2017-05-09 12:47:02 +00:00
|
|
|
for page in self.get_all_orphan_pages() {
|
2017-06-16 12:53:28 +00:00
|
|
|
self.render_page(page, None)?;
|
2017-05-03 08:52:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Renders a list of pages when the section/index is wanting pagination.
|
|
|
|
fn render_paginated(&self, output_path: &Path, section: &Section) -> Result<()> {
|
2017-05-16 04:37:00 +00:00
|
|
|
ensure_directory_exists(&self.output_path)?;
|
2017-05-08 10:29:37 +00:00
|
|
|
|
2017-05-03 08:52:49 +00:00
|
|
|
let paginate_path = match section.meta.paginate_path {
|
|
|
|
Some(ref s) => s.clone(),
|
|
|
|
None => unreachable!()
|
|
|
|
};
|
|
|
|
|
2017-05-08 10:29:37 +00:00
|
|
|
let paginator = Paginator::new(§ion.pages, section);
|
2017-05-03 08:52:49 +00:00
|
|
|
for (i, pager) in paginator.pagers.iter().enumerate() {
|
|
|
|
let folder_path = output_path.join(&paginate_path);
|
|
|
|
let page_path = folder_path.join(&format!("{}", i + 1));
|
|
|
|
create_directory(&folder_path)?;
|
|
|
|
create_directory(&page_path)?;
|
|
|
|
let output = paginator.render_pager(pager, self)?;
|
|
|
|
if i > 0 {
|
2017-05-16 05:54:50 +00:00
|
|
|
create_file(&page_path.join("index.html"), &self.inject_livereload(output))?;
|
2017-05-03 08:52:49 +00:00
|
|
|
} else {
|
2017-05-16 05:54:50 +00:00
|
|
|
create_file(&output_path.join("index.html"), &self.inject_livereload(output))?;
|
|
|
|
create_file(&page_path.join("index.html"), &render_redirect_template(§ion.permalink, &self.tera)?)?;
|
2017-05-03 08:52:49 +00:00
|
|
|
}
|
2017-03-14 12:25:45 +00:00
|
|
|
}
|
2017-03-07 07:43:27 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2017-03-03 08:12:40 +00:00
|
|
|
}
|
2017-05-17 10:04:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/// Resolves an internal link (of the `./posts/something.md#hey` sort) to its absolute link
|
|
|
|
pub fn resolve_internal_link(link: &str, permalinks: &HashMap<String, String>) -> Result<String> {
|
|
|
|
// First we remove the ./ since that's gutenberg specific
|
|
|
|
let clean_link = link.replacen("./", "", 1);
|
|
|
|
// Then we remove any potential anchor
|
|
|
|
// parts[0] will be the file path and parts[1] the anchor if present
|
|
|
|
let parts = clean_link.split('#').collect::<Vec<_>>();
|
|
|
|
match permalinks.get(parts[0]) {
|
|
|
|
Some(p) => {
|
|
|
|
if parts.len() > 1 {
|
|
|
|
Ok(format!("{}#{}", p, parts[1]))
|
|
|
|
} else {
|
|
|
|
Ok(p.to_string())
|
|
|
|
}
|
|
|
|
},
|
|
|
|
None => bail!(format!("Relative link {} not found.", link)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
use super::resolve_internal_link;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn can_resolve_valid_internal_link() {
|
|
|
|
let mut permalinks = HashMap::new();
|
|
|
|
permalinks.insert("pages/about.md".to_string(), "https://vincent.is/about".to_string());
|
|
|
|
let res = resolve_internal_link("./pages/about.md", &permalinks).unwrap();
|
|
|
|
assert_eq!(res, "https://vincent.is/about");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn can_resolve_internal_links_with_anchors() {
|
|
|
|
let mut permalinks = HashMap::new();
|
|
|
|
permalinks.insert("pages/about.md".to_string(), "https://vincent.is/about".to_string());
|
|
|
|
let res = resolve_internal_link("./pages/about.md#hello", &permalinks).unwrap();
|
|
|
|
assert_eq!(res, "https://vincent.is/about#hello");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn errors_resolve_inexistant_internal_link() {
|
|
|
|
let res = resolve_internal_link("./pages/about.md#hello", &HashMap::new());
|
|
|
|
assert!(res.is_err());
|
|
|
|
}
|
|
|
|
}
|