#!/usr/bin/env sh

## Adapted from https://github.com/casey/just/blob/610aa0c52cf8c3d20a79ee641bb9f799ca3027fc/www/install.sh

set -eu

# Echo commands if the GITHUB_ACTIONS variable is set and INSTALL_QUIET is NOT set.
if [ -n "${GITHUB_ACTIONS-}" ] && [ -z "${INSTALL_QUIET-}" ]; then
    set -x
fi

# Check pipefail support in a subshell, ignore if unsupported
# shellcheck disable=SC3040
(set -o pipefail 2> /dev/null) && set -o pipefail

help() {
    cat <<'EOF'
Install a binary release of a ci-manager hosted on GitHub

USAGE:
    install [options]

FLAGS:
    -h, --help      Display this message
    -f, --force     Force overwriting an existing binary

OPTIONS:
    --tag TAG       Tag (version) of the crate to install, defaults to latest release
    --to LOCATION   Where to install the binary [default: ~/bin]
    --target TARGET
EOF
}

crate=ci-manager
url=https://github.com/luftkode/ci-manager
releases=$url/releases

say() {
    echo "install: $*" >&2
}

err() {
    if [ -n "${td-}" ]; then
        rm -rf "$td"
    fi

    say "error: $*"
    exit 1
}

need() {
    if ! command -v "$1" > /dev/null 2>&1; then
        err "need $1 (command not found)"
    fi
}

force=false
while test $# -gt 0; do
  case $1 in
    --force | -f)
      force=true
      ;;
    --help | -h)
      help
      exit 0
      ;;
    --tag)
      tag=$2
      shift
      ;;
    --target)
      target=$2
      shift
      ;;
    --to)
      dest=$2
      shift
      ;;
    *)
      ;;
  esac
  shift
done

need curl
need install
need mkdir
need mktemp
need tar

if [ -z "${tag-}" ]; then
    need grep
    need cut
fi

if [ -z "${target-}" ]; then
    need cut
fi

if [ -z "${dest-}" ]; then
    dest="$HOME/bin"
fi

if [ -z "${tag-}" ]; then
    tag=$(
        curl --proto =https --tlsv1.2 -sSf \
            https://api.github.com/repos/luftkode/ci-manager/releases/latest |
        grep tag_name |
        cut -d'"' -f4
    )
fi

if [ -z "${target-}" ]; then
    # bash compiled with MINGW (e.g. git-bash, used in github windows runners),
    # unhelpfully includes a version suffix in `uname -s` output, so handle that.
    # e.g. MINGW64_NT-10-0.19044
    kernel=$(uname -s | cut -d- -f1)
    uname_target="$(uname -m)-$kernel"

    case $uname_target in
        aarch64-Linux | arm64-Darwin | x86_64-Darwin)
        err  "Target ${uname_target} not currently supported, sorry!"
        ;;
        x86_64-Linux)      target=x86_64-unknown-linux-musl;;
        x86_64-MINGW64_NT) target=x86_64-pc-windows-msvc;;
        x86_64-Windows_NT) target=x86_64-pc-windows-msvc;;
        *)
        # shellcheck disable=SC2016
        err 'Could not determine target from output of `uname -m`-`uname -s`, please use `--target`:' "$uname_target"
        ;;
    esac
fi

case $target in
    x86_64-pc-windows-msvc) extension=zip; need unzip;;
    *)                      extension=tar.gz;;
esac

archive="$releases/download/$tag/$crate-$tag-$target.$extension"

say "Repository:  $url"
say "Crate:       $crate"
say "Tag:         $tag"
say "Target:      $target"
say "Destination: $dest"
say "Archive:     $archive"

td=$(mktemp -d || mktemp -d -t tmp)

if [ "$extension" = "zip" ]; then
    curl --proto =https --tlsv1.2 -sSfL "$archive" > "$td/ci-manager.zip"
    unzip -d "$td" "$td/ci-manager.zip"
else
    curl --proto =https --tlsv1.2 -sSfL "$archive" | tar -C "$td" -xz
fi

if [ -e "$dest/ci-manager" ] && [ "$force" = false ]; then
    err "\`$dest/ci-manager\` already exists"
else
    mkdir -p "$dest"
    install -m 755 "$td/ci-manager" "$dest"
fi

rm -rf "$td"
