1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
//! Defines the [`Post`], [`Parser`], and [`Error`] types. Also defines the
//! logic for parsing posts from the file system into memory. See the
//! [`Post::to_value`] and [`Post::summarize`] for details on how posts are
//! converted into template values.
use crate::markdown;
use crate::tag::Tag;
use gtmpl::Value;
use serde::Deserialize;
use std::collections::HashSet;
use std::fmt;
use std::fs::{read_dir, File};
use std::path::{Path, PathBuf};
use url::Url;
#[derive(Deserialize, Clone)]
struct Frontmatter {
/// The title of the post.
#[serde(rename = "Title")]
pub title: String,
/// The date of the post.
#[serde(rename = "Date")]
pub date: String,
/// The tags associated with the post.
#[serde(default, rename = "Tags")]
pub tags: HashSet<String>,
}
/// Represents a blog post.
#[derive(Clone)]
pub struct Post {
/// The output path where the final post file will be rendered.
pub file_path: PathBuf,
/// The address for the rendered post.
pub url: Url,
/// The title of the post.
pub title: String,
/// The date of the post.
pub date: String,
/// The body of the post.
pub body: String,
/// The tags associated with the post.
pub tags: HashSet<Tag>,
}
impl Post {
/// Converts a [`Post`] into a template-renderable [`Value`], representing
/// a full post (as opposed to [`Post::summarize`] which represents a
/// post summary). The resulting [`Value`] has fields:
///
/// * `url`: The url of the post
/// * `title`: The title of the post
/// * `date`: The published date of the post
/// * `body`: The post body
/// * `tags`: A list of tags associated with the post
pub fn to_value(&self) -> Value {
use std::collections::HashMap;
let mut m = HashMap::new();
m.insert("url".to_owned(), Value::String(self.url.to_string()));
m.insert("title".to_owned(), Value::String(self.title.clone()));
m.insert("date".to_owned(), Value::String(self.date.clone()));
m.insert("body".to_owned(), Value::String(self.body.clone()));
m.insert(
"tags".to_owned(),
Value::Array(self.tags.iter().map(Value::from).collect()),
);
Value::Object(m)
}
/// Returns the full post body unless a `<!-- more -->` tag was found, in
/// which case it returns the text up to that tag (the "summary" text). It
/// also returns a boolean value indicating whether or not the tag was
/// found.
pub fn summary(&self) -> (&str, bool) {
match self.body.find("<!-- more -->") {
None => (self.body.as_str(), false),
Some(idx) => (&self.body[..idx], true),
}
}
/// Converts a [`Post`] into a template-renderable [`Value`] representing a
/// post summary. The resulting [`Value`] has fields:
///
/// * `url`: The url of the post
/// * `title`: The title of the post
/// * `date`: The published date of the post
/// * `summary`: The post summary if there is a `<!-- more -->` tag or else
/// the full post body
/// * `summarized`: A boolean value representing whether or not a `<!--
/// more -->` tag was found and thus the post was truncated.
/// * `tags`: A list of tags associated with the post
pub fn summarize(&self) -> Value {
use std::collections::HashMap;
let (summary, summarized) = self.summary();
let mut m = HashMap::new();
m.insert("url".to_owned(), Value::String(self.url.to_string()));
m.insert("title".to_owned(), Value::String(self.title.clone()));
m.insert("date".to_owned(), Value::String(self.date.clone()));
m.insert("summary".to_owned(), Value::String(summary.to_string()));
m.insert("summarized".to_owned(), Value::Bool(summarized));
m.insert(
"tags".to_owned(),
Value::Array(self.tags.iter().map(Value::from).collect()),
);
Value::Object(m)
}
}
/// Parses [`Post`] objects from source files.
pub struct Parser<'a> {
/// `index_url` is the base URL for index pages. It's used to prefix tag
/// page URLs (i.e., the URL for the first page of a tag is
/// `{index_url}/{tag_name}/index.html`).
index_url: &'a Url,
/// `posts_url` is the base URL for post pages. It's used to prefix post
/// page URLs (i.e., the URL for a post is
/// `{posts_url}/{post_id}.html`).
posts_url: &'a Url,
/// `posts_directory` is the directory in which post pages will be
/// rendered.
posts_directory: &'a Path,
}
impl<'a> Parser<'a> {
/// Constructs a new parser. See fields on [`Parser`] for argument
/// descriptions.
pub fn new(
index_url: &'a Url,
posts_url: &'a Url,
posts_directory: &'a Path,
) -> Parser<'a> {
Parser {
index_url,
posts_url,
posts_directory,
}
}
/// Parses a single [`Post`] from an `id` and `input` strings. The `id` is
/// the path of the file relative to the `posts_source_directory` less the
/// extension (e.g., the ID for a post whose source file is
/// `{posts_source_directory}/foo/bar.md` is `foo/bar`).
fn parse_post(&self, id: &str, input: &str) -> Result<Post> {
match self._parse_post(id, input) {
Ok(p) => Ok(p),
Err(e) => Err(Error::Annotated(
format!("parsing post `{}`", id),
Box::new(e),
)),
}
}
fn _parse_post(&self, id: &str, input: &str) -> Result<Post> {
fn frontmatter_indices(input: &str) -> Result<(usize, usize, usize)> {
const FENCE: &str = "---";
if !input.starts_with(FENCE) {
return Err(Error::FrontmatterMissingStartFence);
}
match input[FENCE.len()..].find("---") {
None => Err(Error::FrontmatterMissingEndFence),
Some(offset) => Ok((
FENCE.len(), // yaml_start
FENCE.len() + offset, // yaml_stop
FENCE.len() + offset + FENCE.len(), // body_start
)),
}
}
let (yaml_start, yaml_stop, body_start) = frontmatter_indices(input)?;
let frontmatter: Frontmatter =
serde_yaml::from_str(&input[yaml_start..yaml_stop])?;
let file_name = format!("{}.html", id);
let mut post = Post {
title: frontmatter.title,
date: frontmatter.date,
file_path: self.posts_directory.join(&file_name),
url: self.posts_url.join(&file_name)?,
tags: frontmatter
.tags
.iter()
.map(|t| {
Ok(Tag {
name: t.clone(),
url: self
.index_url
// NOTE: tried
// `index_url.join(t).join("index.html")`; however,
// since `t` doesn't have a trailing slash,
// [`Url::join`] was treating it as equivalent to
// `index_url.join("index.html")` per the
// `Url::join` docs:
//
// > Note: a trailing slash is significant. Without
// it, the last path component is considered to be
// a “file” name to be removed to get at the
// “directory” that is used as the base
.join(&format!("{}/index.html", t))
.unwrap(), // should always succeed
})
})
.collect::<Result<HashSet<Tag>>>()?,
body: String::default(),
};
markdown::to_html(
&mut post.body,
self.posts_url,
id,
&input[body_start..],
post.url.as_str(),
)?;
Ok(post)
}
/// Searches a provided `source_directory` for post files (extension =
/// `.md`) and returns a list of [`Post`] objects sorted by date (most
/// recent first). Each post file must be structured as follows:
///
/// 1. Initial frontmatter fence (`---`)
/// 2. YAML frontmatter with fields `Title`, `Date`, and optionally `Tags`
/// 3. Terminal frontmatter fence (`---`)
/// 4. Post body
///
/// For example:
///
/// ```md
/// ---
/// Title: Hello, world!
/// Date: 2021-04-16
/// Tags: [greet]
/// ---
/// # Hello
///
/// World
/// ```
pub fn parse_posts(&self, source_directory: &Path) -> Result<Vec<Post>> {
use std::io::Read;
const MARKDOWN_EXTENSION: &str = ".md";
let mut posts = Vec::new();
for result in read_dir(source_directory)? {
let entry = result?;
let os_file_name = entry.file_name();
let file_name = os_file_name.to_string_lossy();
if file_name.ends_with(MARKDOWN_EXTENSION) {
let base_name = file_name.trim_end_matches(MARKDOWN_EXTENSION);
let mut contents = String::new();
File::open(entry.path())?.read_to_string(&mut contents)?;
posts.push(self.parse_post(base_name, &contents)?);
}
}
posts.sort_by(|a, b| b.date.cmp(&a.date));
Ok(posts)
}
}
/// Represents the result of a [`Post`]-parse operation.
pub type Result<T> = std::result::Result<T, Error>;
/// Represents an error parsing a [`Post`] object.
#[derive(Debug)]
pub enum Error {
/// Returned when a post source file is missing its starting frontmatter
/// fence (`---`).
FrontmatterMissingStartFence,
/// Returned when a post source file is missing its terminal frontmatter
/// fence (`---` i.e., the starting fence was found but the ending one was
/// missing).
FrontmatterMissingEndFence,
/// Returned when there was an error parsing the frontmatter as YAML.
DeserializeYaml(serde_yaml::Error),
/// Returned when there is a problem parsing URLs.
UrlParse(url::ParseError),
/// Returned for other I/O errors.
Io(std::io::Error),
/// An error with an annotation.
Annotated(String, Box<Error>),
}
impl fmt::Display for Error {
/// Displays an [`Error`] as human-readable text.
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Error::FrontmatterMissingStartFence => {
write!(f, "Post must begin with `---`")
}
Error::FrontmatterMissingEndFence => {
write!(f, "Missing clossing `---`")
}
Error::DeserializeYaml(err) => err.fmt(f),
Error::UrlParse(err) => err.fmt(f),
Error::Io(err) => err.fmt(f),
Error::Annotated(annotation, err) => {
write!(f, "{}: {}", &annotation, err)
}
}
}
}
impl std::error::Error for Error {
/// Implements the [`std::error::Error`] trait for [`Error`].
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Error::FrontmatterMissingStartFence => None,
Error::FrontmatterMissingEndFence => None,
Error::DeserializeYaml(err) => Some(err),
Error::UrlParse(err) => Some(err),
Error::Io(err) => Some(err),
Error::Annotated(_, err) => Some(err),
}
}
}
impl From<markdown::Error> for Error {
fn from(err: markdown::Error) -> Error {
match err {
markdown::Error::Io(e) => Error::Io(e),
markdown::Error::UrlParse(e) => Error::UrlParse(e),
}
}
}
impl From<url::ParseError> for Error {
/// Converts a [`url::ParseError`] into an [`Error`]. It allows us to use
/// the `?` operator for URL parsing and joining functions.
fn from(err: url::ParseError) -> Error {
Error::UrlParse(err)
}
}
impl From<serde_yaml::Error> for Error {
/// Converts a [`serde_yaml::Error`] into an [`Error`]. It allows us to use
/// the `?` operator for [`serde_yaml`] deserialization functions.
fn from(err: serde_yaml::Error) -> Error {
Error::DeserializeYaml(err)
}
}
impl From<std::io::Error> for Error {
/// Converts a [`std::io::Error`] into an [`Error`]. It allows us to
// use the `?` operator for fallible I/O functions.
fn from(err: std::io::Error) -> Error {
Error::Io(err)
}
}