#!/bin/bash
#
# Prepare a new announce concerning mondorescue
#
# $Id$
#
# Syntax: mkannounce [ver-tag]
#

dname=`dirname $0`
prem=`echo $dname |cut -c1`
if [ _${prem} = _"/" ]; then
	export TOOLHOME=$dname
else
	export TOOLHOME=${PWD}/$dname
fi

. $TOOLHOME/common-env
. $TOOLHOME/distro-env
. $TOOLHOME/ftp-env

# We need to get $VER and $TAG
if [ "$1" = "" ]; then
	LAST=`cat ${TOPDIR}/LAST`
else
	LAST=$1
	shift
fi
VER=`echo $LAST | cut -d- -f1`
TAG=`echo $LAST | cut -d- -f2`

SEARCH=`echo $VER | cut -c2-`

rm -f $MONDOTMP/announce.tmp
cat > $MONDOTMP/announce.tmp << EOF
MondoRescue $VER is now available</p>

<p>I'm happy to announce the availability of a newest version of mondorescue $VER. Enjoy it as usual!</p>
<p>
Now available at <a href="ftp://ftp.mondorescue.org/">ftp://ftp.mondorescue.org/
</a>
</p>
<p>
EOF
ssh -q ${ACCOUNT} "cd $DSTDIR ; find . -name 'mondo-2.2.5*'" | grep -v 'src.rpm' >> $MONDOTMP/announce.tmp
ssh -q ${ACCOUNT} "cd $DSTDIR ; find . -name 'mindi-2.0.0*'" | grep -v 'src.rpm' >> $MONDOTMP/announce.tmp
ssh -q ${ACCOUNT} "cd $DSTDIR ; find . -name 'mindi-busybox-1.7.3*'" | grep -v 'src.rpm' >> $MONDOTMP/announce.tmp
cat >> $MONDOTMP/announce.tmp << EOF
</p>

<p>As usual src.rpm packages are also available in the same directory.</p>

<p>
Changes are :
</p>
EOF

# Generating log files
$TOOLHOME/mkchangelog.pl announce mindi $MONDOTMP/mindi.ann
$TOOLHOME/mkchangelog.pl announce mondo $MONDOTMP/mondo.ann
$TOOLHOME/mkchangelog.pl announce mindi-busybox $MONDOTMP/mindi-busybox.ann
echo "<p>" >> $MONDOTMP/announce.tmp
sed 's/$/<br>/' $MONDOTMP/mindi.ann >> $MONDOTMP/announce.tmp
echo "</p><p>" >> $MONDOTMP/announce.tmp
sed 's/$/<br>/' $MONDOTMP/mondo.ann >> $MONDOTMP/announce.tmp
echo "</p><p>" >> $MONDOTMP/announce.tmp
sed 's/$/<br>/' $MONDOTMP/mindi-busybox.ann >> $MONDOTMP/announce.tmp
echo "</p>" >> $MONDOTMP/announce.tmp
rm -f $MONDOTMP/mindi.ann $MONDOTMP/mondo.ann

vi $MONDOTMP/announce.tmp
# Store it in DB for Web pages generation
$TOOLHOME/mkannounce.pl $MONDOTMP/announce.tmp
# Then deliver it on the Web
$TOOLHOME/livwww www
cat > $MONDOTMP/announce.hdr << EOF
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x html1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" xml:lang="en" lang="en">
  <head>
  </head>
  <body>
  <p>
EOF
cat > $MONDOTMP/announce.ftr << EOF
</body>
</html>
EOF
# Mail it to mr ML
cat $MONDOTMP/announce.hdr $MONDOTMP/announce.tmp $MONDOTMP/announce.ftr | w3m -dump -T text/html > $MONDOTMP/mondo.ann.txt
export EMAIL="bruno@mondorescue.org"
cat $MONDOTMP/mondo.ann.txt | mutt -s "ANNOUNCE: `head -1 $MONDOTMP/mondo.ann.txt`" mondo-devel@lists.sourceforge.net -c mondorescue-announce@lists.berlios.de
rm -rf $MONDOTMP
