From 5cdd7a93aab95c40c2843d35e56d3583ffe2d3a5 Mon Sep 17 00:00:00 2001 From: emkael Date: Thu, 6 Feb 2020 21:57:59 +0100 Subject: Including ranking page links in .htaccess --- bin/datafiles-htaccess-links.sh | 13 +++++++++++++ bin/datafiles-htaccess.sh | 3 +++ 2 files changed, 16 insertions(+) create mode 100755 bin/datafiles-htaccess-links.sh (limited to 'bin') diff --git a/bin/datafiles-htaccess-links.sh b/bin/datafiles-htaccess-links.sh new file mode 100755 index 0000000..2c9793e --- /dev/null +++ b/bin/datafiles-htaccess-links.sh @@ -0,0 +1,13 @@ +#!/bin/bash +DATE=$1 + +shift 1 +LINKS=$@ + +echo $LINKS | while read LINK +do + SOURCE_PREFIX="${LINK//.html/}" + echo "RewriteRule $SOURCE_PREFIX.json _data/$DATE.json [L]" + echo "RewriteRule $SOURCE_PREFIX.minimal.json _data/$DATE.minimal.json [L]" + echo "RewriteRule $SOURCE_PREFIX.csv https://raw.githubusercontent.com/emkael/pzbs-ranking/master/data/rankings/$DATE.csv [R,L]" +done diff --git a/bin/datafiles-htaccess.sh b/bin/datafiles-htaccess.sh index 0ac3b4e..0789b40 100755 --- a/bin/datafiles-htaccess.sh +++ b/bin/datafiles-htaccess.sh @@ -13,4 +13,7 @@ cat $CONFIG | echo "RewriteRule $PREFIX.minimal.json _data/$DATE.minimal.json [L]" >> $HTACCESS_FILE.tmp echo "RewriteRule $PREFIX.csv https://raw.githubusercontent.com/emkael/pzbs-ranking/master/data/rankings/$DATE.csv [R,L]" >> $HTACCESS_FILE.tmp done +cat $CONFIG | + jq -r '.[] | if .links then [.date, .links] else [] end | flatten | @sh' | grep -v '^$' | + xargs -L 1 bin/datafiles-htaccess-links.sh >> $HTACCESS_FILE.tmp mv $HTACCESS_FILE.tmp $HTACCESS_FILE -- cgit v1.2.3