physics/refresh.sh

47 lines
1.2 KiB
Bash
Raw 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-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)
[ $name == $1 ] && active="active" || active=""
links="${links}\n"'<a href="'${name}'.html" class="btn btn-primary '$active'">'${name}'</a>'
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:09:34 +02:00
html=${public}/${name}.html
js=./projects/$name/index.js
content=$p/index.html
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
echo $html
# 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