#!/bin/bash
#  OpenVPN 3 Linux client -- Next generation OpenVPN client
#
#  SPDX-License-Identifier: AGPL-3.0-only
#
#  Copyright (C)  OpenVPN Inc <sales@openvpn.net>
#  Copyright (C)  David Sommerseth <davids@openvpn.net>
#

if [ $# -lt 1 ]; then
	echo "Usage: $0 <--version|--gui-version|--prod-version>"
	exit 1
fi

set -u

PROJECT_ROOT="$(dirname $0)/.."
VERSION="noversion"
PRODVERSION="noversion"

if [ -e "${PROJECT_ROOT}/.git" ]; then
	#
	#  Retrieve the version based on the git tree
	#
	#  If a version tag is found (always prefixed with 'v'), this value
	#  is used.  Otherwise compose a version string based on branch name
	#  and commit reference
	VERSION="$(git describe --always --tags)"

	#  Only accept explicit tag references, not a reference
	#  derived from a tag reference, such as "v3_beta-36-gcd68aee"
	echo ${VERSION} | grep -qE "^v[[:digit:]]+(|_[[:alnum:]]+)$"
	ec=$?
	set -eu
	if [ $ec -ne 0  ]; then
		# Presume not a version tag, so use commit reference
		VERSION="$(git rev-parse --symbolic-full-name HEAD | cut -d/ -f3-)_$(git rev-parse --short=16 HEAD)"
		PRODVERSION="$(echo $VERSION | sed 's#/#_#g')"
	else
		# bash could use ${VERSION:1}, but we try to make it
		# work with more basic sh - so we use 'cut' to get the
		# same result
		PRODVERSION="$(echo ${VERSION} | cut -b2-)"
	fi

        # Changed files from the index which are not staged gets the '+' flag
        GIT_FLAGS="$(git diff-files --name-status -r --ignore-submodules --quiet || echo 'm')"
        # Changed files which are staged gets the '*' flag
        GIT_FLAGS="${GIT_FLAGS}$(git diff-index --cached  --quiet --ignore-submodules HEAD || echo 's')"
        if [ -n "${GIT_FLAGS}" ]; then
            VERSION="${VERSION}__${GIT_FLAGS}"
            PRODVERSION="${PRODVERSION}__${GIT_FLAGS}"
        fi

elif [ -f "${PROJECT_ROOT}/src/build-version.h" ]; then
	VERSION="$(cat ${PROJECT_ROOT}/src/build-version.h | awk '/define PACKAGE_GUIVERSION/{gsub("\"", ""); print $3}')"
	PRODVERSION="$(echo $VERSION | sed -e 's#/#_#g' -e 's#:#_#g')"
fi

case "$1" in
	--version)
		echo "${VERSION}"
		;;
	--gui-version)
		echo "${VERSION}" | sed -e 's#/#-#g'
		;;
	--prod-version)
		echo "${PRODVERSION}"
		;;
	*)
		echo "$0: Unknown argument: $1"
		exit 2
		;;
esac
