1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/setup/upgrade.sh

216 lines
6.6 KiB
Bash
Raw Normal View History

2020-06-30 16:11:12 +02:00
#!/usr/bin/env bash
parseparams()
{
COMMANDS=()
SCRIPTS=()
ENVIRONMENTS=()
while getopts "hys:c:e:" opt; do
case "${opt}" in
y)
Y=true
;;
s)
SCRIPTS+=("$OPTARG")
;;
c)
COMMANDS+=("$OPTARG")
;;
e)
ENVIRONMENTS+=("$OPTARG")
;;
*)
usage
;;
esac
done
shift $((OPTIND-1))
}
yq() {
2021-03-01 10:13:48 +01:00
docker run --rm -i -v "${PWD}:/workdir" mikefarah/yq:4 "$@"
2020-06-30 16:11:12 +02:00
}
2020-10-21 13:13:13 +02:00
jq() {
docker run --rm -i -v "${PWD}:/data" imega/jq "$@"
}
2020-06-30 16:11:12 +02:00
config()
{
echo -ne "Checking user... "
if [[ "$(whoami)" != "root" ]] && ! groups | grep docker
then
echo "Please add your current user to the docker group OR run this script as root."
echo "current user is not allowed to use docker, exiting..."
exit 1
fi
echo -e "Checking installation..."
if [ ! -f "docker-compose.yml" ]; then
echo -e "\e[91m[ ❌ ] docker-compose.yml was not found in ${PWD}. Please run this script from the Fab-manager's installation folder. Exiting... \e[39m"
exit 1
fi
2020-06-30 16:11:12 +02:00
2021-03-01 10:13:48 +01:00
SERVICE="$(yq eval '.services.*.image | select(. == "sleede/fab-manager*") | path | .[-2]' docker-compose.yml)"
2020-06-30 16:11:12 +02:00
YES_ALL=${Y:-false}
# COMMANDS, SCRIPTS and ENVIRONMENTS are set by parseparams
if [ -z "${SERVICE}" ]; then
echo -e "\e[91m[ ❌ ] The service name was not determined. Please check your docker-compose.yml file. Exiting... \e[39m"
exit 1
fi
2021-05-18 09:40:35 +02:00
echo -e "\n"
2020-06-30 16:11:12 +02:00
}
2020-10-06 14:18:35 +02:00
# compare versions utilities
# https://stackoverflow.com/a/4024263/1039377
verlte() {
[ "$1" = "$(echo -e "$1\n$2" | sort -V | head -n1)" ]
}
verlt() {
[ "$1" = "$2" ] && return 1 || verlte "$1" "$2"
}
version_error()
{
printf "\n\n\e[91m[ ❌ ] You are running Fab-manager version %s\n\e[39m" "${VERSION:-undetermined}"
printf "You must upgrade Fab-manager to %s first.\nPlease refer to http://update.doc.fab.mn for instructions\n" "$1" 1>&2
2020-10-06 14:18:35 +02:00
exit 3
}
version_check()
{
2021-03-09 09:25:27 +01:00
VERSION=$(docker-compose exec -T "$SERVICE" cat .fabmanager-version 2>/dev/null)
2020-10-06 14:18:35 +02:00
if [[ $? = 1 ]]; then
VERSION=$(docker-compose exec -T "$SERVICE" cat package.json | jq -r '.version')
2020-10-06 14:18:35 +02:00
fi
if verlt "$VERSION" 2.8.3; then
version_error "v2.8.3"
elif verlt "$VERSION" 3.1.2; then
version_error "v3.1.2"
elif verlt "$VERSION" 4.0.4; then
version_error "v4.0.4"
elif verlt "$VERSION" 4.4.6; then
version_error "v4.4.6"
2020-10-06 14:18:35 +02:00
fi
}
2020-06-30 16:11:12 +02:00
add_environments()
{
for ENV in "${ENVIRONMENTS[@]}"; do
if [[ "$ENV" =~ ^[A-Z0-9_]+=.*$ ]]; then
2021-03-24 11:04:59 +01:00
printf "\e[91m::\e[0m \e[1mInserting variable %s..\e[0m.\n" "$ENV"
2020-06-30 16:11:12 +02:00
printf "# added on %s\n%s\n" "$(date +%Y-%m-%d\ %R)" "$ENV" >> "config/env"
else
printf "\e[93m[ ⚠ ] Ignoring invalid option: -e %s.\e[39m\n Given value is not valid environment variable, please see http://env.doc.fab.mn\n" "$ENV"
2020-06-30 16:11:12 +02:00
fi
done
}
clean_env_file()
{
# docker run --env-file does not support whitespaces in the environment variables so we must clean the file
sed -ri 's/^([A-Z0-9_]+)\s*=\s*(.*)$/\1=\2/g' ./config/env
}
compile_assets()
2020-10-21 10:44:43 +02:00
{
2021-03-01 10:13:48 +01:00
IMAGE=$(yq eval '.services.*.image | select(. == "sleede/fab-manager*")' docker-compose.yml)
mapfile -t COMPOSE_ENVS < <(yq eval ".services.$SERVICE.environment" docker-compose.yml)
2020-10-21 13:13:13 +02:00
ENV_ARGS=$(for i in "${COMPOSE_ENVS[@]}"; do sed 's/: /=/g;s/^/-e /g' <<< "$i"; done)
PG_ID=$(docker-compose ps -q postgres)
if [[ "$PG_ID" = "" ]]; then
printf "\e[91m[ ❌ ] PostgreSQL container is not running, unable to compile the assets\e[39m\nExiting..."
exit 1
fi
2020-10-21 13:13:13 +02:00
PG_NET_ID=$(docker inspect "$PG_ID" -f "{{json .NetworkSettings.Networks }}" | jq -r '.[] .NetworkID')
clean_env_file
2020-10-21 13:13:13 +02:00
# shellcheck disable=SC2068
docker run --rm --env-file ./config/env ${ENV_ARGS[@]} --link "$PG_ID" --net "$PG_NET_ID" -v "${PWD}/public/new_packs:/usr/src/app/public/packs" "$IMAGE" bundle exec rake assets:precompile
2020-10-21 10:44:43 +02:00
docker-compose down
rm -rf public/packs
mv public/new_packs public/packs
}
2020-06-30 16:11:12 +02:00
upgrade()
{
[[ "$YES_ALL" = "true" ]] && confirm="y" || read -rp ":: Proceed with the upgrade? (Y/n) " confirm </dev/tty
if [[ "$confirm" = "n" ]]; then exit 2; fi
2020-06-30 16:11:12 +02:00
add_environments
if ! docker-compose pull "$SERVICE"; then
printf "\e[91m[ ❌ ] An error occurred, detected service name: %s\e[39m\nExiting..." "$SERVICE"
2020-06-30 16:11:12 +02:00
exit 1
fi
BRANCH='master'
2021-03-01 10:13:48 +01:00
if yq eval '.services.*.image | select(. == "sleede/fab-manager*")' docker-compose.yml | grep -q ':dev'; then BRANCH='dev'; fi
2020-06-30 16:11:12 +02:00
for SCRIPT in "${SCRIPTS[@]}"; do
2021-03-24 11:04:59 +01:00
printf "\e[91m::\e[0m \e[1mRunning script %s from branch %s...\e[0m\n" "$SCRIPT" "$BRANCH"
2020-07-01 10:52:43 +02:00
if [[ "$YES_ALL" = "true" ]]; then
\curl -sSL "https://raw.githubusercontent.com/sleede/fab-manager/$BRANCH/scripts/$SCRIPT.sh" | bash -s -- -y
2020-07-01 10:52:43 +02:00
else
\curl -sSL "https://raw.githubusercontent.com/sleede/fab-manager/$BRANCH/scripts/$SCRIPT.sh" | bash
2020-07-01 10:52:43 +02:00
fi
# shellcheck disable=SC2181
if [[ $? != 0 ]]; then
printf "\e[93m[ ⚠ ] Something may have went wrong while running \"%s\", please check the logs above...\e[39m\n" "$SCRIPT"
[[ "$YES_ALL" = "true" ]] && confirm="y" || read -rp ":: Ignore and continue? (Y/n) " confirm </dev/tty
if [[ "$confirm" = "n" ]]; then exit 4; fi
fi
2020-06-30 16:11:12 +02:00
done
compile_assets
if ! docker-compose run --rm "$SERVICE" bundle exec rake db:migrate; then
printf "\e[91m[ ❌ ] Something went wrong while migrating the database, please check the logs above.\e[39m\nExiting...\n"
exit 4
fi
2020-06-30 16:11:12 +02:00
for COMMAND in "${COMMANDS[@]}"; do
2021-03-24 11:04:59 +01:00
printf "\e[91m::\e[0m \e[1mRunning command %s...\e[0m\n" "$COMMAND"
if ! docker-compose run --rm "$SERVICE" bundle exec "$COMMAND"; then
printf "\e[91m[ ❌ ] Something went wrong while running \"%s\", please check the logs above.\e[39m\nExiting...\n" "$COMMAND"
exit 4
fi
2020-06-30 16:11:12 +02:00
done
docker-compose up -d
docker ps
}
clean()
{
2021-03-24 11:04:59 +01:00
echo -e "\e[91m::\e[0m \e[1mCurrent disk usage:\e[0m"
2020-06-30 16:11:12 +02:00
df -h /
[[ "$YES_ALL" = "true" ]] && confirm="y" || read -rp ":: Clean previous docker images? (y/N) " confirm </dev/tty
2020-06-30 16:11:12 +02:00
if [[ "$confirm" == "y" ]]; then
/usr/bin/docker image prune -f
fi
}
usage()
{
printf "Usage: %s [OPTIONS]
Options:
-h Print this message and quit
-y Answer yes to all questions
-c <string> Provides additional upgrade command, run in the context of the app (TODO DEPLOY)
-s <string> Executes a remote script (TODO DEPOY)
-e <string> Adds the environment variable to config/env\n" "$(basename "$0")" 1>&2
exit 1
}
function trap_ctrlc()
{
echo "Ctrl^C, exiting..."
exit 2
}
proceed()
{
trap "trap_ctrlc" 2 # SIGINT
parseparams "$@"
config
2020-10-06 14:18:35 +02:00
version_check
2020-06-30 16:11:12 +02:00
upgrade
clean
}
proceed "$@"