2018-03-15 23:49:09 +01:00
#!/bin/bash
2019-04-28 22:43:57 +02:00
# Author: Sys4
# License: GPLv3
2018-03-15 23:49:09 +01:00
2018-03-21 01:28:29 +01:00
# Fonctions
strip( ) {
echo $1 | cut -d \' -f 2
}
2018-03-15 23:49:09 +01:00
verif( ) {
2018-03-21 01:28:29 +01:00
if [ [ $? -gt 0 ] ] ; then
2020-07-18 12:37:59 +02:00
echo "Erreur ! Arrêt du script."
exit 1
2018-03-21 01:28:29 +01:00
fi
2018-03-15 23:49:09 +01:00
}
2018-03-16 23:47:34 +01:00
error( ) {
2018-03-21 01:28:29 +01:00
echo "ERREUR : Vérifiez vos paramètres !" >& 2
echo "Utilisez l'option -h pour en savoir plus" >& 2
exit 1
2018-03-16 23:47:34 +01:00
}
usage( ) {
2019-04-07 18:20:06 +02:00
echo "Usage: ./install.sh [options] [--] <version>"
2018-03-21 01:28:29 +01:00
echo "Options :"
2018-07-31 23:38:13 +02:00
echo -e "\t-h --help\tAffiche l'aide."
echo -e "\t-j --makeopt\tNombre de threads de compilation."
echo -e "\t--ssh <user@host>: Identifiants ssh."
echo -e "\t--url <URL>: URL distante personnalisée."
2020-07-18 12:37:59 +02:00
echo -e "\t\tSi l'option --ssh est passée en option, il s'agira du chemin distant."
echo -e "\t-i --irrlicht\tChemin personnalisé des sources irrlicht."
echo -e "\t-p --postgresql\tSi vous voulez que le serveur soit configuré avec postgresql. Sinon leveldb par défaut."
2019-04-07 18:20:06 +02:00
echo "version :"
2020-07-18 12:37:59 +02:00
echo -e "\tstable : Installation du serveur compatible avec la dernière branche stable de minetest. Suivez les instructions... (Recommandé)"
2020-07-21 22:38:19 +02:00
echo -e "\t1.3 : Installation du serveur compatible avec minetest-5.3. Suivez les instructions... (Stable)"
2020-07-18 12:37:59 +02:00
echo -e "\t1.2 : Installation du serveur compatible avec minetest-5.2. Suivez les instructions... (Stable)"
echo -e "\t1.1 : Installation du serveur depuis la branche 1.1 compatible Minetest 5.0. Suivez les instructions... (Stable)"
2019-04-07 18:20:06 +02:00
echo -e "\t1.0 : Installation du serveur compatible avec minetest-0.4.17.x. Suivez les instructions... (Stable)"
2020-07-18 12:37:59 +02:00
echo -e "\tdev : Installation de la version en cours de developpement du serveur. Suivez les instructions... (Le plus à jour mais non Stable !)"
2018-03-21 01:28:29 +01:00
exit 0
}
ssh( ) {
ssh = $( strip $1 )
echo " Installation avec identifiants ssh : $ssh "
}
url( ) {
2020-07-18 12:37:59 +02:00
url = $( strip $1 )
2018-03-16 23:47:34 +01:00
}
2018-03-21 01:28:29 +01:00
makeopt( ) {
2020-07-18 12:37:59 +02:00
makeopt = $( strip $1 )
2018-03-21 01:28:29 +01:00
}
2018-03-24 20:10:33 +01:00
postgresql( ) {
2020-07-18 12:37:59 +02:00
echo "Les indications à fournir ci-après nécessite d'avoir configuré un serveur postgresql au préalable. (Ctrl-C) pour annuler."
read -p "Indiquez l'adresse de la base de données : " pg_url
read -p "Indiquez l'utilisateur de la BDD : " pg_user
read -p "Indiquez le mot de passe : " pg_password
read -p "Indiquez le nom de la BDD à utiliser : " pg_dbname
echo "gameid = nalc_game" > world.mt
echo "backend = postgresql" >> world.mt
echo "player_backend = postgresql" >> world.mt
echo " pgsql_connection = host= $pg_url user= $pg_user password= $pg_password dbname= $pg_dbname " >> world.mt
echo " pgsql_player_connection = host= $pg_url user= $pg_user password= $pg_password dbname=players- $pg_dbname " >> world.mt
echo "auth_backend = sqlite3" >> world.mt
2018-03-24 20:10:33 +01:00
}
2018-03-21 01:28:29 +01:00
install_minetest( ) {
2020-07-18 12:37:59 +02:00
if [ [ -z $makeopt ] ] ; then
local makeopt = $( grep -c processor /proc/cpuinfo)
fi
if [ [ -d minetest ] ] ; then
echo "Installation précédente de Minetest détecté."
read -p "Mettre à jour ? (y,n,clean,cancel) : " continue
if [ [ $continue = = "clean" ] ] ; then
echo "Attention ! Cela va supprimer définitivement toutes les données."
read -p "Êtes-vous certains de vouloir continuer ? (y or n) : " continue
if [ [ $continue = = "y" ] ] ; then
rm -rf minetest
echo "Répertoire minetest supprimé."
else
echo "Installation annulée. Fin"
exit 0
fi
elif [ [ $continue = = "y" ] ] ; then
cd minetest
git pull
verif
cd ..
elif [ [ $continue = = "cancel" ] ] ; then
echo "Installation annulée. Fin"
exit 0
fi
fi
if [ [ ! -d minetest ] ] ; then
local branch = "-b master"
if [ [ $ver = = "1.0" ] ] ; then
branch = "-b stable-0.4"
elif [ [ $ver = = "1.1" ] ] ; then
branch = "-b 5.1.1"
2020-07-21 22:38:19 +02:00
elif [ [ $ver = = "1.2" ] ] ; then
2020-07-18 12:37:59 +02:00
branch = "-b 5.2.0"
2020-07-21 22:38:19 +02:00
elif [ [ $ver = = "1.3" || $ver = = "stable" ] ] ; then
branch = "-b 5.3.0"
2020-07-18 12:37:59 +02:00
elif [ [ $ver = = "dev" ] ] ; then
branch = "-b stable-5"
fi
if [ [ -n $ssh ] ] ; then
git clone --depth 1 $branch $ssh \: minetest/minetest.git
else
git clone --depth 1 $branch https://gitlab.com/minetest/minetest.git
fi
verif
fi
echo "Minetest va être (re)compilé..."
sleep 3
cd minetest
cmake . -DBUILD_CLIENT= 0 -DBUILD_SERVER= 1 -DENABLE_SOUND= 0 -DENABLE_SYSTEM_GMP= 1 $irrlicht_src -DENABLE_LEVELDB= 1 -DENABLE_REDIS= 1 -DENABLE_POSTGRESQL= 1 -DRUN_IN_PLACE= 1 -DENABLE_GETTEXT= 1 -DENABLE_FREETYPE= 1 -DENABLE_LUAJIT= 1 -DENABLE_CURL= 1
make -j$makeopt
verif
echo "Installation de Minetest terminé."
cd ..
2018-03-21 01:28:29 +01:00
}
install_minetest_game( ) {
2020-07-18 12:37:59 +02:00
if [ [ -d nalc_game ] ] ; then
echo "Installation précédente du jeux NALC détecté."
read -p "Mettre à jour ? (y,n,clean,cancel) " continue
if [ [ $continue = = "y" ] ] ; then
cd nalc_game
git pull
verif
cd ..
echo "Mise à jour du jeux NALC depuis dépôt distant terminé."
elif [ [ $continue = = "clean" ] ] ; then
echo "/!\ Cette action va effacer les données du répertoire nalc_game"
read -p "Êtes-vous sûr de vouloir continuer ? (y or n) " continue
if [ [ $continue = = "y" ] ] ; then
rm -rf nalc_game
echo "Jeux NALC supprimé."
else
echo "Mise à jour annulée. Terminé."
exit 0
fi
elif [ [ $continue = = "cancel" ] ] ; then
echo "Mise à jour annulée. Terminé."
exit 0
fi
fi
if [ [ ! -d nalc_game ] ] ; then
local branch = "-b master"
if [ [ $ver = = "1.0" ] ] ; then
branch = "-b nalc-1.0"
elif [ [ $ver = = "1.1" ] ] ; then
branch = "-b nalc-1.1"
2020-07-21 22:38:19 +02:00
elif [ [ $ver = = "1.2" ] ] ; then
2020-07-18 12:37:59 +02:00
branch = "-b nalc-1.2"
2020-07-21 22:38:19 +02:00
elif [ [ $ver = = "1.3" || $ver = = "stable" ] ] ; then
branch = "-b nalc-1.3"
2020-07-18 12:37:59 +02:00
elif [ [ $ver = = "dev" ] ] ; then
branch = "-b nalc-dev"
fi
git clone --depth 1 $branch $URL /nalc_game.git
verif
echo "Clonage de nalc_game terminé."
fi
if [ [ ! -L minetest/games/nalc_game ] ] ; then
ln -s $( pwd ) /nalc_game minetest/games/nalc_game
echo " Lien symbolique minetest/games/nalc_game vers $( pwd ) /nalc_game créé. "
fi
echo "Installation/Mise à jour du jeux NALC terminé."
2018-03-22 10:07:56 +01:00
}
install_mods( ) {
2020-07-18 12:37:59 +02:00
if [ [ -d nalc-server-mods ] ] ; then
echo "Le dossier de mods est déjà présent. Que souhaitez-vous faire ?"
read -p "Choisissez parmi la liste, ([1]update, [2]clean update, [3]cancel, [4]Ne rien faire) : " continue
if [ [ $continue = = 1 ] ] ; then
./upgrade.sh -m
elif [ [ $continue = = 2 ] ] ; then
rm -rf nalc-server-mods
elif [ [ $continue = = 3 ] ] ; then
echo "Mise à jour des mods annulé. Terminé."
exit 0
fi
fi
if [ [ ! -d nalc-server-mods ] ] ; then
local branch = "master"
if [ [ $ver = = "dev" ] ] ; then
branch = "dev"
2020-07-22 17:39:29 +02:00
elif [ [ $ver = = "1.3" ] ] ; then
2020-07-21 22:38:19 +02:00
branch = "stable-1.3"
elif [ [ $ver = = "1.2" ] ] ; then
2020-07-18 12:37:59 +02:00
branch = "stable-1.2"
elif [ [ $ver = = "1.1" ] ] ; then
branch = "stable-1.1"
elif [ [ $ver = = "1.0" ] ] ; then
branch = "stable-1.0"
fi
git clone --depth 1 -b $branch $URL /nalc-server-mods.git
verif
./upgrade.sh -m
fi
if [ [ -z $pg_dbname ] ] ; then
if [ [ $ver = = "1.0" ] ] ; then
cp worldmt-1.0.conf world.mt
2020-07-21 22:38:19 +02:00
elif [ [ $ver = = "1.1" || $ver = = "1.2" || $ver = = "1.3" || $ver = = "stable" || $ver = = "dev" ] ] ; then
2020-07-18 12:37:59 +02:00
cp worldmt-1.1.conf world.mt
fi
fi
2019-12-08 01:12:31 +01:00
}
2018-03-31 16:13:41 +02:00
2019-12-08 01:12:31 +01:00
install_world( ) {
2020-07-18 12:37:59 +02:00
local world_name = " nalc- $ver "
if [ [ -n $pg_dbname ] ] ; then
world_name = $pg_dbname
fi
if [ [ -d minetest/worlds/$world_name ] ] ; then
echo "Une map est déjà présente. Que souhaitez-vous faire ?"
read -p "Choisissez parmi la liste ([1]Nouveau, [2]Mettre à jour [3]Ne rien faire) : " continuer
if [ [ $continuer = = 1 ] ] ; then
if [ [ -n $pg_dbname ] ] ; then
read -p " Les BDD $pg_dbname et players- $pg_dbname ne seront pas effacées. À vous de le faire manuellement après ce script ! -- Press enter -- : " continuer
fi
# On sauvegarde l'ancien world
if [ [ -d "minetest/worlds/" $world_name "_old" ] ] ; then
rm -rf "minetest/worlds/" $world_name "_old"
fi
mv minetest/worlds/$world_name "minetest/worlds/" $world_name "_old"
elif [ [ $continuer = = 2 ] ] ; then
# On sauvegarde l'ancien world
if [ [ -d "minetest/worlds/" $world_name "_old" ] ] ; then
rm -rf "minetest/worlds/" $world_name "_old"
fi
cp -r minetest/worlds/$world_name "minetest/worlds/" $world_name "_old"
# On met à jour les fichiers contenues dans cette map
./upgrade.sh -w $world_name -b $ver
fi
fi
if [ [ ! -d minetest/worlds/$world_name ] ] ; then
mkdir -p minetest/worlds/$world_name
if [ [ -n $pg_dbname ] ] ; then
createdb $pg_dbname
createdb players-$pg_dbname
fi
./upgrade.sh -w $world_name -b $ver
mkdir -p minetest/worlds/$world_name /runes
fi
2018-03-21 01:28:29 +01:00
}
2018-03-24 14:06:26 +01:00
post_install( ) {
2020-07-18 12:37:59 +02:00
if [ [ ! -a minetest/minetest.conf ] ] ; then
local world_name = " nalc- $ver "
if [ [ -n $pg_dbname ] ] ; then
world_name = $pg_dbname
fi
./upgrade.sh -w $world_name -b $ver -f mtconf
echo " Veuillez éditer le fichier $( pwd ) /minetest/minetest.conf "
fi
if [ [ ! -d logs ] ] ; then
mkdir logs
fi
if [ [ ! -a start.sh ] ] ; then
cp start.sh.example start.sh
chmod u+x start.sh
echo " Veuillez éditer le fichier $( pwd ) /start.sh "
echo " Veuillez éditer le fichier $( pwd ) /backup.sh "
echo " Veuillez éditer le fichier $( pwd ) /shutdown.sh "
fi
2018-03-24 14:06:26 +01:00
}
2018-03-21 01:28:29 +01:00
init( ) {
2020-07-18 12:37:59 +02:00
ver = $( strip $1 )
if [ [ -n $ssh && -n $url ] ] ; then
URL = $ssh \: $url
elif [ [ -n $url ] ] ; then
URL = $url
else
URL = "https://sys4.fr/gitea/nalc"
fi
read -p "L'installation va démarrer. Continuer ? (y or n) : " continue
if [ [ $continue = = "y" ] ] ; then
install_minetest
install_minetest_game
install_mods
install_world
post_install
echo "L'installation est terminé. Bravo !"
else
echo "Installation annulée. Fin."
fi
2018-03-21 01:28:29 +01:00
}
action( ) {
local arg = $( strip $1 )
2020-07-21 22:38:19 +02:00
if [ [ $arg = = "dev" || $arg = = "stable" || $arg = = "1.0" || $arg = = "1.1" || $arg = = "1.2" || $arg = = "1.3" ] ] ; then
2020-07-18 12:37:59 +02:00
init $arg
2018-03-21 01:28:29 +01:00
else
2020-07-18 12:37:59 +02:00
error
2018-03-21 01:28:29 +01:00
fi
exit 0
}
2018-03-24 12:14:37 +01:00
irrlicht( ) {
2020-07-18 12:37:59 +02:00
local arg = $( strip $1 )
if [ [ -d $arg ] ] ; then
irrlicht_src = " -DIRRLICHT_SOURCE_DIR= $arg "
fi
2018-03-24 12:14:37 +01:00
}
2018-03-21 01:28:29 +01:00
# Pas de paramètre
#[[ $# -lt 1 ]] && error
# ou
[ [ $# -lt 1 ] ] && usage
# -o : Options courtes
# -l : options longues
2018-03-24 20:10:33 +01:00
OPT = $( getopt -o h,p,j:,i: -l help,postgresql,url:,ssh:,makeopt:,irrlicht: -- " $@ " )
2018-03-21 01:28:29 +01:00
# éclatement de $options en $1, $2...
set -- $OPT
while true; do
case " $1 " in
-h| --help)
usage; ;
2018-03-24 12:14:37 +01:00
-i| --irrlicht)
2020-07-18 12:37:59 +02:00
irrlicht $2
shift 2; ;
2018-03-24 20:10:33 +01:00
-p| --postgresql)
2020-07-18 12:37:59 +02:00
postgresql
shift; ;
2018-03-21 01:28:29 +01:00
--ssh)
ssh $2
shift 2; ;
--url)
url $2
shift 2; ;
-j| --makeopt)
2020-07-18 12:37:59 +02:00
makeopt $2
shift 2; ;
2018-03-21 01:28:29 +01:00
--)
shift; ;
*)
action $1
shift; ;
esac
done