#!/usr/bin/env bash
# quake3e ebuild updater for nbdy_overlay
# Source: ec-/Quake3e (modern Quake III Arena engine)
# Upstream tags: dated snapshots "YYYY-MM-DD" plus a moving "latest" tag.
# We track the newest dated tag and map it to a dotted ebuild version:
#   tag 2025-10-14  ->  PV 2025.10.14
# The ebuild reverses the mapping (MY_PV="${PV//./-}") for SRC_URI.
# The live games-fps/quake3e-9999 ebuild is left untouched.

set -euo pipefail

CLEANUP_FILES=()
cleanup_on_exit() {
    local exit_code=$?
    if (( exit_code != 0 )) && (( ${#CLEANUP_FILES[@]} > 0 )); then
        for f in "${CLEANUP_FILES[@]}"; do
            [[ -f "$f" ]] && rm -v "$f"
        done
    fi
}
trap cleanup_on_exit EXIT

OVERLAY_DIR="$(dirname "$(dirname "$(realpath "$0")")")"
EBUILD_DIR="${OVERLAY_DIR}/games-fps/quake3e"
PKG_NAME="quake3e"
GITHUB_REPO="ec-/Quake3e"

RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m'

log_info() { echo -e "${BLUE}[INFO]${NC} $1"; }
log_success() { echo -e "${GREEN}[OK]${NC} $1"; }
log_warn() { echo -e "${YELLOW}[WARN]${NC} $1"; }
log_error() { echo -e "${RED}[ERROR]${NC} $1" >&2; }

# Newest non-live ebuild version (ignores quake3e-9999)
get_current_version() {
    local ebuild
    ebuild=$(ls "${EBUILD_DIR}"/${PKG_NAME}-*.ebuild 2>/dev/null \
        | grep -v -- '-9999\.ebuild$' | sort -V | tail -1)
    [[ -z "$ebuild" ]] && { echo ""; return; }
    basename "$ebuild" .ebuild | sed "s/${PKG_NAME}-//"
}

# Echoes the newest dated tag in dot form (YYYY.MM.DD)
get_latest_release() {
    local curl_opts=(-sfL)
    [[ -n "${GITHUB_TOKEN:-}" ]] && curl_opts+=(-H "Authorization: Bearer ${GITHUB_TOKEN}")

    local tag
    tag=$(curl "${curl_opts[@]}" "https://api.github.com/repos/${GITHUB_REPO}/tags?per_page=100" 2>/dev/null \
        | grep -oP '"name"\s*:\s*"\K[0-9]{4}-[0-9]{2}-[0-9]{2}' \
        | sort -V | tail -1 || echo "")

    if [[ -z "$tag" ]]; then
        log_error "Could not find a dated tag (YYYY-MM-DD) on GitHub"
        return 1
    fi
    echo "${tag//-/.}"
}

create_ebuild() {
    local new_version="$1"
    local old_ebuild new_ebuild

    # Prefer the live ebuild as template (always current); fall back to newest release
    old_ebuild="${EBUILD_DIR}/${PKG_NAME}-9999.ebuild"
    [[ -f "$old_ebuild" ]] || old_ebuild=$(ls "${EBUILD_DIR}"/${PKG_NAME}-*.ebuild 2>/dev/null \
        | grep -v -- '-9999\.ebuild$' | sort -V | tail -1)
    new_ebuild="${EBUILD_DIR}/${PKG_NAME}-${new_version}.ebuild"

    if [[ -z "$old_ebuild" ]]; then
        log_error "No existing ebuild found to copy"
        return 1
    fi
    if [[ -f "$new_ebuild" ]]; then
        log_warn "Ebuild already exists: $new_ebuild"
        return 0
    fi

    cp "$old_ebuild" "$new_ebuild"
    CLEANUP_FILES+=("$new_ebuild")
    log_success "Created: ${PKG_NAME}-${new_version}.ebuild"
}

generate_manifest() {
    log_info "Generating Manifest..."

    local pv my_pv distfile src_url
    pv="$1"
    my_pv="${pv//./-}"
    distfile="${PKG_NAME}-${pv}.tar.gz"
    src_url="https://github.com/${GITHUB_REPO}/archive/refs/tags/${my_pv}.tar.gz"

    log_info "Downloading ${my_pv}.tar.gz for checksum..."
    local tmpfile
    tmpfile=$(mktemp)

    if ! curl -sfL -o "$tmpfile" "$src_url"; then
        log_error "Failed to download ${src_url}"
        rm -f "$tmpfile"
        return 1
    fi

    local filesize blake2b sha512
    filesize=$(wc -c < "$tmpfile")
    blake2b=$(b2sum "$tmpfile" | awk '{print $1}')
    sha512=$(sha512sum "$tmpfile" | awk '{print $1}')
    rm -f "$tmpfile"

    echo "DIST ${distfile} ${filesize} BLAKE2B ${blake2b} SHA512 ${sha512}" > "${EBUILD_DIR}/Manifest"
    log_success "Manifest generated for ${distfile} (${filesize} bytes)"
}

# Keep N newest *release* ebuilds; the live -9999 ebuild is always kept.
cleanup_old_versions() {
    local keep="${1:-1}"
    local ebuilds
    mapfile -t ebuilds < <(ls "${EBUILD_DIR}"/${PKG_NAME}-*.ebuild 2>/dev/null \
        | grep -v -- '-9999\.ebuild$' | sort -V)
    local count=${#ebuilds[@]}

    if (( count <= keep )); then
        log_info "No cleanup needed (${count} release versions, keeping ${keep})"
        return
    fi

    local to_remove=$((count - keep))
    log_info "Removing ${to_remove} old release version(s)..."
    for ((i = 0; i < to_remove; i++)); do
        rm -v "${ebuilds[$i]}"
    done
    log_success "Cleanup complete"
}

git_commit() {
    local version="$1"
    cd "${OVERLAY_DIR}"
    git add "${EBUILD_DIR}/"
    if git diff --cached --quiet; then
        log_info "No changes to commit"
        return 0
    fi
    local msg="games-fps/quake3e: bump to ${version}"
    git commit -m "$msg"
    log_success "Committed: $msg"
}

main() {
    local dry_run=false
    local force=false
    local no_commit=false
    local keep_versions=1

    while [[ $# -gt 0 ]]; do
        case $1 in
            -n|--dry-run) dry_run=true; shift ;;
            -f|--force) force=true; shift ;;
            --no-commit) no_commit=true; shift ;;
            --keep) keep_versions="$2"; shift 2 ;;
            -h|--help)
                echo "Usage: $0 [OPTIONS]"
                echo "  -n, --dry-run    Preview changes"
                echo "  -f, --force      Force update"
                echo "  --no-commit      Don't git commit"
                echo "  --keep N         Keep N old release versions (default: 1)"
                exit 0
                ;;
            *) log_error "Unknown option: $1"; exit 1 ;;
        esac
    done

    echo "============================================"
    echo "  Quake3e Ebuild Updater"
    echo "============================================"
    echo ""

    local current_version latest_version
    current_version=$(get_current_version)
    latest_version=$(get_latest_release) || exit 1

    echo "Current: ${current_version:-<none>}"
    echo "Latest:  ${latest_version}"
    echo ""

    if [[ "$current_version" == "$latest_version" ]] && [[ "$force" != "true" ]]; then
        log_success "Already up to date!"
        exit 0
    fi

    if [[ "$dry_run" == "true" ]]; then
        log_info "[DRY-RUN] Would update to ${latest_version} (tag ${latest_version//./-})"
        exit 0
    fi

    create_ebuild "$latest_version"
    generate_manifest "$latest_version"
    cleanup_old_versions "$keep_versions"

    if [[ "$no_commit" != "true" ]]; then
        git_commit "$latest_version"
    fi

    log_success "Update complete: ${latest_version}"
}

main "$@"
