Skip to content

Commit

Permalink
Uses shell function syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarstairs-scottlogic committed Nov 29, 2023
1 parent 9374fb1 commit 9dd9599
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 26 deletions.
50 changes: 34 additions & 16 deletions generate_pa11y_ci_urls_from_git_diff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,39 @@
# Export the list as a CommonJS module for the pa11y-ci configuration to use.
# Typical usage: generate_pa11y_ci_urls_from_git_diff.sh gh-pages > .pa11yci.js

base_ref=$1
if [ -z "$base_ref" ]; then
echo "No Git base ref provided. Usage: $0 <base_ref>"
exit 1
fi

changed_files=$(git diff --name-only $base_ref)

echo -n "module.exports=[";
for file in $changed_files; do
if [[ $file == _posts/* ]]; then
echo -n "'/$(./url_of_post.sh $file)',";
elif [[ $file == *.html && ! $file == _includes/* && ! $file == _layouts/* ]]; then
echo -n "'/$(./url_of_page.sh $file)',";
function generate_pa11y_ci_urls_from_git_diff {
base_ref=$1
if [ -z "$base_ref" ]; then
echo "No Git base ref provided. Usage: $0 <base_ref>"
exit 1
fi
done
echo -n "];";

changed_files=$(git diff --name-only $base_ref)

echo -n "module.exports=[";
for file in $changed_files; do
if [[ $file == _posts/* ]]; then
echo -n "'/$(url_of_post $file)',";
elif [[ $file == *.html && ! $file == _includes/* && ! $file == _layouts/* ]]; then
echo -n "'/$(url_of_page $file)',";
fi
done
echo -n "];";
}

function url_of_page {
echo $1 | sed "s/\(\/\?index\)\?\.html$//";
}

function url_of_post {
year="\([0-9][0-9][0-9][0-9]\)"
month="\([0-9][0-9]\)"
day="\([0-9][0-9]\)"
slug="\(.*\)"
file_ext="\(html\|markdown\|md\)"

echo $1 | sed "s/^_posts\/$year-$month-$day-$slug\.$file_ext$/\1\/\2\/\3\/\4.html/";
}

generate_pa11y_ci_urls_from_git_diff $1

2 changes: 0 additions & 2 deletions url_of_page.sh

This file was deleted.

8 changes: 0 additions & 8 deletions url_of_post.sh

This file was deleted.

0 comments on commit 9dd9599

Please sign in to comment.