summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-03-28 17:11:47 -0300
committerEuAndreh <eu@euandre.org>2025-03-29 16:25:53 -0300
commit12c8206705657ecccf046a000c2834ddf2cad7d7 (patch)
tree347d272bfba5004d02534d0058589ac06f25f733
parentMakefile: Enable re-generation of renewed public.asc key (diff)
downloadeuandre.org-12c8206705657ecccf046a000c2834ddf2cad7d7.tar.gz
euandre.org-12c8206705657ecccf046a000c2834ddf2cad7d7.tar.xz
src/content/.well-known/security.txt: Derive it
-rw-r--r--.gitignore4
-rw-r--r--Makefile23
-rw-r--r--meta.json4
-rw-r--r--src/content/.well-known/security.txt4
4 files changed, 31 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index 2f9fe4a..e04b1a5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,3 +14,7 @@ feed.xmldeps
feed.xml
/src/global.conf
*.gz
+email.txt
+baseurl.txt
+expiry.txt
+/src/content/.well-known/
diff --git a/Makefile b/Makefile
index aaced4f..d110c22 100644
--- a/Makefile
+++ b/Makefile
@@ -126,12 +126,17 @@ derived-assets = \
$(articles.indexentry) \
$(articles.feedentry) \
$(articles.sortdata) \
+ email.txt \
+ baseurl.txt \
+ expiry.txt \
+ src/content/.well-known/security.txt \
side-assets = \
src/collections/*/*/*/*/*.html.*.txt \
src/collections/*/index.html.*.txt \
src/collections/*/*.sortdata \
src/pages/*/*.html.*.txt \
+ src/content/.well-known/ \
@@ -161,6 +166,24 @@ $(contents.gz):
src/content/public.asc:
gpg --export --armour "`jq -r '.email' < meta.json`" > $@
+email.txt: meta.json
+ jq -r '.email' < meta.json > $@
+
+baseurl.txt: meta.json
+ jq -r '.baseurl' < meta.json > $@
+
+expiry.txt: src/content/public.asc
+ gpg --show-key --with-colons src/content/public.asc | \
+ awk -F: '/^pub:/ { print $$7 }' | \
+ xargs -I% date -Is -d@% > $@
+
+src/content/.well-known/security.txt: email.txt baseurl.txt expiry.txt
+ mkdir -p $(@D)
+ printf 'Contact: mailto:%s\n' "`cat email.txt`" > $@
+ printf 'Expires: %s\n' "`cat expiry.txt`" >> $@
+ printf 'Encryption: %s/public.asc\n' "`cat baseurl.txt`" >> $@
+ printf 'Preferred-Languages: en, pt, fr, eo, es\n' >> $@
+
check-unit:
diff --git a/meta.json b/meta.json
new file mode 100644
index 0000000..b00a291
--- /dev/null
+++ b/meta.json
@@ -0,0 +1,4 @@
+{
+ "baseurl": "https://euandre.org",
+ "email": "eu@euandre.org"
+}
diff --git a/src/content/.well-known/security.txt b/src/content/.well-known/security.txt
deleted file mode 100644
index fc0f82f..0000000
--- a/src/content/.well-known/security.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-Contact: mailto:eu@euandre.org
-Expires: 2026-07-20T10:30:49-03:00
-Encryption: https://euandre.org/public.asc
-Preferred-Languages: en, pt, fr, eo, es