Compare commits

...

16 Commits

Author SHA1 Message Date
c4a916b0fb Merge branch 'master' of github.com:szymon-jozef/static-site-generator 2026-02-26 21:27:14 +01:00
527b78d319 Merge branch 'master' of github.com:szymon-jozef/static-site-generator 2026-02-26 21:27:00 +01:00
e933b9d45b Merge branch 'master' of github.com:szymon-jozef/static-site-generator 2026-02-26 21:22:02 +01:00
f3776cac72 add nix flake 2026-02-26 21:21:47 +01:00
Szymon
116ac006b7 Merge pull request #10 from szymon-jozef/feature/blog-template
feature/blog template
2026-01-15 10:52:25 +01:00
241121b355 bunch of random ass shit tbh 2026-01-15 10:50:34 +01:00
78c43c630a Merge branch 'master' into feature/blog-template 2026-01-15 10:24:34 +01:00
29c2406c04 added blog entry template 2026-01-15 10:23:14 +01:00
Szymon
4c904c0659 Merge pull request #9 from szymon-jozef/feature/builder
feature/builder
2026-01-12 23:07:46 +01:00
a89e4bb60f added build_index() function 2026-01-12 23:04:37 +01:00
e542115cb8 created builder files 2026-01-12 22:24:50 +01:00
3b676a8c49 update makefile 2026-01-12 12:58:57 +01:00
Szymon
0b41ff834d Merge pull request #8 from szymon-jozef/feature/template-replace
feature/template replace
2026-01-12 12:53:09 +01:00
19d86e8dc7 made formatting files work 2026-01-12 12:52:19 +01:00
1a58577b3e added format_file_conditionally() 2026-01-12 11:18:03 +01:00
8796199757 added format_file() function 2026-01-12 10:41:50 +01:00
15 changed files with 451 additions and 23 deletions

View File

@@ -11,10 +11,12 @@ As this is still a WIP, here is a short list of what works and what still needs
- [x] metadata parsing
- [x] basic tests
- [x] parsing markdown
- [ ] generating html documents
- [x] generating html documents
- [ ] some nicer css styles
- [ ] more sensible templates
- [x] change yaml style metadata to toml
- [ ] cli
- [ ] perhaps someday gui?
# What is this?
This is a small blog app. Basically a static site generator.

27
flake.lock generated Normal file
View File

@@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1771848320,
"narHash": "sha256-0MAd+0mun3K/Ns8JATeHT1sX28faLII5hVLq0L3BdZU=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "2fc6539b481e1d2569f25f8799236694180c0993",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

26
flake.nix Normal file
View File

@@ -0,0 +1,26 @@
{
description = "Static site generator in c++";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs =
{ self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
gcc
gnumake
md4c
catch2_3
clang-tools
gdb
];
};
};
}

58
src/builder/builder.cpp Normal file
View File

@@ -0,0 +1,58 @@
#include "builder/builder.hpp"
#include "config/config.hpp"
#include "format/format.hpp"
std::string build_index(const std::string &TEMPLATE, const Page &PAGE,
const Information &INFORMATION) {
std::string result = TEMPLATE;
result =
format_file(result, "{{config.lang}}", INFORMATION.config.general.lang);
result = format_file(result, "{{page.head}}", PAGE.head);
result = format_file(result, "{{page.header}}", PAGE.header);
result = format_file(result, "{{page.main}}", PAGE.main);
result = format_file(result, "{{page.footer}}", PAGE.footer);
return result;
}
std::string build_blog_entry(const std::string &TEMPLATE, const Page &BLOG,
const Information &INFORMATION) {
std::string result = TEMPLATE;
result =
format_file(result, "{{config.lang}}", INFORMATION.config.general.lang);
result = format_file(result, "{{page.head}}", BLOG.head);
result = format_file(result, "{{page.header}}", BLOG.header);
result =
format_file(result, "{{metadata.title}}", INFORMATION.metadata.title);
result = format_file(result, "{{page.content}}", BLOG.main);
result = format_file(result, "{{page.footer}}", BLOG.footer);
return result;
}
std::string build_header(const std::string &TEMPLATE,
const Information &INFORMATION) {
std::string result =
format_file(TEMPLATE, "{{metadata.title}}", INFORMATION.metadata.title);
;
return result;
}
std::string build_head(const std::string &TEMPLATE,
const Information &INFORMATION) {
std::string result =
format_file(TEMPLATE, "{{metadata.title}}", INFORMATION.metadata.title);
return result;
}
std::string build_footer(const std::string &TEMPLATE,
const Information &INFORMATION) {
std::string result = TEMPLATE;
result =
format_file_conditionally(result, "{{if email}}", "{{endif}}",
"{{email}}", INFORMATION.config.contact.email);
result = format_file_conditionally(result, "{{if signal}}", "{{endif}}",
"{{signal}}",
INFORMATION.config.contact.signal);
return result;
}

31
src/builder/builder.hpp Normal file
View File

@@ -0,0 +1,31 @@
#include "config/config.hpp"
#include "markdown/markdown.hpp"
struct Page {
std::string head;
std::string header;
std::string main;
std::string footer;
};
struct Information {
Config config;
Metadata metadata;
};
// @brief Function that builds index.html. It takes all the information from
// `Page` struct that should be built before calling it.
// @param TEMPLATE Template file that will be used to build index
// @param PAGE Page struct with information on html tags
// @return Built index.html in string
std::string build_index(const std::string &TEMPLATE, const Page &PAGE,
const Information &INFORMATION);
// @brief Function that builds particular blog entry. It takes all it's
// information flog `Page struct` that should be built before calling it.
// @param TEMPLATE Template file for blog
// @param PAGE Page struct with information on blog entry content
// @param INFORMATION Information metadata about config and metadata of the file
// @return Built blog_entry.html in string
std::string build_blog_entry(const std::string &TEMPLATE, const Page &BLOG,
const Information &INFORMATION);

View File

@@ -1,11 +1,71 @@
#include "format/format.hpp"
#include "markdown/markdown.hpp"
#include <string>
static bool replace_once(std::string &str, const std::string &from,
const std::string &to) {
size_t start_pos = str.find(from);
if (start_pos == std::string::npos)
// Remove everything from START to STOP
static bool remove_from_to(std::string &STR, const std::string &START,
const std::string &STOP) {
size_t start_pos = STR.find(START);
if (start_pos == std::string::npos) {
return false;
str.replace(start_pos, from.length(), to);
}
size_t stop_pos = STR.find(STOP, start_pos);
if (stop_pos == std::string::npos) {
return false;
}
STR.replace(start_pos, stop_pos - start_pos + STOP.length(), "");
return true;
}
std::string format_file(const std::string &TEMPLATE_FILE,
const std::string &TEMPLATE, const std::string &INPUT) {
std::string result = TEMPLATE_FILE;
size_t current_pos = 0;
while (true) {
size_t found_pos = result.find(TEMPLATE, current_pos);
if (found_pos == std::string::npos) {
break;
}
result.replace(found_pos, TEMPLATE.length(), INPUT);
current_pos = found_pos + INPUT.length();
}
return result;
}
std::string format_file_conditionally(const std::string &TEMPLATE_FILE,
const std::string &START_TAG,
const std::string &END_TAG,
const std::string &TEMPLATE,
const std::string &INPUT) {
std::string result = TEMPLATE_FILE;
if (INPUT.empty()) {
while (true) {
if (!remove_from_to(result, START_TAG, END_TAG)) {
break;
}
}
} else {
// remove START tag
size_t pos = 0;
while ((pos = result.find(START_TAG, pos)) != std::string::npos) {
result.replace(pos, START_TAG.length(), "");
}
// remove END tag
pos = 0;
while ((pos = result.find(END_TAG, pos)) != std::string::npos) {
result.replace(pos, END_TAG.length(), "");
}
// replace
result = format_file(result, TEMPLATE, INPUT);
}
return result;
}

View File

@@ -1,7 +1,21 @@
#include <string>
// Change template from file into html
// Return html in string
std::string inject_html_into_template(const std::string &FILE_NAME,
// @brief Format file.
// @param TEMPLATE_FILE File that you want to format in string.
// @param TEMPLATE Template that you want to replace. For example `{{title}}`
// @param INPUT Text that you want to replace TEMPLATE with.
// @return Formatted file in std::string
std::string format_file(const std::string &TEMPLATE_FILE,
const std::string &TEMPLATE, const std::string &INPUT);
// @brief Format file conditionally. Replace everything between `{{if
// _something_}}` to `{{endif}}` If INPUT is empty then everything between
// this will be removed.
// @param TEMPLATE_FILE File that you want to format in string.
// @param TEMPLATE Full name of the if statement. For example `{{if title}}`
// @return Formatted file in std::string
std::string format_file_conditionally(const std::string &TEMPLATE_FILE,
const std::string &START_TAG,
const std::string &END_TAG,
const std::string &TEMPLATE,
const std::string &HTML);
const std::string &INPUT);

View File

@@ -9,7 +9,8 @@ SOURCES = main.cpp \
config/config.cpp \
format/format.cpp \
markdown/markdown.cpp \
io/io.cpp
io/io.cpp \
builder/builder.cpp
OBJECTS = $(SOURCES:%.cpp=$(BUILD_DIR)/%.o)
@@ -17,7 +18,8 @@ TEST_SOURCES = tests.cpp \
config/config.cpp \
format/format.cpp \
markdown/markdown.cpp \
io/io.cpp
io/io.cpp \
builder/builder.cpp
TEST_OBJECTS = $(TEST_SOURCES:%.cpp=$(BUILD_DIR)/%.o)
@@ -31,7 +33,9 @@ all: directories $(TARGET)
directories:
@mkdir -p $(BUILD_DIR)/config
@mkdir -p $(BUILD_DIR)/format
@mkdir -p $(BUILD_DIR)/io
@mkdir -p $(BUILD_DIR)/markdown
@mkdir -p $(BUILD_DIR)/builder
$(TARGET): $(OBJECTS)
$(CXX) $(CXXFLAGS) -o $@ $^ $(LIBS)

View File

@@ -1,3 +1,4 @@
#pragma once
#include <ctime>
#include <optional>
#include <string>

View File

@@ -1,3 +1,4 @@
#include "builder/builder.hpp"
#include "config/config.hpp"
#include "format/format.hpp"
#include "io/io.hpp"
@@ -31,6 +32,58 @@ constexpr const char *formatter_html = R"(<!DOCTYPE html>
</body>
</html>)";
constexpr const char *formated_html = R"(<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
I'm formatted!
</body>
</html>)";
constexpr const char *formatter_html_conditionally = R"(<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
{{if tag}}
<p>{{tag}}</p>
{{endif}}
</body>
</html>)";
constexpr const char *formated_html_conditionally = R"(<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p>tag</p>
</body>
</html>)";
constexpr const char *formated_html_conditionally_empty = R"(<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>)";
constexpr const char *no_metadata_post_md = R"(# This markdown has no metadata.
That's bad. Don't do it. It's for tests only.)";
@@ -76,6 +129,35 @@ This [should be clickable](https://example.com)
- nine
- six
- nine)";
constexpr const char *template_index = R"(<!DOCTYPE html>
<html lang="{{config.lang}}">
<head>
{{page.head}}
</head>
<body>
<header>{{page.header}}</header>
<main>
{{page.main}}
</main>
{{page.footer}}
</body>
</html>)";
constexpr const char *template_blog_entry = R"(<!DOCTYPE html>
<html lang="{{config.lang}}">
<head>
{{page.head}}
</head>
<body>
<header>{{page.header}}</header>
<main>
<article>{{page.content}}</article>
</main>
{{page.footer}}
</body>
</html>)";
} // namespace TestFiles
// IO tests
@@ -88,6 +170,8 @@ TEST_CASE("Test reading a file that doesn't exist") {
REQUIRE_THROWS(read_file("this/path/doesnt/exist"));
}
// Config tests
TEST_CASE("Checking config file read", "[config]") {
Config config = get_config(TestFiles::config_toml);
@@ -98,11 +182,13 @@ TEST_CASE("Checking config file read", "[config]") {
REQUIRE(config.general.title == "Blog");
}
// Markdown tests
TEST_CASE("get_metadata function data correctness test") {
Metadata result = get_metadata(TestFiles::post_md).value();
std::string expected_author = "joseph";
struct tm datetime = {0};
struct tm datetime = {};
datetime.tm_year = 2026 - 1900;
datetime.tm_mon = 1 - 1;
datetime.tm_mday = 1;
@@ -160,3 +246,96 @@ int main() {
REQUIRE(get_html(TestFiles::post_md) == EXPECTED_OUTPUT);
}
// Format tests
TEST_CASE("Test format_file function with correct data") {
REQUIRE(TestFiles::formated_html == format_file(TestFiles::formatter_html,
"{{replace_me}}",
"I'm formatted!"));
}
TEST_CASE("Test format_file function with no templates") {
REQUIRE(TestFiles::formated_html ==
format_file(TestFiles::formated_html, "{{replace_me}}", "nothing"));
}
TEST_CASE("Test format_file_conditionally with tag") {
REQUIRE(TestFiles::formated_html_conditionally ==
format_file_conditionally(TestFiles::formatter_html_conditionally,
"{{if tag}}", "{{endif}}", "{{tag}}",
"tag"));
}
TEST_CASE("Test format_file_conditionally with empty tag") {
REQUIRE(TestFiles::formated_html_conditionally_empty ==
format_file_conditionally(TestFiles::formatter_html_conditionally,
"{{if tag}}", "{{endif}}", "{{tag}}", ""));
}
// Builder tests
TEST_CASE("build_index correctly assembles the page", "[builder]") {
Config config;
config.general.lang = "pl";
Metadata metadata;
Information info;
info.config = config;
info.metadata = metadata;
Page page;
page.head = "<meta charset='utf-8'><title>Test</title>";
page.header = "<nav>Menu</nav>";
page.main = "<article>Treść wpisu</article>";
page.footer = "<footer>Stopka</footer>";
std::string expected_output = R"(<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset='utf-8'><title>Test</title>
</head>
<body>
<header><nav>Menu</nav></header>
<main>
<article>Treść wpisu</article>
</main>
<footer>Stopka</footer>
</body>
</html>)";
std::string result = build_index(TestFiles::template_index, page, info);
REQUIRE(result == expected_output);
}
TEST_CASE("test build_blog_entry correctly assembles the page", "[builder]") {
Config config;
config.general.lang = "pl";
Metadata metadata;
Information info;
info.config = config;
info.metadata = metadata;
Page page;
page.head = "<meta charset='utf-8'><title>Test</title>";
page.header = "<nav>Menu</nav>";
page.main = "Hej ho!";
page.footer = "<footer>Stopka</footer>";
std::string expected_output = R"(<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset='utf-8'><title>Test</title>
</head>
<body>
<header><nav>Menu</nav></header>
<main>
<article>Hej ho!</article>
</main>
<footer>Stopka</footer>
</body>
</html>)";
std::string result =
build_blog_entry(TestFiles::template_blog_entry, page, info);
REQUIRE(result == expected_output);
}

21
templates/blog_entry.html Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="{{config.lang}}">
<head>
{{page.head}}
</head>
<body>
<header>
<h1>{{metadata.title}}</h1>
</header>
<main>
<article>
{{page.content}}
</article>
</main>
<footer>
{{page.footer}}
</footer>
</body>
</html>

View File

@@ -1,5 +1,5 @@
<footer>
<p>Strona napisana przez: {{author}}</p>
<p>Blog owned by: {{config.author}}</p>
<ul>
{{if email}}
<li><a href="mailto:{{email}}">{{email}}</a></li>

View File

@@ -1,6 +1,6 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{title}}</title>
<title>{{metadata.title}}</title>
<link rel="stylesheet" href="/style/style.css">
</head>

View File

@@ -1,3 +1,3 @@
<header>
<h1>{{title}}</h1>
<h1>{{metadata.title}}</h1>
</header>

View File

@@ -1,13 +1,18 @@
<!DOCTYPE html>
<html lang="{{lang}}">
{{head}}
<html lang="{{config.lang}}">
<head>
{{page.head}}
</head>
<body>
{{header}}
<header>
{{page.header}}
</header>
<main>
<ol id="posts">
{{posts}}
</ol>
{{page.main}}
</main>
<footer>
{{page.footer}}
</footer>
</body>
</html>