aboutsummaryrefslogtreecommitdiff
path: root/v2/src/bin/feed
blob: 4e0d2f5b6596485a6107860b4c9bebaff67edc29 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#!/bin/sh
set -eu

usage() {
	cat <<-'EOF'
		Usage:
		  feed FILENAME
		  feed -h
	EOF
}

help() {
	cat <<-'EOF'


		Options:
		  -h, --help    show this message

		  FILENAME      the target feed to be generated


		Generate FILENAME as an Atom feed.  The collection type and
		language are inferred by the name of FILENAME.


		Examples:

		  Generate a feed for TILs:

		    $ feed src/en/til/feed.xml
	EOF
}


for flag in "$@"; do
	case "$flag" in
		--)
			break
			;;
		--help)
			usage
			help
			exit
			;;
		*)
			;;
	esac
done

while getopts 'h' flag; do
	case "$flag" in
		h)
			usage
			help
			exit
			;;
		*)
			usage >&2
			exit 2
			;;
	esac
done
shift $((OPTIND - 1))

. src/lib.sh

FILENAME="${1:-}"
eval "$(assert_arg "$FILENAME" 'FILENAME')"


. src/lib/base.conf
# shellcheck source=/dev/null
. src/lib/base."$(lang-for "$FILENAME")".conf


now="$(date -uIs)"
url_absolute="$(url-for "${FILENAME#"$CONTENT_PREFIX"/}" | absolute)"
site_name_html="$(htmlesc "${site_name:?}")"
collection="$(collection-for "$FILENAME")"
coll_path="$(coll2path "${lang:?}" "$collection")"
collection_url_absolute="$(url-for "${lang:?}/$coll_path" | absolute)"
feed_title_html="$(eval "echo \"\$feed_${collection}_title\"" | htmlesc)"
export now url_absolute site_name_html collection_url_absolute feed_title_html

DIR="$(dirname "$FILENAME")"
mkdir -p "$DIR"
{
	envsubst < src/lib/feed.xml
	find "$DIR"/*.sortdata 2>/dev/null |
		sort -nr |
		xargs cat |
		sed 's|\.md$|.xmlentry|' |
		xargs cat
	printf '</feed>\n'
} > "$FILENAME"

printf '' > "$DIR"/index.extrafeeds
while read -r category; do
	url_absolute="$(url-for "${DIR#"$CONTENT_PREFIX"/}/feed.$category.xml" | absolute)"
	collection_url_absolute="$(url-for "${DIR#"$CONTENT_PREFIX"/}/${by_category_url_name:?}#$category" | absolute)"
	feed_title_html="$(eval "echo \"\$index_category_${collection}_title\"" | htmlesc)"
	export url_absolute collection_url_absolute feed_title_html

	{
		envsubst < src/lib/feed.xml
		< "$DIR/$category.category" \
			sed 's|\.md$|.xmlentry|' |
			xargs cat
		printf '</feed>\n'
	} > "$DIR/feed.$category.xml"
	echo "$DIR/feed.$category.xml" >> "$DIR"/index.extrafeeds
done < "$DIR"/index.categories