2020-02-08 14:33:13 +01:00
|
|
|
# This creates the static files that make up my blog from the Markdown
|
|
|
|
# files in this repository.
|
|
|
|
#
|
|
|
|
# All blog posts are rendered from Markdown by cheddar.
|
2020-02-21 13:47:29 +01:00
|
|
|
{ depot, lib, ... }@args:
|
2020-02-08 14:33:13 +01:00
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
with depot.nix.yants;
|
2020-02-08 14:33:13 +01:00
|
|
|
|
|
|
|
let
|
2020-02-11 20:31:20 +01:00
|
|
|
inherit (builtins) filter hasAttr map;
|
2020-02-09 22:44:48 +01:00
|
|
|
|
2020-02-08 14:33:13 +01:00
|
|
|
# Type definition for a single blog post.
|
|
|
|
post = struct "blog-post" {
|
|
|
|
key = string; #
|
|
|
|
title = string;
|
2020-02-08 14:47:47 +01:00
|
|
|
date = int;
|
2020-02-08 14:33:13 +01:00
|
|
|
|
|
|
|
# Path to the Markdown file containing the post content.
|
|
|
|
content = path;
|
|
|
|
|
|
|
|
# Should this post be included in the index? (defaults to true)
|
|
|
|
listed = option bool;
|
|
|
|
|
|
|
|
# Is this a draft? (adds a banner indicating that the link should
|
|
|
|
# not be shared)
|
|
|
|
draft = option bool;
|
|
|
|
|
|
|
|
# Previously each post title had a numeric ID. For these numeric
|
|
|
|
# IDs, redirects are generated so that old URLs stay compatible.
|
|
|
|
oldKey = option string;
|
|
|
|
};
|
|
|
|
|
|
|
|
posts = list post (import ./posts.nix);
|
|
|
|
fragments = import ./fragments.nix args;
|
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
rendered = depot.third_party.runCommandNoCC "tazjins-blog" {} ''
|
2020-02-08 14:33:13 +01:00
|
|
|
mkdir -p $out
|
|
|
|
|
|
|
|
${lib.concatStringsSep "\n" (map (post:
|
|
|
|
"cp ${fragments.renderPost post} $out/${post.key}.html"
|
|
|
|
) posts)}
|
2020-02-08 14:47:47 +01:00
|
|
|
'';
|
2020-02-09 22:44:48 +01:00
|
|
|
|
|
|
|
includePost = post: !(fragments.isDraft post) && !(fragments.isUnlisted post);
|
2020-02-08 15:06:57 +01:00
|
|
|
in {
|
2020-02-09 22:44:48 +01:00
|
|
|
inherit post rendered;
|
2020-02-08 15:06:57 +01:00
|
|
|
static = ./static;
|
2020-02-09 22:44:48 +01:00
|
|
|
|
|
|
|
# Only include listed posts
|
|
|
|
posts = filter includePost posts;
|
2020-02-11 20:31:20 +01:00
|
|
|
|
|
|
|
# Generate embeddable nginx configuration for redirects from old post URLs
|
|
|
|
oldRedirects = lib.concatStringsSep "\n" (map (post: ''
|
|
|
|
location ~* ^(/en)?/${post.oldKey} {
|
|
|
|
# TODO(tazjin): 301 once this works
|
|
|
|
return 302 https://tazj.in/blog/${post.key};
|
|
|
|
}
|
|
|
|
'') (filter (hasAttr "oldKey") posts));
|
2020-02-08 15:06:57 +01:00
|
|
|
}
|