2021-01-25 01:20:51 +03:00
|
|
|
#!/usr/bin/env bash
|
2020-07-28 21:27:40 +03:00
|
|
|
#
|
|
|
|
# Init the evrionment for new user.
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
ACTIONS_WORKFLOW=pages-deploy.yml
|
|
|
|
|
2021-09-29 20:57:28 +03:00
|
|
|
TEMP_SUFFIX="to-delete" # temporary file suffixes that make `sed -i` compatible with BSD and Linux
|
|
|
|
|
2020-07-28 21:27:40 +03:00
|
|
|
help() {
|
|
|
|
echo "Usage:"
|
|
|
|
echo
|
|
|
|
echo " bash /path/to/init.sh [options]"
|
|
|
|
echo
|
|
|
|
echo "Options:"
|
|
|
|
echo " --no-gh Do not deploy to Github."
|
|
|
|
echo " -h, --help Print this help information."
|
|
|
|
}
|
|
|
|
|
2021-09-28 16:34:07 +03:00
|
|
|
check_status() {
|
|
|
|
if [[ -n $(git status . -s) ]]; then
|
|
|
|
echo "Error: Commit unstaged files first, and then run this tool againt."
|
|
|
|
exit -1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-07-28 21:27:40 +03:00
|
|
|
check_init() {
|
|
|
|
local _has_inited=false
|
|
|
|
|
2022-02-03 18:58:52 +03:00
|
|
|
if [[ ! -d .github ]]; then # using option `--no-gh`
|
|
|
|
_has_inited=true
|
|
|
|
else
|
|
|
|
if [[ -f .github/workflows/$ACTIONS_WORKFLOW ]]; then
|
|
|
|
# on BSD, the `wc` could contains blank
|
|
|
|
local _count="$(find .github/workflows/ -type f -name "*.yml" | wc -l)"
|
|
|
|
if [[ ${_count//[[:blank:]]/} == 1 ]]; then
|
|
|
|
_has_inited=true
|
2020-09-04 14:49:18 +03:00
|
|
|
fi
|
2020-07-28 21:27:40 +03:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2020-09-01 09:54:29 +03:00
|
|
|
if $_has_inited; then
|
2020-07-28 21:27:40 +03:00
|
|
|
echo "Already initialized."
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
init_files() {
|
2020-09-01 09:54:29 +03:00
|
|
|
if $_no_gh; then
|
2020-07-28 21:27:40 +03:00
|
|
|
rm -rf .github
|
|
|
|
else
|
2021-09-29 18:14:59 +03:00
|
|
|
## Change the files of `.github`
|
|
|
|
|
2020-07-28 21:27:40 +03:00
|
|
|
mv .github/workflows/$ACTIONS_WORKFLOW.hook .
|
|
|
|
rm -rf .github
|
|
|
|
mkdir -p .github/workflows
|
|
|
|
mv ./${ACTIONS_WORKFLOW}.hook .github/workflows/${ACTIONS_WORKFLOW}
|
2021-09-28 16:34:07 +03:00
|
|
|
|
2021-09-29 18:14:59 +03:00
|
|
|
## Ensure the gh-actions trigger branch
|
2021-09-28 16:34:07 +03:00
|
|
|
|
|
|
|
_workflow=".github/workflows/${ACTIONS_WORKFLOW}"
|
|
|
|
_default_branch="$(git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@')"
|
|
|
|
_lineno="$(sed -n "/branches:/=" "$_workflow")"
|
2021-09-29 20:57:28 +03:00
|
|
|
|
|
|
|
sed -i.$TEMP_SUFFIX "$((_lineno + 1))s/- .*/- ${_default_branch}/" "$_workflow"
|
|
|
|
rm -f "$_workflow.$TEMP_SUFFIX"
|
2021-09-28 16:34:07 +03:00
|
|
|
|
2021-09-29 18:14:59 +03:00
|
|
|
## Cleanup image settings in site config
|
2021-10-03 13:39:00 +03:00
|
|
|
sed -i.$TEMP_SUFFIX "s/^img_cdn:.*/img_cdn:/;s/^avatar:.*/avatar:/" _config.yml
|
2021-09-29 18:14:59 +03:00
|
|
|
rm -f _config.yml.$TEMP_SUFFIX
|
|
|
|
|
2020-07-28 21:27:40 +03:00
|
|
|
fi
|
|
|
|
|
2021-09-28 16:34:07 +03:00
|
|
|
# trace the gem lockfile on user-end
|
2021-09-29 20:57:28 +03:00
|
|
|
sed -i.$TEMP_SUFFIX "/Gemfile.lock/d" .gitignore
|
|
|
|
rm -f ".gitignore.$TEMP_SUFFIX"
|
2021-09-28 16:34:07 +03:00
|
|
|
|
|
|
|
# remove the other fies
|
2020-07-28 21:27:40 +03:00
|
|
|
rm -f .travis.yml
|
2022-02-03 18:58:52 +03:00
|
|
|
rm -rf _posts/*
|
2020-07-28 21:27:40 +03:00
|
|
|
|
2021-09-28 16:34:07 +03:00
|
|
|
# save changes
|
2021-10-10 20:50:40 +03:00
|
|
|
git add -A
|
2020-07-28 21:27:40 +03:00
|
|
|
git commit -m "[Automation] Initialize the environment." -q
|
|
|
|
|
|
|
|
echo "[INFO] Initialization successful!"
|
|
|
|
}
|
|
|
|
|
2021-09-28 16:34:07 +03:00
|
|
|
check_status
|
|
|
|
|
2020-07-28 21:27:40 +03:00
|
|
|
check_init
|
|
|
|
|
|
|
|
_no_gh=false
|
|
|
|
|
2020-09-01 09:54:29 +03:00
|
|
|
while (($#)); do
|
2020-07-28 21:27:40 +03:00
|
|
|
opt="$1"
|
|
|
|
case $opt in
|
2022-02-03 18:58:52 +03:00
|
|
|
--no-gh)
|
|
|
|
_no_gh=true
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-h | --help)
|
|
|
|
help
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# unknown option
|
|
|
|
help
|
|
|
|
exit 1
|
|
|
|
;;
|
2020-07-28 21:27:40 +03:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
init_files
|