2016-04-07 00:00:41 +02:00
#!/bin/bash
2016-05-20 00:03:02 +02:00
ynh_version=$(sudo yunohost -v | grep "moulinette:" | cut -d' ' -f2 | cut -d'.' -f1,2)
2016-04-07 00:00:41 +02:00
# Retrieve arguments
2016-05-20 00:03:02 +02:00
if [ $ynh_version = "2.4" ]
then
domain=$YNH_APP_ARG_DOMAIN
path=$YNH_APP_ARG_PATH
admin=$YNH_APP_ARG_ADMIN
infcloud=$YNH_APP_ARG_INFCLOUD
language=$YNH_APP_ARG_LANGUAGE
app=$YNH_APP_INSTANCE_NAME
# Source app helpers
2016-06-04 23:08:49 +02:00
source /usr/share/yunohost/helpers
2016-05-20 00:03:02 +02:00
else
domain=$1
path=$2
admin=$3
infcloud=$4
language=$5
app=radicale
fi
2016-06-04 23:56:16 +02:00
# Checks variables are not empty
test -z "$domain" && (echo "domain not set" && touch /force_stop)
test -z "$path" && (echo "path not set" && touch /force_stop)
test -z "$admin" && (echo "admin not set" && touch /force_stop)
test -z "$infcloud" && (echo "infcloud not set" && touch /force_stop)
test -z "$language" && (echo "language not set" && touch /force_stop)
2016-05-20 00:03:02 +02:00
# Delete files and db if exit with an error
EXIT_PROPERLY () {
trap '' ERR
echo -e "\e[91m \e[1m" # Shell in light red bold
echo -e "!!\n $app install's script has encountered an error. Installation was cancelled.\n!!"
if [ $ynh_version = "2.2" ]; then
/bin/bash ./remove # Appel le script remove. En 2.2, ce comportement n'est pas automatique.
fi
exit 1
}
TRAP_ON () { # Activate signal capture
trap EXIT_PROPERLY ERR # Capturing exit signals on error
}
TRAP_OFF () { # Ignoring signal capture until TRAP_ON
# Pour une raison que j'ignore, la fonction TRAP_ON fonctionne très bien.
# Mais pas la fonction TRAP_OFF...
# Utiliser directement `trap '' ERR` dans le code pour l'utiliser, à la place de la fonction.
trap '' ERR # Ignoring exit signals
}
TRAP_ON
2016-04-07 00:00:41 +02:00
# Vérifie la validité de l'user admin
2016-06-04 23:33:11 +02:00
sudo yunohost user list --json | grep -q "\"username\": \"$admin\"" || (echo "Wrong admin" && touch /force_stop 2> /dev/null)
2016-04-07 00:00:41 +02:00
# Vérifie la disponibilité du path et du domaine.
sudo yunohost app checkurl $domain$path -a $app
# Vérifie que le dossier de destination n'est pas déjà utilisé.
final_path=/var/www/$app
if [ -e "$final_path" ]
then
echo "This path already contains a folder"
2016-06-04 23:33:11 +02:00
touch /force_stop 2> /dev/null
2016-04-07 00:00:41 +02:00
fi
# Vérifie la présence du / en début de path
if [ $(echo $path | cut -c1) != "/" ]; then
path="/$path"
fi
# Modifie le domaine pour qu'il passe dans une regex
domain_regex=$(echo "$domain" | sed 's@-@.@g')
if [ "$infcloud" = "Yes" ] || [ "$infcloud" = "yes" ] || [ "$infcloud" = "YES" ] || [ "$infcloud" = "Y" ] || [ "$infcloud" = "y" ]
then
infcloud=1
else
infcloud=0
fi
# Enregistre les infos dans la config YunoHost
sudo yunohost app setting $app domain -v $domain
sudo yunohost app setting $app path -v $path
sudo yunohost app setting $app admin -v $admin
sudo yunohost app setting $app infcloud -v $infcloud
# Crée le repertoire de destination et stocke son emplacement.
sudo mkdir "$final_path"
sudo yunohost app setting $app final_path -v $final_path
# Check depends installation
sudo apt-get install -y python-pip python-virtualenv python-dev libldap2-dev libsasl2-dev libssl-dev uwsgi uwsgi-plugin-python
# Init virtualenv
sudo virtualenv /opt/yunohost/$app
sudo /opt/yunohost/$app/bin/pip install radicale==1.1.1 python-ldap
# Copy files to the right place
sudo mkdir -p $final_path/collections
sudo cp ../conf/radicale.wsgi $final_path
# Copie les fichiers additionnels ou modifiés.
sudo cp -a ../sources/ajouts_radicale/. "$final_path"
# Le fichier regex.py est patché pour corrigé le commit destructeur e807c3d35bea9cfcfcacac83b1b17d748ea15a39 du 3/12/2015 qui arrête la lecture du fichier rights à la première occurence validée.
sudo mv "$final_path/regex.py" /opt/yunohost/$app/lib/python*/site-packages/radicale/rights/regex.py
sudo rm /opt/yunohost/$app/lib/python*/site-packages/radicale/rights/regex.pyc
if [ "$infcloud" = "1" ]
then #Instal InfCloud
2016-06-05 18:49:41 +02:00
# Télécharge la source
wget -nv --show-progress -i ../sources/source_url -O infcloud.zip
# Vérifie la somme de contrôle de la source téléchargée.
md5sum -c ../sources/source_md5 --status || (echo "Corrupt source" && false)
2016-04-07 00:00:41 +02:00
# Décompresse la source
2016-06-05 18:49:41 +02:00
unzip -q infcloud.zip
2016-04-07 00:00:41 +02:00
# Copie les fichiers sources
2016-06-05 18:49:41 +02:00
sudo cp -a $(cat ../sources/source_dir)/. "$final_path"
2016-04-07 00:00:41 +02:00
# Copie les fichiers additionnels ou modifiés.
sudo cp -a ../sources/ajouts_infcloud/. "$final_path/infcloud/"
fi
#Configuration Radicale
sudo mkdir -p /etc/$app
sudo cp ../conf/config /etc/$app/
sudo cp ../conf/logging /etc/$app/
sudo cp ../conf/rights /etc/$app/
sudo sed -i "s@__PATH__@$path@g" /etc/$app/config
sudo sed -i "s@__FINALPATH__@$final_path@g" /etc/$app/config
2016-06-05 00:52:51 +02:00
sudo yunohost app setting $app config_file_md5 -v $(md5sum "/etc/$app/config" | cut -d' ' -f1)
sudo yunohost app setting $app logging_file_md5 -v $(md5sum "/etc/$app/logging" | cut -d' ' -f1)
2016-04-07 00:00:41 +02:00
if [ "$infcloud" = "1" ]
then #Configuration InfCloud
# Détermine la langue
case "$language" in
"Czech") language="cs_CZ"
;;
"Danish") language="da_DK"
;;
"German") language="de_DE"
;;
"English/US") language="en_US"
;;
"Spanish") language="es_ES"
;;
"French") language="fr_FR"
;;
"Italian") language="it_IT"
;;
"Japan") language="ja_JP"
;;
"Hungarian") language="hu_HU"
;;
"Dutch") language="nl_NL"
;;
"Slovak") language="sk_SK"
;;
"Turkish") language="tr_TR"
;;
"Russian") language="ru_RU"
;;
"Ukrainian") language="uk_UA"
;;
"Chinese") language="zh_CN"
;;
esac
sudo yunohost app setting $app language -v $language
sudo cp ../conf/config.js "$final_path/infcloud/"
sudo sed -i "s@__DOMAIN__@$domain@g" "$final_path/infcloud/config.js"
sudo sed -i "s@__PATH__@$path@g" "$final_path/infcloud/config.js"
sudo sed -i "s@__LANG__@$language@g" "$final_path/infcloud/config.js"
sudo sed -i "s@__ADMIN__@$admin@g" "$final_path/infcloud/config.js"
sudo sed -i "s@__TIMEZONE__@$(cat /etc/timezone)@g" "$final_path/infcloud/config.js"
2016-06-05 00:52:51 +02:00
sudo yunohost app setting $app config.js_file_md5 -v $(md5sum "$final_path/infcloud/config.js" | cut -d' ' -f1)
2016-04-07 00:00:41 +02:00
fi
# Set permissions to radicale directory
sudo useradd radicale -d /opt/yunohost/$app
sudo chown radicale: -R /opt/yunohost/$app
# Set permissions to radicale directory
sudo chown -R radicale: $final_path
2016-05-20 00:03:02 +02:00
sudo mkdir -p /var/log/$app
2016-04-07 00:00:41 +02:00
sudo touch /var/log/$app/$app.log
2016-04-12 13:15:39 +02:00
sudo chown radicale -R /var/log/$app
2016-04-07 00:00:41 +02:00
# Droit par défaut des dossiers de collections utilisateurs, tels qu'ils sont créés par radicale.
sudo chmod 666 -R $final_path/default_collections
2016-04-07 01:42:12 +02:00
sudo chmod 777 $final_path/default_collections $final_path/default_collections/USER
2016-04-07 00:00:41 +02:00
# Copy uwsgi config
sudo cp ../conf/radicale.ini /etc/uwsgi/apps-available/
sudo ln -s /etc/uwsgi/apps-available/radicale.ini /etc/uwsgi/apps-enabled/
# Modify Nginx configuration file and copy it to Nginx conf directory
sudo sed -i "s@__PATH__@$path@g" ../conf/nginx.conf
sudo sed -i "s@__FINALPATH__@$final_path@g" ../conf/nginx.conf
sudo sed -i "s@__NAMETOCHANGE__@$app@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
if [ "$infcloud" = "1" ]
then # Ajoute InfCloud dans la config Nginx
sudo sed -i "s@#INFCLOUD#@@g" /etc/nginx/conf.d/$domain.d/$app.conf
fi
if [ "$infcloud" = "1" ]
then
# Créer le fichier de configuration du pool php-fpm et le configure.
sed -i "s@__NAMETOCHANGE__@$app@g" ../conf/php-fpm.conf
sed -i "s@__FINALPATH__@$final_path@g" ../conf/php-fpm.conf
finalphpconf=/etc/php5/fpm/pool.d/$app.conf
sudo cp ../conf/php-fpm.conf $finalphpconf
sudo chown root: $finalphpconf
finalphpini=/etc/php5/fpm/conf.d/20-$app.ini
sudo cp ../conf/php-fpm.ini $finalphpini
sudo chown root: $finalphpini
sudo service php5-fpm reload
fi
# Fix permission
sudo chmod 755 /etc/$app/
sudo find /opt/yunohost/$app/ -type d -exec chmod 2755 {} \;
sudo find /opt/yunohost/$app/ -type f -exec chmod g+r,o+r {} \;
sudo chmod 644 /etc/$app/*
# Créer les calendriers et carnets d'adresses par défaut des utilisateurs.
while read user #USER en majuscule est une variable système, à éviter.
do
sudo cp -a $final_path/default_collections/USER $final_path/collections/$user
sudo cp -a $final_path/default_collections/USER.props $final_path/collections/$user.props
done <<< "$(sudo yunohost user list | grep username | cut -d ":" -f 2 | cut -c 2-)" # Liste les utilisateurs et supprime l'espace après username:
# Le triple chevron <<< permet de prendre la sortie de commande en entrée de boucle.
# Configuration de logrotate
sed -i "s@__NAME__@$app@g" ../conf/logrotate
sudo cp ../conf/logrotate /etc/logrotate.d/$app
## Reload Nginx and regenerate SSOwat conf
sudo service nginx reload
sudo service uwsgi restart
sudo yunohost service add uwsgi -l /var/log/uwsgi/app/radicale.log
if [ "$infcloud" = "1" ]
then # /infcloud vient se rajouter à l'adresse de radicale pour y être associé sur le portail.
sudo yunohost app setting $app path -v $path/infcloud # Remplace radicale par InfCloud dans le portail Yunohost
sudo yunohost app setting $app protected_uris -v "/" # Protège l'accès à infcloud
sudo yunohost app setting $app unprotected_regex -v "$domain_regex$path" # Radicale est accessible librement (pour l'accès distant aux ressources)
else # Si seul radicale est installé.
sudo yunohost app setting $app unprotected_uris -v "/" # Radicale est accessible librement (pour l'accès distant aux ressources)
fi
sudo yunohost app ssowatconf
2016-06-04 22:20:07 +02:00
# Modification des hook pour la création des collections par défaut des nouveaux utilisateurs. Et leur suppression
2016-04-07 00:00:41 +02:00
sudo sed -i "s@__FINALPATH__@$final_path@g" ../hooks/post_user_create
2016-04-12 14:56:23 +02:00
sudo sed -i "s@__FINALPATH__@$final_path@g" ../hooks/post_user_delete
2016-06-04 22:20:07 +02:00
if [ $ynh_version != "2.4" ]
then
sudo yunohost hook add radicale ../hooks/post_user_create
sudo yunohost hook add radicale ../hooks/post_user_delete
fi