krata/tools/run.sh

175 lines
3.4 KiB
Bash
Raw Normal View History

2019-09-30 14:38:41 +02:00
#!/bin/bash
2019-11-05 10:18:31 +01:00
2019-09-30 14:38:41 +02:00
# Run jekyll site at http://127.0.0.1:4000
2019-11-05 10:18:31 +01:00
#
# Requirement:
# Option '-r, --realtime' needs fswatch http://emcrisostomo.github.io/fswatch/
2019-11-05 10:18:31 +01:00
#
2020-01-02 14:17:49 +01:00
# v2.0
# https://github.com/cotes2020/jekyll-theme-chirpy
2019-09-30 14:38:41 +02:00
# © 2019 Cotes Chung
# Published under MIT License
2020-01-01 18:21:43 +01:00
set -eu
WORK_DIR="$(dirname "$(dirname "$(realpath "$0")")")"
2019-09-30 14:38:41 +02:00
2019-11-05 10:18:31 +01:00
CONTAINER=.container
SYNC_TOOL=_scripts/sh/sync_monitor.sh
2020-10-08 10:00:08 +02:00
cmd="bundle exec jekyll s -l"
realtime=false
2020-10-08 10:00:08 +02:00
docker=false
2019-11-05 10:18:31 +01:00
2020-04-09 21:15:51 +02:00
_help() {
2019-11-05 10:18:31 +01:00
echo "Usage:"
echo
echo " bash run.sh [options]"
echo
echo "Options:"
echo " -H, --host <HOST> Host to bind to"
echo " -P, --port <PORT> Port to listen on"
echo " -b, --baseurl <URL> The site relative url that start with slash, e.g. '/project'"
echo " -h, --help Print the help information"
echo " -t, --trace Show the full backtrace when an error occurs"
echo " -r, --realtime Make the modified content updated in real time"
2020-10-08 10:00:08 +02:00
echo " --docker Run within docker"
2019-09-30 14:38:41 +02:00
}
2020-04-09 21:15:51 +02:00
_cleanup() {
2020-02-17 15:54:30 +01:00
if [[ -d _site || -d .jekyll-cache ]]; then
jekyll clean
fi
2020-08-19 11:05:58 +02:00
rm -rf "${WORK_DIR}/${CONTAINER}"
2019-11-05 10:18:31 +01:00
ps aux | grep fswatch | awk '{print $2}' | xargs kill -9 > /dev/null 2>&1
2019-09-30 14:38:41 +02:00
}
2020-04-09 21:15:51 +02:00
_init() {
2020-10-08 10:00:08 +02:00
if [[ -f Gemfile.lock ]]; then
rm -f Gemfile.lock
fi
2019-09-30 14:38:41 +02:00
2020-08-19 11:05:58 +02:00
if [[ -d "${WORK_DIR}/${CONTAINER}" ]]; then
rm -rf "${WORK_DIR}/${CONTAINER}"
2019-09-30 14:38:41 +02:00
fi
2020-08-19 11:05:58 +02:00
temp="$(mktemp -d)"
cp -r "$WORK_DIR"/* "$temp"
cp -r "${WORK_DIR}/.git" "$temp"
mv "$temp" "${WORK_DIR}/${CONTAINER}"
2019-09-30 14:38:41 +02:00
2020-04-09 21:15:51 +02:00
trap _cleanup INT
2019-09-30 14:38:41 +02:00
}
2020-04-09 21:15:51 +02:00
_check_unset() {
2019-11-05 10:18:31 +01:00
if [[ -z ${1:+unset} ]]; then
2020-04-09 21:15:51 +02:00
_help
2019-09-30 14:38:41 +02:00
exit 1
fi
}
2020-04-09 21:15:51 +02:00
_check_command() {
2020-08-19 11:05:58 +02:00
if [[ -z $(command -v "$1") ]]; then
echo "Error: command '$1' not found !"
echo "Hint: Get '$1' on <$2>"
exit 1
fi
}
2020-10-08 10:00:08 +02:00
_install_tools() {
# docker image `jekyll/jekyll` based on Apline Linux
echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
apk update
apk add yq
}
2019-11-05 10:18:31 +01:00
main() {
2020-04-09 21:15:51 +02:00
_init
2019-11-05 10:18:31 +01:00
2020-10-08 10:00:08 +02:00
if $docker; then
_install_tools
fi
2020-08-19 11:05:58 +02:00
cd "${WORK_DIR}/${CONTAINER}"
2020-04-09 21:15:51 +02:00
bash _scripts/sh/create_pages.sh
bash _scripts/sh/dump_lastmod.sh
2020-09-01 08:54:29 +02:00
if $realtime; then
exclude_regex="\/\..*"
if [[ $OSTYPE == "darwin"* ]]; then
exclude_regex="/\..*" # darwin gcc treat regex '/' as character '/'
fi
fswatch -e "$exclude_regex" -0 -r \
--event Created --event Removed \
--event Updated --event Renamed \
--event MovedFrom --event MovedTo \
"$WORK_DIR" | xargs -0 -I {} bash "./${SYNC_TOOL}" {} "$WORK_DIR" . &
fi
2019-11-05 10:18:31 +01:00
2020-10-08 10:00:08 +02:00
if ! $docker; then
cmd+=" -o"
else
cmd+=" -H 0.0.0.0"
fi
2019-11-05 10:18:31 +01:00
echo "\$ $cmd"
2020-08-19 11:05:58 +02:00
eval "$cmd"
2019-11-05 10:18:31 +01:00
}
2020-09-01 08:54:29 +02:00
while (($#)); do
2019-09-30 14:38:41 +02:00
opt="$1"
case $opt in
2020-09-01 08:54:29 +02:00
-H | --host)
2020-08-19 11:05:58 +02:00
_check_unset "$2"
2019-09-30 14:38:41 +02:00
cmd+=" -H $2"
shift # past argument
shift # past value
;;
2020-09-01 08:54:29 +02:00
-P | --port)
2020-08-19 11:05:58 +02:00
_check_unset "$2"
2019-09-30 14:38:41 +02:00
cmd+=" -P $2"
shift
shift
;;
2020-09-01 08:54:29 +02:00
-b | --baseurl)
2020-08-19 11:05:58 +02:00
_check_unset "$2"
if [[ $2 == \/* ]]; then
2019-09-30 14:38:41 +02:00
cmd+=" -b $2"
else
2020-04-09 21:15:51 +02:00
_help
2019-09-30 14:38:41 +02:00
exit 1
fi
shift
shift
;;
2020-09-01 08:54:29 +02:00
-t | --trace)
2019-11-05 10:18:31 +01:00
cmd+=" -t"
shift
;;
2020-09-01 08:54:29 +02:00
-r | --realtime)
2020-08-19 11:05:58 +02:00
_check_command fswatch "http://emcrisostomo.github.io/fswatch/"
realtime=true
shift
;;
2020-10-08 10:00:08 +02:00
--docker)
docker=true
shift
;;
2020-09-01 08:54:29 +02:00
-h | --help)
2020-04-09 21:15:51 +02:00
_help
2019-09-30 14:38:41 +02:00
exit 0
;;
*)
# unknown option
2020-04-09 21:15:51 +02:00
_help
2019-09-30 14:38:41 +02:00
exit 1
;;
esac
done
2019-11-05 10:18:31 +01:00
main