2023-10-23 16:03:37 -04:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
use crate::error::CustomError;
|
|
|
|
|
2023-10-27 14:43:06 -04:00
|
|
|
use super::registry::Registry;
|
2023-10-27 13:05:34 -04:00
|
|
|
use super::IDocumentElement;
|
|
|
|
use super::IHeading;
|
|
|
|
use super::ISection;
|
2023-10-24 00:36:08 -04:00
|
|
|
|
2023-10-23 16:03:37 -04:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub(crate) struct BlogPostPage {
|
|
|
|
/// Relative path from the root of the blog post.
|
2023-10-23 20:30:43 -04:00
|
|
|
pub(crate) path: PathBuf,
|
2023-10-23 16:03:37 -04:00
|
|
|
|
2023-10-23 20:30:43 -04:00
|
|
|
pub(crate) title: Option<String>,
|
2023-10-24 00:36:08 -04:00
|
|
|
|
2023-10-27 13:05:34 -04:00
|
|
|
pub(crate) children: Vec<IDocumentElement>,
|
2023-10-23 16:03:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl BlogPostPage {
|
2023-10-27 15:55:19 -04:00
|
|
|
pub(crate) async fn new<'parse, P: Into<PathBuf>>(
|
2023-10-23 16:03:37 -04:00
|
|
|
path: P,
|
2023-10-27 14:54:54 -04:00
|
|
|
registry: &mut Registry<'parse>,
|
|
|
|
document: &organic::types::Document<'parse>,
|
2023-10-23 16:03:37 -04:00
|
|
|
) -> Result<BlogPostPage, CustomError> {
|
|
|
|
let path = path.into();
|
2023-10-24 00:36:08 -04:00
|
|
|
let mut children = Vec::new();
|
|
|
|
if let Some(section) = document.zeroth_section.as_ref() {
|
2023-10-27 15:55:19 -04:00
|
|
|
children.push(IDocumentElement::Section(
|
|
|
|
ISection::new(registry, section).await?,
|
|
|
|
));
|
2023-10-24 00:36:08 -04:00
|
|
|
}
|
|
|
|
for heading in document.children.iter() {
|
2023-10-27 15:55:19 -04:00
|
|
|
children.push(IDocumentElement::Heading(
|
|
|
|
IHeading::new(registry, heading).await?,
|
|
|
|
));
|
2023-10-24 00:36:08 -04:00
|
|
|
}
|
|
|
|
|
2023-10-23 16:03:37 -04:00
|
|
|
Ok(BlogPostPage {
|
|
|
|
path,
|
2023-10-23 18:39:54 -04:00
|
|
|
title: get_title(&document),
|
2023-10-24 00:36:08 -04:00
|
|
|
children,
|
2023-10-23 16:03:37 -04:00
|
|
|
})
|
|
|
|
}
|
2023-10-23 20:30:43 -04:00
|
|
|
|
|
|
|
/// Get the output path relative to the post directory.
|
|
|
|
pub(crate) fn get_output_path(&self) -> PathBuf {
|
|
|
|
let mut ret = self.path.clone();
|
|
|
|
ret.set_extension("html");
|
|
|
|
ret
|
|
|
|
}
|
2023-10-23 16:03:37 -04:00
|
|
|
}
|
2023-10-23 18:39:54 -04:00
|
|
|
|
|
|
|
fn get_title(document: &organic::types::Document<'_>) -> Option<String> {
|
|
|
|
organic::types::AstNode::from(document)
|
|
|
|
.iter_all_ast_nodes()
|
|
|
|
.filter_map(|node| match node {
|
|
|
|
organic::types::AstNode::Keyword(kw) if kw.key.eq_ignore_ascii_case("title") => {
|
|
|
|
Some(kw)
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
.last()
|
|
|
|
.map(|kw| kw.value.to_owned())
|
|
|
|
}
|