#!/bin/bash # Author: Sys4 # License: GPLv3 SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd) serverpath="$SCRIPT_DIR" UP_MODS=0 WORLD_FILE=all strip() { echo $1 | cut -d \' -f 2 } verif() { if [[ $? -gt 0 ]]; then echo "Erreur ! Arrêt du script." exit 1 fi } error() { if [[ -n $1 ]]; then echo "ERREUR : $1 !" else echo "ERREUR : paramètres invalides !" >&2 echo "utilisez l'option -h pour en savoir plus" >&2 fi exit 1 } usage() { echo "Usage : ./upgrade.sh [-h|--help] | [-s|--serverpath ] [-m|--mods] [ -w|--world < -b|--branch [-f|--world-file ] > ]" echo "WARNING: This is for an experimental usage. Don't use it!" echo "Options:" echo -e "\t-h --help\t\tAffiche cette aide" echo -e "\t-s --serverpath \tRépertoire racine du serveur" echo -e "\t-m --mods\t\tMet à jour les mods" echo -e "\t-w --world \tNom de la carte" echo -e "\t-b --branch \tBranche concerné" echo -e "\t-f --world-file \tFichier(s) a mettre à jour :" echo -e "\t doit être une des valeur suivante :" echo -e "\tall\t\tToutes les mise à jour suivantes seront executés sauf 'mtconf'" echo -e "\tnews\t\tLes news du serveur" echo -e "\ttechnic\t\tLes paramètres de technic" echo -e "\tfbn\t\tLes paramètres de forbidden_names" echo -e "\tfbnp\t\tLes paramètres de forbidden_names_patterns" echo -e "\tbitchange\tLes paramètres de bitchange" echo -e "\tchristmas\tLes paramètres de christmas_craft" echo -e "\trandommsg\tLes messages aléatoires" echo -e "\tworldmt\tRégénère le fichier world.mt (peut-être utile avec l'option -m)" echo -e "\tmtconf\tMet à jour le fichier minetest.conf" echo "Exemples:" echo -e "\tMise à jour des mods :" echo -e "\t$ ./upgrade.sh -m" echo -e "\tMise à jour du fichier minetest.conf :" echo -e "\t$ ./upgrade.sh -w nalc-stable -b stable -f mtconf" echo -e "\tMise à jour complète (mods et fichiers world, sauf minetest.conf) :" echo -e "\t$ ./upgrade.sh -m -w nalc-stable -b stable" } regen_worldmt() { local worldfile="$MINETEST_DIR/worlds/$WORLD_NAME/world.mt" echo "Regénération du fichier $worldfile..." # Faire une sauvegarde du fichier world.mt actuel cp "$worldfile" "$worldfile".bak # Créer un nouveau fichier temporaire sans les lignes commençant par load_mod local i=0 cat "$worldfile" | while read -r line; do local match=$(echo $line | grep load_mod_) if [[ -z $match ]]; then if [[ $i -eq 0 ]]; then echo $line > /tmp/world.mt else echo $line >> /tmp/world.mt fi fi i=$(( $i+1 )) done # Recréation des liens symboliques des mods dans le dossier minetest # et générer une ligne "load_mod_ = true ou false" pour chaque mod # et l'ajouter au fichier # local mods_path=$serverpath/nalc-server-mods local mods="$MINETEST_DIR/mods" local mods_custom="$serverpath/custom/mods" # Suppression d'éventuels liens symboliques du dossier des mods ls "$mods" | while read -r mod; do [ -L "$mods/$mod" ] && rm -f "$mods/$mod" done if [ -d "$mods_custom" ]; then ls $mods_custom | while read -r mod; do [ -d $mods_custom/$mod ] && ln -s $mods_custom/$mod $mods/$mod done fi # Liste des mods à désactiver readarray -t md < "$serverpath/mods_disabled.txt" # Populate world.mt ls "$mods" | while read -r mod; do if [ -d $mods/$mod ]; then if [ -e $mods/$mod/init.lua ]; then local mod_enable="true" for (( modn=0; modn<${#md[@]}; modn++ )); do [ ${md[$modn]} == $mod ] && mod_enable="false" done echo "load_mod_$mod = $mod_enable" >> /tmp/world.mt else ls "$mods/$mod" | while read -r submod; do if [ -d "$mods/$mod/$submod" ]; then local mod_enable="true" for (( modn=0; modn<${#md[@]}; modn++ )); do [ ${md[$modn]} == $submod ] && mod_enable="false" done echo "load_mod_$submod = $mod_enable" >> /tmp/world.mt fi done fi fi done # Remplacement du l'ancien world.mt par le nouveau mv /tmp/world.mt "$MINETEST_DIR/worlds/$WORLD_NAME/world.mt" echo "Regénération terminé." } update_mods() { local mods_path="$MINETEST_DIR/mods" [ ! -d "$mods_path" ] && error "$mods_path not found" pushd "$mods_path" > /dev/null 2>&1 git pull verif git submodule update --init --recursive verif popd > /dev/null 2>&1 } update_world() { local world_repos="$SCRIPT_DIR/world" local world_dest="$MINETEST_DIR/worlds/$WORLD_NAME" if [ ! -d "$world_repos" ]; then error "$world_repos not found" fi if [ ! -d "$world_dest" ]; then error "$world_dest not found" fi if [ $WORLD_FILE == "all" ]; then WORLD_FILE="moretrees news technic fbn fbnp bitchange christmas randommsg worldmt" fi for w_file in $WORLD_FILE; do local file="" local file_dest="" local do_copy=1 case $w_file in moretrees) file_dest=$world_dest/moretrees_settings.txt file=$world_repos/moretrees_settings-$BRANCH.txt;; news) file_dest=$world_dest/news.txt file=$world_repos/news-$BRANCH.txt;; technic) file_dest=$world_dest/technic.conf file=$world_repos/technic-$BRANCH.conf;; fbn) file_dest=$world_dest/forbidden_names.txt file=$world_repos/forbidden_names-$BRANCH.txt;; fbnp) file_dest=$world_dest/forbidden_names_patterns.txt file=$world_repos/forbidden_names_patterns-$BRANCH.txt;; bitchange) file_dest=$world_dest/bitchange_config.txt file=$world_repos/bitchange_config-$BRANCH.txt;; christmas) file_dest=$world_dest/christmas_craft.conf file=$world_repos/christmas_craft-$BRANCH.conf;; randommsg) file_dest=$world_dest/random_messages file=$world_repos/random_messages-$BRANCH;; worldmt) do_copy=0 regen_worldmt;; mtconf) # Exception ici car n'est pas un fichier world. Doit être appelé seul. file_dest="$MINETEST_DIR/minetest.conf" file="$SCRIPT_DIR/minetest-$BRANCH.conf";; *) error;; esac if [ $do_copy -eq 1 ]; then [ ! -e $file ] && error "Le fichier $file n'existe pas" echo "Copie de $file vers $file_dest" cp -up $file $file_dest fi done } action() { [ ! -d "$serverpath" ] && error "$serverpath not found" . "$serverpath/nalc.conf" [[ $BRANCH == "exp" ]] && BRANCH="experimental" if [ $UP_MODS -eq 1 ]; then echo "Updating $MINETEST_DIR/mods…" update_mods echo "Mods updated." exit 0 fi if [ -n $WORLD_NAME ] && [ -n $BRANCH ]; then echo "Updating $WORLD_FILE from $WORLD_NAME and branch $BRANCH"… update_world echo "World files updated." elif [ -n $WORLD_NAME ] || [ -n $BRANCH ]; then error fi } # Pas de paramètre [[ $# -lt 1 ]] && usage # -o : Options courtes # -l : Options longues options=$(getopt -o h,s:,m,w:,b:,f: -l help,serverpath:,mods,world:,branch:,world-file: -- "$@") # Éclatement de $options en $1, $2... set -- $options while true; do case "$1" in -h|--help) usage exit 0;; -s|--serverpath) serverpath=$(strip $2) shift 2;; -m|--mods) UP_MODS=1 shift;; -w|--world) WORLD_NAME=$(strip $2) shift 2;; -b|--branch) BRANCH=$(strip $2) shift 2;; -f|--world-file) WORLD_FILE=$(strip $2) shift 2;; --) shift;; *) action exit 0 shift;; esac done exit 0