#!/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() { docker run --rm -i -v "${PWD}:/workdir" mikefarah/yq:4 "$@" } jq() { docker run --rm -i -v "${PWD}:/data" imega/jq "$@" } 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 SERVICE="$(yq eval '.services.*.image | select(. == "sleede/fab-manager*") | path | .[-2]' docker-compose.yml)" YES_ALL=${Y:-false} # COMMANDS, SCRIPTS and ENVIRONMENTS are set by parseparams } # 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\nYou must upgrade Fab-manager to %s first.\nPlease refer to https://github.com/sleede/fab-manager/blob/master/doc/production_readme.md#update-fab-manager for instructions\n" "$1" 1>&2 exit 3 } version_check() { VERSION=$(docker-compose exec -T "$SERVICE" cat .fabmanager-version 2>/dev/null) if [[ $? = 1 ]]; then VERSION=$(docker-compose exec -T "$SERVICE" cat package.json | jq -r '.version') 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" fi } add_environments() { for ENV in "${ENVIRONMENTS[@]}"; do if [[ "$ENV" =~ ^[A-Z0-9_]+=.*$ ]]; then printf "\e[91m::\e[0m \e[1mInserting variable %s..\e[0m.\n" "$ENV" printf "# added on %s\n%s\n" "$(date +%Y-%m-%d\ %R)" "$ENV" >> "config/env" else echo "Ignoring invalid option: -e $ENV. Given value is not valid environment variable, please see https://huit.re/environment-doc" 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() { IMAGE=$(yq eval '.services.*.image | select(. == "sleede/fab-manager*")' docker-compose.yml) mapfile -t COMPOSE_ENVS < <(yq eval ".services.$SERVICE.environment" docker-compose.yml) 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 "PostgreSQL container is not running, unable to compile the assets\nExiting..." exit 1 fi PG_NET_ID=$(docker inspect "$PG_ID" -f "{{json .NetworkSettings.Networks }}" | jq -r '.[] .NetworkID') clean_env_file # 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 docker-compose down rm -rf public/packs mv public/new_packs public/packs } upgrade() { [[ "$YES_ALL" = "true" ]] && confirm="y" || read -rp "Proceed with the upgrade? (Y/n) " confirm Provides additional upgrade command, run in the context of the app (TODO DEPLOY) -s Executes a remote script (TODO DEPOY) -e 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 version_check add_environments upgrade clean } proceed "$@"