openbsd-webzine/issues/tools/atom.sh

47 lines
1.3 KiB
Bash
Executable File

#!/bin/sh
set -e
domain="$1"
tagfirst="2021" # see https://validator.w3.org/feed/docs/error/InvalidTAG.html
# exit if no public issue found
ls ../public/issue-*.html >/dev/null 2>&1
date_updated=$(date +%Y-%m-%dT%TZ)
cat <<EOF
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>https://${domain}/</id>
<title>OpenBSD Webzine</title>
<icon>https://${domain}/favicon-32x32.png</icon>
<link rel="alternate" type="text/html" href="https://${domain}/" />
<link rel="self" type="application/atom+xml" href="https://${domain}/atom.xml" />
<author>
<name>OpenBSD Webzine contributors</name>
</author>
<updated>${date_updated}</updated>
EOF
for page in ../public/issue-*.html ; do
issue=$(echo $page | grep -oE "issue\-[0-9]+")
title=$(echo $issue | awk -F '-' '{ print "Issue #"$NF }')
. ./$issue/metadata.sh
tag="$(echo -n ${issue} | sha256)"
cat <<EOF
<entry>
<title type="text">${title}</title>
<id>tag:${domain},${tagfirst}:${tag}</id>
<updated>${PUBLISHED_DATE}</updated>
<link rel="alternate" type="text/html" href="https://${domain}/${issue}.html" />
<summary type="html">
<![CDATA[
$(sed "1d;2d;$d" $issue/10_HEADLINES.html)
]]>
</summary>
</entry>
EOF
done
echo "</feed>"