physics/refresh.sh

56 lines
1.6 KiB
Bash
Raw Permalink Normal View History

2021-10-03 18:41:52 +02:00
#!/usr/bin/env bash
wai=$(dirname $(readlink -f "$0")) # Current script directory
2021-10-04 12:09:34 +02:00
public=${wai}/public
projects=${wai}/projects
template=${wai}/template.html
2021-10-04 12:12:28 +02:00
main="projectile"
2021-10-03 18:41:52 +02:00
2021-10-06 15:32:23 +02:00
# Check if auto enabled
[ $# -gt 0 ] && { echo -e "$(find ${projects}/ -type f)\n$template" | entr $0; exit 0; }
2021-10-03 18:41:52 +02:00
# Clean before
2021-10-04 12:09:34 +02:00
rm -rf $public/projects
rm -rf $public/*.html
mkdir -p $public/projects
2021-10-03 18:41:52 +02:00
# Build links
build_links() {
links=""
2021-10-04 12:09:34 +02:00
for p in $(find ${projects}/ -maxdepth 1 -mindepth 1 -type d)
2021-10-03 18:41:52 +02:00
do
name=$(basename $p)
2021-10-06 18:46:16 +02:00
beautiful_name=$(cat $p/name.txt)
2021-10-04 12:12:28 +02:00
[ "$name" == "$main" ] && link="./index.html" || link=${name}.html
2021-10-03 18:41:52 +02:00
[ $name == $1 ] && active="active" || active=""
2021-10-06 18:46:16 +02:00
links="${links}\n"'<a href="'$link'" class="btn btn-primary '$active'">'${beautiful_name}'</a>'
2021-10-03 18:41:52 +02:00
done
tmp=$(mktemp)
echo -e "$links" > $tmp
echo $tmp
}
2021-10-04 12:09:34 +02:00
for p in $(find ${projects}/ -maxdepth 1 -mindepth 1 -type d)
2021-10-03 18:41:52 +02:00
do
name=$(basename $p)
2021-10-04 12:12:28 +02:00
[ "$name" == "$main" ] && html=${public}/index.html || html=${public}/${name}.html
2021-10-04 12:09:34 +02:00
js=./projects/$name/index.js
content=$p/index.html
2021-10-06 18:46:16 +02:00
beautiful_name=$(cat $p/name.txt)
2021-10-03 18:41:52 +02:00
2021-10-04 12:09:34 +02:00
# Create HTML page
cp -r $p $public/projects/
cat $template |sed "/\${CONTENT}/r $content"|sed '/\${CONTENT}/d' > $html
sed -i "s#\${JS}#${js}#g" $html
sed -i "s#\${project_name}#${name}#g" $html
2021-10-06 18:46:16 +02:00
sed -i "s#\${beautiful_name}#${beautiful_name}#g" $html
2021-10-04 12:09:34 +02:00
echo $html
2021-10-06 20:51:22 +02:00
2021-10-04 12:09:34 +02:00
# Create links
2021-10-03 18:41:52 +02:00
links_file=$(build_links $name)
2021-10-04 12:09:34 +02:00
sed -i "/\${LINKS}/r $links_file" $html
sed -i '/\${LINKS}/d' $html
2021-10-03 18:41:52 +02:00
done