#!/usr/bin/env bash

# GNU Wget: Make a new release
#
# This is a helper script to make a new release of GNU Wget
#
# Author: Darshit Shah <darnir@gnu.org>

set -e
set -o pipefail
set -u

export CFLAGS="-g -O2 -Wall"
export LC_ALL=C

EXTENSIONS="gzip lzip"

ask_continue() {
	printf "Continue? [y/N]: "
	read -r inp
	[ "$inp" != "y" ] && [ "$inp" != "Y" ] && exit 1
	# For some completely weird reason, this set +x is required. Else, the test
	# *ALWAYS* fails
	set +x
}

REQUIRED_PROGRAMS="ncftpput sponge cvs ssh rsync rsh"
for prog in $REQUIRED_PROGRAMS; do
	if ! command -v "$prog" >/dev/null 2>&1; then
		2>&1 echo "Required program $prog not found. Please install before proceeding"
		exit 1
	fi
done

if [ ! -d ".git" ]; then
	2>&1 echo "Please run this script from the root of the git repository"
	exit 1
fi

if [ $# -ne 2 ]; then
	2>&1 echo "Usage: $0 [version] [release-type]"
	exit 1
fi

readonly VERSION="$1" && shift
readonly REL_TYPE_IN="$1" && shift
REL_TYPE=
case $REL_TYPE_IN in
	a|A|alpha|Alpha) REL_TYPE=alpha;;
	b|B|beta|Beta) REL_TYPE=beta;;
	s|S|stable|Stable) REL_TYPE=stable;;
esac

echo "This script will make a new release and upload it to the GNU FTP Servers"
echo "Will run git clean -dxf to get a clean dir"
ask_continue

# Make sure we have a clean working directory
git clean -dxfq

echo "=> Bootstrap"
./bootstrap > /dev/null 2>&1
autoreconf -ivf

echo "=> Configure"
./configure -q

echo "Building $APP_NAME v$VERSION $REL_TYPE"
ask_continue

LNO_CVER=$(grep -in "Noteworthy changes in release" NEWS | head -1 | tail -1 | cut -f1 -d:)
LNO_PVER=$(grep -in "Noteworthy changes in release" NEWS | head -2 | tail -1 | cut -f1 -d:)
sed -n "${LNO_CVER},${LNO_PVER}p" NEWS
echo "This is the current contents of your NEWS"
ask_continue

export RELEASE="$VERSION $REL_TYPE"

echo "=> Making release-commit"
make -s release-commit

echo "=> Make release"
make -s release

GPG_KEY=
while [ -z $GPG_KEY ]; do
	printf "Enter GPG Key ID for Signing: "
	read key
	gpg --list-keys "$key" || continue
	printf "Will use this key to sign releases. Continue? [y/N]: "
	read x
	[ "$x" = "y" ] || [ "$x" = "Y" ] && GPG_KEY="$key"
done

echo ""

upload_command=$(make -s emit_upload_commands \
    | sponge \
    | head -n3 \
    | tail -1 \
    | sed "s/--to/--user $GPG_KEY --symlink-regex --to/g"
)

echo "=> Uploading"
echo "Upload tarballs?"
echo "$upload_command"
ask_continue
$upload_command

if [[ $REL_TYPE == "stable" ]]; then
    export CVSROOT=:ext:${CVSUSER:-${USER}}@cvs.savannah.gnu.org:/web/wget
    export CVS_RSH=/usr/bin/ssh
    export gendocs_options_=-I ../build-aux
    make web-manual-update
fi

echo ""
echo "Remaining Release Checklist:
  1. Send a mail to coordinator@translationproject.org with the subject
	 \"Requesting Translations for $APP_NAME-$VERSION.POT\"
  2. Announce email template placed at ~/announce-$APP_NAME-$VERSION
     Send an announce mail to info-gnu@gnu.org
"