#!/bin/bash
#
# Copyright (c) 2021 The Flatcar Maintainers.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# >>> This file is supposed to be SOURCED from the repository ROOT. <<<
#
# garbage_collect_github_ci() should be called after sourcing.
#
#  OPTIONAL INPUT
#  - Number of (recent) Github SDK builds to keep. Defaults to 20.
#  - Minimum age of version tag to be purged, in days. Defaults to 14.
#           Only artifacts older than this AND exceeding the builds to keep threshold
#           will be removed.
#  - DRY_RUN (Env variable). Set to "y" to just list what would be done but not
#            actually purge anything.
# Flatcar Github CI SDK rebuild automation garbage collector.
#  This script removes development (non-official) SDK image builds generated via Github CI.
#
#  Garbage collection is based on development (non-official) SDK versions listed on
#     https://bincache.flatcar-linux.net/containers/
#  and following the pattern [VERSION_NUMBER]*-github-*. The newest 20 builds will be retained,
#   all older builds will be purged (20 is the default, see OPTIONAL INPUT above).
function garbage_collect_github_ci() {
    # Run a subshell, so the traps, environment changes and global
    # variables are not spilled into the caller.
    (
        set -euo pipefail
        _garbage_collect_github_ci_impl "${@}"
    )
}
# --
function _garbage_collect_github_ci_impl() {
    local keep="${1:-20}"
    local min_age_days="${2:-14}"
    local dry_run="${DRY_RUN:-}"
    local min_age_date="$(date -d "${min_age_days} days ago" +'%Y_%m_%d')"
    source ci-automation/ci_automation_common.sh
    local sshcmd="$(gen_sshcmd)"
    # Example version string
    #   
    #   
    local versions_detected="$(curl -s https://${BUILDCACHE_SERVER}/containers/ \
                | grep -E '\' \
                | sed 's:.*\"./\([^/]\+\)/".*:\1:' )"
    # Sort versions by date. Since version numbers can differ and this would impact sort, we
    # 1. insert a "/" between "...-github-[pr-XXX]-" and "[date]..."
    # 2. sort with delimiter "/" and sorting key 2 (i.e. the date part)
    # 3. remove the "/"
   local versions_sorted="$(echo "${versions_detected}" \
                        | sed 's/\(-github\(-pr-[0-9]*\)*-\)/\1\//' \
                        | sort -k 2 -t / -r \
                        | sed 's:/::')"
    echo
    echo "Number of versions to keep: '${keep}'"
    echo "Keep newer than: '${min_age_date}'"
    echo
    echo "######## Full list of version(s) found ########"
    echo "${versions_sorted}" | awk '{printf "%5d %s\n", NR, $0}'
    local purge_versions
    mapfile -t purge_versions < <(unset POSIXLY_CORRECT; \
            echo "${versions_sorted}" \
            | awk -v keep="${keep}" -v min_age="${min_age_date}" '{
                if (keep > 0) {
                    keep = keep - 1
                    next
                }
                ts = gensub(".*-github-([0-9_]+)__.*","\\1","g",$1)
                if (ts > min_age)
                    next
                print $1
                }')
    echo
    echo "######## The following version(s) will be purged ########"
    if [ "$dry_run" = "y" ] ; then
        echo
        echo "(NOTE this is just a dry run since DRY_RUN=y)"
        echo
    fi
    printf '%s\n' "${purge_versions[@]}" | awk '{if ($0 == "") next; printf "%5d %s\n", NR, $0}'
    echo
    echo
    local version=""
    for version in "${purge_versions[@]}"; do
        echo "--------------------------------------------"
        echo
        echo "#### Processing version '${version}' ####"
        echo
        local rmpat="${BUILDCACHE_PATH_PREFIX}/containers/${version}/"
        echo "## The following files will be removed ##"
        $sshcmd "${BUILDCACHE_USER}@${BUILDCACHE_SERVER}" \
            "ls -la ${rmpat} || true"
        if [ "$dry_run" != "y" ] ; then
            set -x
            $sshcmd "${BUILDCACHE_USER}@${BUILDCACHE_SERVER}" \
                "rm -rf ${rmpat}"
            set +x
        else
            echo "## (DRY_RUN=y so not doing anything) ##"
        fi
    done
}
# --