check_rc_upgrade/check_rc_upgrade.sh

287 lines
6.9 KiB
Bash
Raw Normal View History

2010-05-11 09:48:45 +02:00
#!/bin/bash
#NAME="My Roundcube"
RC_HOME=/var/www/webmail/public_html
2010-05-11 09:48:45 +02:00
MAIL=root
SEND_EVERY_NB_DAY=7
CACHE=$RC_HOME/../.cache_check_upgrade
CACHE_FAILED=$CACHE.failed
MAX_CHECK=10
MAX_FAILED=3
SLEEP_ON_FAILED=10
CHECK_URL=http://www.roundcube.net/download
2011-02-10 12:09:08 +01:00
DOWNLOAD=0
DOWNLOAD_DIR=$RC_HOME/../upstream
2011-02-10 13:16:06 +01:00
OWNER=root
GROUP=www-data
2010-05-11 09:48:45 +02:00
DEBUG=0
2011-02-10 13:16:06 +01:00
UPGRADE=0
EXTRACT=0
function usage() {
2011-02-10 13:16:06 +01:00
echo "Usage : $0 [-v] [-d] [-u]"
echo " -v Verbose mode"
echo " -d Download new release"
2011-02-10 13:16:06 +01:00
echo " -u Upgrade installation"
echo " -h Display this help"
}
2011-02-10 13:16:06 +01:00
while getopts ":dvhu" opt; do
case $opt in
v)
DEBUG=1
;;
d)
DOWNLOAD=1
;;
2011-02-10 13:16:06 +01:00
u)
DOWNLOAD=1
UPGRADE=1
DEBUG=1
EXTRACT=1
;;
h)
usage
exit 0
;;
\?)
echo "Invalid option: -$OPTARG" >&2
echo
usage
exit 1
;;
:)
echo "Option -$OPTARG requires an argument." >&2
echo
usage
exit 1
;;
esac
done
2010-05-11 09:48:45 +02:00
[ -f "$0.local" ] && source "$0.local" && [ $DEBUG -eq 1 ] && echo "Import local config file : $0.local"
current=`egrep "define.*RCMAIL_VERSION" $RC_HOME/program/include/iniset.php|sed "s/define('.*', '\([^']*\)'.*$/\1/"`
2011-01-13 12:30:57 +01:00
current="`echo $current|sed 's/-rc$//'`"
current="`echo $current|sed 's/-beta$//'`"
2010-05-11 09:48:45 +02:00
[ $DEBUG -eq 1 ] && echo "Current : $current"
for i in `seq 1 $MAX_CHECK`
do
tmpfile=`mktemp`
wget -q $CHECK_URL -O $tmpfile
2013-01-11 09:53:26 +01:00
newest=`cat $tmpfile|grep dlversion|grep Complete|head -n 1|sed 's/^.*: \([0-9\.]*\).*$/\1/'`
if [ -n "$newest" ]
then
[ $DEBUG -eq 1 ] && echo "Newest : $newest"
rm -f $CACHE_FAILED > /dev/null 2>&1
DOWNLOAD_URL=`cat $tmpfile|grep "$newest"|grep "tar.gz"|head -1|sed 's/.* href="[ \t]*\([^"]*\)[ \t]*" .*$/\1/'`
[ $DEBUG -eq 1 ] && echo "Download URL : $DOWNLOAD_URL"
[ ! -n "$DOWNLOAD_URL" ] && DOWNLOAD_URL="$CHECK_URL" && [ $DEBUG -eq 1 ] && echo "Use check URL as download URL : $DOWNLOAD_URL"
2010-05-11 09:48:45 +02:00
rm -f $tmpfile > /dev/null 2>&1
break;
elif [ $i -eq $MAX_CHECK ]
then
error="Site du projet injoignable (ou structure du site modifie !!) => Impossible de recuperer le numero de la version stable actuel."
[ $DEBUG -eq 1 ] && echo $error
if [ -f $CACHE_FAILED ]
then
NB=`cat $CACHE_FAILED`
[ $DEBUG -eq 1 ] && echo "Fichier de cache d'erreur existe : $NB echec. Max : $MAX_FAILED"
if [ $NB -lt $MAX_FAILED ]
then
let NNB=NB+1
[ $DEBUG -eq 1 ] && echo "Augmentation du nb d'erreur dans le fichier de cache d'erreur : $NB -> $NNB"
echo -n $NNB > $CACHE_FAILED
else
[ $DEBUG -eq 1 ] && echo "MAX_FAILED atteint : on envoi un mail"
echo $error|mail -s "New RoundCude release check : FAILED" $MAIL
fi
else
[ $DEBUG -eq 1 ] && echo "Fichier de cache d'erreur n'existe pas : on l'initialise à 1."
echo -n 1 > $CACHE_FAILED
fi
[ $DEBUG -eq 1 ] && echo "exit 1"
exit 1
fi
[ $DEBUG -eq 1 ] && echo "Check failed ($i/$MAX_CHECK) : Sleep $SLEEP_ON_FAILED second before try again ..."
sleep $SLEEP_ON_FAILED
done
2010-05-11 09:48:45 +02:00
if [ "$newest" != "$current" ]
then
if [ $DOWNLOAD -eq 1 ]
then
if [ -d "$DOWNLOAD_DIR" ]
then
cd "$DOWNLOAD_DIR"
2011-02-10 12:09:08 +01:00
DOWNLOAD_FILE="$( pwd )/roundcubemail-$newest.tar.gz"
[ $DEBUG -eq 1 ] && echo "Download new release in $DOWNLOAD_FILE"
2011-02-10 13:19:08 +01:00
wget -q -O "$DOWNLOAD_FILE" "$DOWNLOAD_URL"
2011-02-10 13:16:06 +01:00
if [ $EXTRACT -eq 1 ]
then
[ $DEBUG -eq 1 ] && echo "Extract new release"
tar xzf $DOWNLOAD_FILE
DOWNLOAD_FILE_DIR=$( tar tzf $DOWNLOAD_FILE 2> /dev/null|head -n1|cut -d'/' -f1 )
2011-02-10 13:16:06 +01:00
fi
else
echo "[WARNING] Le dossier de telechargement n'existe pas ($DOWNLOAD_DIR)."
2011-02-10 13:16:06 +01:00
[ $UPGRADE -eq 1 ] && exit 1
fi
fi
2011-02-10 12:09:08 +01:00
2011-02-10 13:16:06 +01:00
if [ $UPGRADE -eq 1 ]
then
cd "$DOWNLOAD_DIR"
default_src="$( pwd )/$DOWNLOAD_FILE_DIR"
2011-02-10 13:16:06 +01:00
src=""
while [ ! -n "$src" ]
do
echo -n "Source de la nouvelle version [$default_src] : "
read a
if [ -n "$a" ]
then
src="$a"
else
src="$default_src"
fi
if [ ! -d "$src" ]
then
echo -n "[WARNING] Le dossier $src n'existe pas."
src=""
2011-02-10 13:16:06 +01:00
[ ! -n "$a" ] && default_src=""
fi
done
echo "Source : $src"
cd "$RC_HOME/../"
from=""
while [ ! -n "$from" ]
do
echo -n "Installation source [$RC_HOME] : "
read a
if [ -n "$a" ]
then
if [ -d "$a" ]
then
from="$a"
else
from=""
2011-02-10 13:16:06 +01:00
echo "[ERROR] $a n'est pas un dossier valide"
fi
else
from="$RC_HOME"
fi
done
echo "From : $from"
default_to="$( pwd )/roundcubemail-$newest"
to=""
while [ ! -n "$to" ]
do
echo -n "Destination de la nouvelle installation [$default_to] : "
read a
if [ -n "$a" ]
then
to="$a"
else
to="$default_to"
fi
if [ -d "$to" ]
then
echo -n "[WARNING] Le dossier $to existe deja. Celui-ci va etre deplace dans $to.old. Confirmez-vous votre choix [Y/n] ? "
read b
if [ "$b" == "n" -o "$b" == "N" ]
then
to=""
[ ! -n "$a" ] && default_to=""
else
echo "Deplace $to dans $to.old"
mv "$to" "$to.old"
fi
fi
done
echo "To : $to"
echo "Copie de $from dans $to"
rsync -a --copy-dirlinks "$from/" "$to/"
echo "Mise a jour de l'installation $to a partir de $src : "
for file in index.php bin/ SQL/ program/ installer/ skins/ plugins/
2011-02-10 13:16:06 +01:00
do
echo " - Mise a jour de $file"
rsync -a $src/$file $to/$file
2011-02-10 13:16:06 +01:00
chown $OWNER:$GROUP -R $to/$file
done
cd "$to"
if [ -x "bin/update.sh" ]
then
echo "Lancement de l'utilitaire de verification de mise a jour"
./bin/update.sh
fi
2011-02-10 12:09:08 +01:00
2011-02-10 13:16:06 +01:00
if [ -L "$RC_HOME" ]
then
echo -n "Voulez-vous faire pointer le lien symbolique $RC_HOME vers cette nouvelle installation [Y/n] ? "
read a
if [ "$a" != "n" -a "$a" != "N" ]
then
echo " - Suppression de l'actuel lien $RC_HOME"
rm -f $RC_HOME
echo " - Creation du nouveau lien $RC_HOME vers $to"
ln -s "$to" "$RC_HOME"
fi
fi
else
2010-05-11 09:48:45 +02:00
2011-02-10 13:16:06 +01:00
tmp=`mktemp`
echo "New RoundCude release" > $tmp
echo "=====================" >> $tmp
echo "Current : $current" >> $tmp
echo "Newest : $newest" >> $tmp
echo >> $tmp
echo "Download URL : $DOWNLOAD_URL" >> $tmp
[ -n "$DOWNLOAD_FILE" -a -f "$DOWNLOAD_FILE" ] && echo "Download file : $( pwd )/roundcubemail-$newest.tar.gz" >> $tmp
M=0
if [ -f $CACHE ]
2010-05-11 09:48:45 +02:00
then
2011-02-10 13:16:06 +01:00
if [ "`diff $tmp $CACHE`" != "" -o `find $CACHE -mtime +$SEND_EVERY_NB_DAY | wc -l` -eq 1 ]
then
[ $DEBUG -eq 1 ] && echo "Cache trop vieux ou modif => On envoi"
M=1
else
[ $DEBUG -eq 1 ] && echo "Pas de modif et cache trop recent : pas d'envoi"
fi
2010-05-11 09:48:45 +02:00
else
2011-02-10 13:16:06 +01:00
[ $DEBUG -eq 1 ] && echo "Pas encore de cache => On envoi"
M=1
2010-05-11 09:48:45 +02:00
fi
2011-02-10 13:16:06 +01:00
if [ $DEBUG -eq 1 -a $M -eq 1 ]
then
2011-02-10 13:16:06 +01:00
echo "Mode debug : Pas d'envoi de mail"
fi
2011-02-10 13:16:06 +01:00
if [ $M -eq 1 -a $DEBUG -ne 1 ]
then
cat $tmp > $CACHE
if [ -n "$NAME" ]
then
S="[$NAME] New RoundCude release"
else
S="New RoundCude release"
fi
cat $tmp | mail -s "$S : $newest" $MAIL
[ $DEBUG -eq 1 ] && echo "Mail envoyé"
fi
rm -f $tmp
2010-05-11 09:48:45 +02:00
fi
else
[ $DEBUG -eq 1 ] && echo "Pas de changement de version"
fi