2014-08-17 17:52:31 +02:00
#!/bin/bash
2014-08-18 22:05:31 +02:00
2016-06-15 23:56:35 +02:00
source .fonctions # Charge les fonctions génériques habituellement utilisées dans le script
2015-11-22 14:37:01 +01:00
# Récupère les infos de l'application.
2016-11-08 13:32:06 +01:00
app=$YNH_APP_INSTANCE_NAME
2016-12-14 16:08:29 +01:00
# Source app helpers
source /usr/share/yunohost/helpers
domain=$(ynh_app_setting_get $app domain)
path=$(ynh_app_setting_get $app path)
admin=$(ynh_app_setting_get $app admin)
is_public=$(ynh_app_setting_get $app is_public)
final_path=$(ynh_app_setting_get $app final_path)
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
2014-08-18 22:05:31 +02:00
2016-06-25 17:57:34 +02:00
if [ -z $final_path ]; then # Si final_path n'est pas renseigné dans app setting
final_path=/var/www/$app
2016-12-14 16:08:29 +01:00
ynh_app_setting_set $app final_path $final_path
2016-06-25 17:57:34 +02:00
fi
2015-11-22 14:37:01 +01:00
2016-06-15 23:56:35 +02:00
CHECK_PATH # Vérifie et corrige la syntaxe du path.
SETUP_SOURCE "leed.tar.gz" # Télécharge la source, décompresse et copie dans $final_path
2015-11-22 14:37:01 +01:00
# Et copie le fichier de config nginx
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
2014-08-18 22:05:31 +02:00
# Set right permissions
sudo chown -R www-data: $final_path
# Change variables in Leed configuration
2015-11-22 14:37:01 +01:00
sudo sed -i "s@__PATH__@$path@g" /etc/nginx/conf.d/$domain.d/$app.conf
sudo sed -i "s@__FINALPATH__@$final_path@g" /etc/nginx/conf.d/$domain.d/$app.conf
2016-06-25 13:08:00 +02:00
sudo sed -i "s@__NAMETOCHANGE__@$app@g" /etc/nginx/conf.d/$domain.d/$app.conf
2015-11-22 14:37:01 +01:00
# 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
2014-08-18 22:05:31 +02:00
2015-11-22 14:37:01 +01:00
# Configure les droits d'accès au fichiers
# -rw-r--r-- sur les fichiers
2014-08-21 23:59:25 +02:00
sudo find $final_path -type f | xargs sudo chmod 644
2015-11-22 14:37:01 +01:00
# drwxr-xr-x sur les dossiers
2014-08-21 23:59:25 +02:00
sudo find $final_path -type d | xargs sudo chmod 755
2015-11-22 14:37:01 +01:00
# Les fichiers appartiennent à root
2014-08-21 23:59:25 +02:00
sudo chown -R root: $final_path
2015-11-22 14:37:01 +01:00
2016-06-25 13:08:00 +02:00
# www-data doit avoir les droits d'écriture dans plugins, cache et updates
sudo mkdir -p $final_path/cache
sudo chown -R www-data $final_path/cache $final_path/plugins $final_path/updates
2014-08-18 22:05:31 +02:00
2015-11-22 14:37:01 +01:00
# Récupération du code de synchronisation
db_user=$app
code_sync=$(mysql -h localhost -u $db_user -p$db_pwd -s $db_user -e 'SELECT value FROM leed_configuration WHERE `key`="synchronisationCode"' | sed -n 1p)
# Mise en place du cron pour la synchronisation
sed -i "s@__ADMIN__@$admin@g" ../conf/cron_leed
sed -i "s@__DOMAIN__@$domain@g" ../conf/cron_leed
sed -i "s@__PATH__@$path@g" ../conf/cron_leed
sed -i "s@__CODESYNC__@$code_sync@g" ../conf/cron_leed
sudo cp ../conf/cron_leed /etc/cron.d/$app
2016-06-25 17:36:49 +02:00
# Vide le cache de leed pour la mise à jour
2016-07-16 13:05:02 +02:00
sudo rm -rf $final_path/cache/*
2016-06-25 13:08:00 +02:00
# Laisse un accès libre pour curl.
2016-12-14 16:08:29 +01:00
ynh_app_setting_set $app unprotected_uris "/"
2016-06-25 13:08:00 +02:00
# Régénère la configuration de SSOwat
sudo yunohost app ssowatconf
# Lance la procédure de mise à jour de leed.
curl -kL https://$domain$path
2014-08-18 22:05:31 +02:00
# Make app private if necessary
2016-12-14 16:08:29 +01:00
ynh_app_setting_set $app is_public "$is_public"
2014-08-18 22:05:31 +02:00
if [ "$is_public" = "No" ];
then
2016-06-25 13:08:00 +02:00
# Retire l'autorisation d'accès à leed
2016-12-14 16:08:29 +01:00
ynh_app_setting_delete $app unprotected_uris
2014-08-18 22:05:31 +02:00
# Rend la page d'actualisation accessible pour le script cron.
2016-12-14 16:08:29 +01:00
ynh_app_setting_set $app skipped_uris "/action.php"
2014-08-18 22:05:31 +02:00
fi
2016-05-20 00:00:38 +02:00
# Recharge la configuration Nginx
2014-08-18 22:05:31 +02:00
sudo service nginx reload
2015-11-22 14:37:01 +01:00
# Régénère la configuration de SSOwat
2014-08-18 22:05:31 +02:00
sudo yunohost app ssowatconf