2014-08-17 17:52:31 +02:00
#!/bin/bash
2014-08-18 22:05:31 +02:00
2017-03-01 19:37:00 +01:00
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-06-15 23:56:35 +02:00
2017-03-19 23:03:07 +01:00
source _common.sh
2016-12-14 16:08:29 +01:00
source /usr/share/yunohost/helpers
2017-03-01 19:37:00 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
2016-12-14 16:08:29 +01:00
domain=$(ynh_app_setting_get $app domain)
2017-03-01 19:37:00 +01:00
path_url=$(ynh_app_setting_get $app path)
2016-12-14 16:08:29 +01:00
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)
2017-03-01 19:37:00 +01:00
db_name=$(ynh_app_setting_get $app db_name)
#=================================================
# FIX OLD THINGS
#=================================================
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
2017-03-19 18:31:53 +01:00
2017-03-01 19:37:00 +01:00
if [ -z $db_name ]; then # Si db_name n'est pas renseigné dans app setting
db_name=$(ynh_make_valid_dbid $app)
ynh_app_setting_set $app db_name $db_name
fi
2017-03-19 18:31:53 +01:00
2017-03-01 19:37:00 +01:00
if [ -z "$is_public" ]; then # Raté avec get au lieu de set...
public_check=$(ynh_app_setting_get $app skipped_uris)
if [ -z "$public_check" ]; then # Si skipped_uris est vide, c'était une install publique.
is_public=1
else
is_public=0
fi
ynh_app_setting_set $app is_public $is_public
else
if [ "$is_public" = "Yes" ]; then
ynh_app_setting_set $app is_public 1 # Fixe is_public en booléen
is_public=1
elif [ "$is_public" = "No" ]; then
ynh_app_setting_set $app is_public 0
is_public=0
fi
fi
2017-03-19 18:31:53 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2016-06-15 23:56:35 +02:00
2017-09-05 00:24:01 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
2017-03-01 19:37:00 +01:00
ynh_clean_setup () {
2017-09-05 00:24:01 +02:00
# restore it if the upgrade fails
ynh_restore_upgradebackup
2017-03-01 19:37:00 +01:00
}
2017-09-05 00:24:01 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2016-06-15 23:56:35 +02:00
2017-03-01 19:37:00 +01:00
#=================================================
# CHECK THE PATH
#=================================================
path_url=$(ynh_normalize_url_path $path_url) # Vérifie et corrige la syntaxe du path.
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2014-08-18 22:05:31 +02:00
2017-06-13 17:11:10 +02:00
ynh_setup_source "$final_path" # Télécharge la source, décompresse et copie dans $final_path
2014-08-18 22:05:31 +02:00
2017-03-01 19:37:00 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2017-09-05 00:24:01 +02:00
ynh_add_nginx_config
2015-11-22 14:37:01 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2015-11-22 14:37:01 +01:00
2017-03-19 18:31:53 +01:00
ynh_system_user_create $app # Create the dedicated user, if not exist
2017-03-01 19:37:00 +01:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2017-09-05 00:24:01 +02:00
ynh_add_fpm_config # Créer le fichier de configuration du pool php-fpm et le configure.
2014-08-18 22:05:31 +02:00
2017-03-01 19:37:00 +01:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
# RETRIEVE SYNCHRONISATION CODE
#=================================================
2015-11-22 14:37:01 +01:00
2017-03-01 19:37:00 +01:00
code_sync=$(mysql -h localhost -u $db_name -p$db_pwd -s $db_name -e 'SELECT value FROM leed_configuration WHERE `key`="synchronisationCode"' | sed -n 1p)
#=================================================
# SETUP CRON FILE FOR SYNCHRONISATION
#=================================================
2015-11-22 14:37:01 +01:00
2017-06-13 17:11:10 +02:00
ynh_replace_string "__ADMIN__" "$admin" ../conf/cron_leed
ynh_replace_string "__DOMAIN__" "$domain" ../conf/cron_leed
ynh_replace_string "__PATH__" "$path_url" ../conf/cron_leed
ynh_replace_string "__CODESYNC__" "$code_sync" ../conf/cron_leed
2017-09-05 00:24:01 +02:00
cp ../conf/cron_leed /etc/cron.d/$app
2015-11-22 14:37:01 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# SECURING FILES AND DIRECTORIES
#=================================================
# Les fichiers appartiennent à root
2017-09-05 00:24:01 +02:00
chown -R root: $final_path
2017-03-01 19:37:00 +01:00
# www-data doit avoir les droits d'écriture dans plugins, cache et updates
2017-09-05 00:24:01 +02:00
mkdir -p $final_path/cache
chown -R $app $final_path/cache $final_path/plugins $final_path/updates
2017-03-01 19:37:00 +01:00
#=================================================
# UPGRADE WITH CURL
#=================================================
2016-06-25 17:36:49 +02:00
# Vide le cache de leed pour la mise à jour
2017-06-13 17:11:10 +02:00
ynh_secure_remove $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
2017-09-05 00:24:01 +02:00
yunohost app ssowatconf
2016-06-25 13:08:00 +02:00
# Lance la procédure de mise à jour de leed.
2017-06-13 17:11:10 +02:00
ynh_local_curl "/"
2017-03-01 19:37:00 +01:00
#=================================================
# GENERIC FINALISATION
2017-12-11 20:37:45 +01:00
#=================================================
# UPGRADE FAIL2BAN
#=================================================
ynh_add_fail2ban_config "/var/log/nginx/${domain}-error.log" "PHP message: Leed: wrong login for .* client: <HOST>" 5
2017-03-01 19:37:00 +01:00
#=================================================
# SETUP SSOWAT
#=================================================
2016-06-25 13:08:00 +02:00
2014-08-18 22:05:31 +02:00
# Make app private if necessary
2017-03-01 19:37:00 +01:00
if [ $is_public -eq 0 ];
2014-08-18 22:05:31 +02:00
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
2017-03-01 19:37:00 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2017-09-05 00:24:01 +02:00
systemctl reload nginx