Signed-off-by: Minecon724 <git@m724.eu>
This commit is contained in:
parent
5d98a8fd60
commit
977d7a1338
5 changed files with 21 additions and 21 deletions
|
@ -124,7 +124,7 @@ public class BlogBuilder {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builds the blog by generating templates, copying assets, and rendering posts.
|
* Builds the blog by generating templates, copying assets, and rendering articles.
|
||||||
*
|
*
|
||||||
* @throws IOException if an I/O error occurs
|
* @throws IOException if an I/O error occurs
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -19,19 +19,19 @@ import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The {@code Article} class represents a blog post with various attributes including metadata and content.
|
* The {@code Article} class represents an article with various attributes including metadata and content.
|
||||||
*
|
*
|
||||||
* @param slug A unique identifier for the post derived from the file name.
|
* @param slug A unique identifier for the article derived from the file name.
|
||||||
* @param title The title of the post.
|
* @param title The title of the article.
|
||||||
* @param summary A brief summary of the post content.
|
* @param summary A brief summary of the article content.
|
||||||
* @param draft Indicates whether the post is marked as a draft or published.
|
* @param draft Indicates whether the article is marked as a draft or published.
|
||||||
* @param revisions The number of revisions the post has undergone in version control.
|
* @param revisions The number of revisions the article has undergone in version control.
|
||||||
* @param createdBy The name of the author who created the post.
|
* @param createdBy The name of the author who created the article.
|
||||||
* @param createdAt The timestamp of when the post was first created.
|
* @param createdAt The timestamp of when the article was first created.
|
||||||
* @param modifiedBy The name of the author who last modified the post.
|
* @param modifiedBy The name of the author who last modified the article.
|
||||||
* @param modifiedAt The timestamp of the last modification to the post.
|
* @param modifiedAt The timestamp of the last modification to the article.
|
||||||
* @param custom A map of custom properties or metadata associated with the post.
|
* @param custom A map of custom properties or metadata associated with the article.
|
||||||
* @param rawContent The raw content of the post, which <em>currently</em> is usually HTML.
|
* @param rawContent The raw content of the article, which <em>currently</em> is usually HTML.
|
||||||
*/
|
*/
|
||||||
public record Article(
|
public record Article(
|
||||||
String slug,
|
String slug,
|
||||||
|
@ -104,7 +104,7 @@ public record Article(
|
||||||
case "summary":
|
case "summary":
|
||||||
summary = value;
|
summary = value;
|
||||||
break;
|
break;
|
||||||
case "live": // a post is live (not draft) if the key is there
|
case "live": // an article is live (not draft) if the key is there
|
||||||
draft = false;
|
draft = false;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -13,11 +13,11 @@ public class Feed {
|
||||||
private static final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("EEE, dd MMM yyyy HH:mm:ss zzz");
|
private static final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("EEE, dd MMM yyyy HH:mm:ss zzz");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates an RSS feed XML string for a given website and its list of blog posts.
|
* Generates an XML RSS feed for the site and its articles.
|
||||||
*
|
*
|
||||||
* @param site the {@code Site} object representing the website for which the RSS feed is generated
|
* @param site the {@link Site} object representing the website for which the RSS feed is generated
|
||||||
* @param articles the list of {@link Article} objects representing the blog posts to include in the RSS feed
|
* @param articles the list of {@link Article} objects representing the articles to include in the RSS feed
|
||||||
* @return a {@code String} containing the formatted RSS feed in XML
|
* @return a {@link String} containing the formatted RSS feed in XML
|
||||||
*/
|
*/
|
||||||
public static String generateRss(Site site, List<Article> articles) {
|
public static String generateRss(Site site, List<Article> articles) {
|
||||||
var content = new StringBuilder("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>");
|
var content = new StringBuilder("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>");
|
||||||
|
|
|
@ -20,7 +20,7 @@ import java.util.Map;
|
||||||
* @param name the name of the site
|
* @param name the name of the site
|
||||||
* @param baseUrl the base URL of the site
|
* @param baseUrl the base URL of the site
|
||||||
* @param directory The directory that the site is installed into. Like "https://example.com/blog" turns to "/blog"
|
* @param directory The directory that the site is installed into. Like "https://example.com/blog" turns to "/blog"
|
||||||
* @param templateArticles whether to parse posts with Pebble templating
|
* @param templateArticles whether to parse articles with Pebble templating
|
||||||
* @param custom a map of additional custom properties
|
* @param custom a map of additional custom properties
|
||||||
*/
|
*/
|
||||||
public record Site(
|
public record Site(
|
||||||
|
|
|
@ -66,10 +66,10 @@ public class TemplateRenderer {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Renders the content of a post using this template.
|
* Renders the content of an article using this template.
|
||||||
*
|
*
|
||||||
* @param article the {@link Article} to be rendered
|
* @param article the {@link Article} to be rendered
|
||||||
* @return the rendered post HTML page as a string
|
* @return the rendered article HTML page as a string
|
||||||
* @throws IOException if an error occurs during template evaluation
|
* @throws IOException if an error occurs during template evaluation
|
||||||
*/
|
*/
|
||||||
public String renderArticle(Article article) throws IOException {
|
public String renderArticle(Article article) throws IOException {
|
||||||
|
|
Loading…
Add table
Reference in a new issue