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
2019-06-02 14:35:36 +02:00
source _ynh_add_fpm_config
2016-12-14 16:08:29 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=3
2017-03-01 19:37:00 +01:00
app=$YNH_APP_INSTANCE_NAME
2019-05-20 23:09:08 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
admin=$(ynh_app_setting_get --app=$app --key=admin)
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
overwrite_nginx=$(ynh_app_setting_get --app=$app --key=overwrite_nginx)
overwrite_phpfpm=$(ynh_app_setting_get --app=$app --key=overwrite_phpfpm)
admin_mail_html=$(ynh_app_setting_get --app=$app --key=admin_mail_html)
2017-03-01 19:37:00 +01:00
2019-06-04 20:28:32 +02:00
fpm_footprint=$(ynh_app_setting_get --app=$app --key=fpm_footprint)
fpm_usage=$(ynh_app_setting_get --app=$app --key=fpm_usage)
2017-12-16 23:21:37 +01:00
#=================================================
# CHECK VERSION
#=================================================
2018-07-13 17:33:34 +02:00
upgrade_type=$(ynh_check_app_version_changed)
2017-12-16 23:21:37 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
2019-01-19 12:13:45 +01:00
# ENSURE DOWNWARD COMPATIBILITY
2017-03-01 19:37:00 +01:00
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Ensuring downward compatibility..."
2014-08-18 22:05:31 +02:00
2019-01-19 12:13:45 +01:00
# If final_path doesn't exist, create it
if [ -z "$final_path" ]; then
2016-06-25 17:57:34 +02:00
final_path=/var/www/$app
2019-05-20 23:09:08 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2016-06-25 17:57:34 +02:00
fi
2017-03-19 18:31:53 +01:00
2019-01-19 12:13:45 +01:00
# If db_name doesn't exist, create it
if [ -z "$db_name" ]; then
2019-05-20 23:09:08 +02:00
db_name=$(ynh_sanitize_dbid --db_name=$app)
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
2017-03-01 19:37:00 +01:00
fi
2017-03-19 18:31:53 +01:00
2019-01-19 12:13:45 +01:00
# If is_public doesn't exist, create it
if [ -z "$is_public" ]; then
2019-05-20 23:09:08 +02:00
public_check=$(ynh_app_setting_get --app=$app --key=skipped_uris)
2019-01-19 12:13:45 +01:00
# If skipped_uris is empty, that was a public installation.
if [ -z "$public_check" ]; then
2017-03-01 19:37:00 +01:00
is_public=1
else
is_public=0
fi
2019-05-20 23:09:08 +02:00
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
2017-03-01 19:37:00 +01:00
else
2019-01-19 12:13:45 +01:00
# Fix is_public as a boolean
2017-03-01 19:37:00 +01:00
if [ "$is_public" = "Yes" ]; then
2019-05-20 23:09:08 +02:00
ynh_app_setting_set --app=$app --key=is_public --value=1
2017-03-01 19:37:00 +01:00
is_public=1
elif [ "$is_public" = "No" ]; then
2019-05-20 23:09:08 +02:00
ynh_app_setting_set --app=$app --key=is_public --value=0
2017-03-01 19:37:00 +01:00
is_public=0
fi
fi
2017-03-19 18:31:53 +01:00
2018-09-30 11:51:17 +02:00
# If overwrite_nginx doesn't exist, create it
if [ -z "$overwrite_nginx" ]; then
overwrite_nginx=1
2019-05-20 23:09:08 +02:00
ynh_app_setting_set --app=$app --key=overwrite_nginx --value=$overwrite_nginx
2018-09-30 11:51:17 +02:00
fi
# If overwrite_phpfpm doesn't exist, create it
if [ -z "$overwrite_phpfpm" ]; then
overwrite_phpfpm=1
2019-05-20 23:09:08 +02:00
ynh_app_setting_set --app=$app --key=overwrite_phpfpm --value=$overwrite_phpfpm
2018-09-30 11:51:17 +02:00
fi
2019-01-30 19:26:05 +01:00
# If admin_mail_html doesn't exist, create it
if [ -z "$admin_mail_html" ]; then
admin_mail_html=1
2019-05-20 23:09:08 +02:00
ynh_app_setting_set --app=$app --key=admin_mail_html --value=$admin_mail_html
2019-01-30 19:26:05 +01:00
fi
2017-03-01 19:37:00 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=4
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
#=================================================
2019-01-19 12:13:45 +01:00
# Normalize the URL path syntax
2019-05-20 23:09:08 +02:00
path_url=$(ynh_normalize_url_path --path_url=$path_url)
2017-03-01 19:37:00 +01:00
2018-07-13 17:33:34 +02:00
#=================================================
# ACTIVATE MAINTENANCE MODE
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Activating maintenance mode..."
2018-07-13 17:33:34 +02:00
ynh_maintenance_mode_ON
2017-03-01 19:37:00 +01:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2014-08-18 22:05:31 +02:00
2018-07-13 17:33:34 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Upgrading source files..." --weight=3
2019-01-19 12:13:45 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2019-05-20 23:09:08 +02:00
ynh_setup_source --dest_dir="$final_path"
2018-07-13 17:33:34 +02:00
fi
2014-08-18 22:05:31 +02:00
2017-03-01 19:37:00 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2018-09-30 11:51:17 +02:00
# Overwrite the nginx configuration only if it's allowed
if [ $overwrite_nginx -eq 1 ]
then
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Upgrading nginx web server configuration..." --weight=2
2019-01-19 12:13:45 +01:00
# Create a dedicated nginx config
2018-09-30 11:51:17 +02:00
ynh_add_nginx_config
fi
2015-11-22 14:37:01 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Making sure dedicated system user exists..."
2015-11-22 14:37:01 +01:00
2019-01-19 12:13:45 +01:00
# Create a dedicated user (if not existing)
2019-05-20 23:09:08 +02:00
ynh_system_user_create --username=$app
2017-03-01 19:37:00 +01:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2018-09-30 11:51:17 +02:00
# Overwrite the php-fpm configuration only if it's allowed
if [ $overwrite_phpfpm -eq 1 ]
then
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Upgrading php-fpm configuration..." --weight=2
2019-01-19 12:13:45 +01:00
# Create a dedicated php-fpm config
2019-06-04 20:28:32 +02:00
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint
2018-09-30 11:51:17 +02:00
fi
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
2019-05-20 23:09:08 +02:00
ynh_replace_string --match_string="__ADMIN__" --replace_string="$admin" --target_file=../conf/cron_leed
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file=../conf/cron_leed
ynh_replace_string --match_string="__PATH__" --replace_string="$path_url" --target_file=../conf/cron_leed
ynh_replace_string --match_string="__CODESYNC__" --replace_string="$code_sync" --target_file=../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
#=================================================
2019-01-19 12:13:45 +01:00
# Set permissions on app files
2017-09-05 00:24:01 +02:00
chown -R root: $final_path
2019-01-19 12:13:45 +01:00
# $app need write permissions in plugins, cache and updates
2019-05-20 23:09:08 +02:00
# Clear leed cache
ynh_secure_remove --file=$final_path/cache
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
#=================================================
2018-07-13 17:33:34 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Upgrading Leed with curl..." --weight=4
2019-01-19 12:13:45 +01:00
# Set the app as temporarily public for curl call
2019-05-20 23:09:08 +02:00
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
2019-01-19 12:13:45 +01:00
# Regen SSOwat configuration
2018-07-13 17:33:34 +02:00
yunohost app ssowatconf
2019-01-19 12:13:45 +01:00
# Start the upgrade procedure of leed.
2018-07-13 17:33:34 +02:00
ynh_local_curl "/"
fi
2017-03-01 19:37:00 +01:00
#=================================================
# GENERIC FINALISATION
2017-12-11 20:37:45 +01:00
#=================================================
# UPGRADE FAIL2BAN
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Reconfiguring fail2ban..." --weight=8
2017-12-11 20:37:45 +01:00
2019-01-19 12:13:45 +01:00
# Create a dedicated fail2ban config
2019-01-19 12:00:42 +01:00
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="PHP message: Leed: wrong login for .* client: <HOST>" --max_retry=5
2017-12-11 20:37:45 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# SETUP SSOWAT
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Upgrading SSOwat configuration..."
2016-06-25 13:08:00 +02:00
2014-08-18 22:05:31 +02:00
# Make app private if necessary
2019-05-20 23:09:08 +02:00
if [ $is_public -eq 0 ]
2014-08-18 22:05:31 +02:00
then
2019-01-19 12:13:45 +01:00
# Remove the public access
2019-05-20 23:09:08 +02:00
ynh_app_setting_delete --app=$app --key=unprotected_uris
2019-01-19 12:13:45 +01:00
# Set the action.php script public for the cron task
2019-05-20 23:09:08 +02:00
ynh_app_setting_set --app=$app --key=skipped_uris --value="/action.php"
2014-08-18 22:05:31 +02:00
fi
2017-03-01 19:37:00 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Reloading nginx web server..." --weight=2
2017-03-01 19:37:00 +01:00
2019-05-20 23:09:08 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2018-07-13 17:33:34 +02:00
#=================================================
# DEACTIVE MAINTENANCE MODE
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Disabling maintenance mode..."
2018-07-13 17:33:34 +02:00
ynh_maintenance_mode_OFF
2019-01-21 13:09:35 +01:00
#=================================================
# SEND A README FOR THE ADMIN
#=================================================
# Get main domain and buid the url of the admin panel of the app.
admin_panel="https://$(grep portal_domain /etc/ssowat/conf.json | cut -d'"' -f4)/yunohost/admin/#/apps/$app"
2019-01-30 19:26:05 +01:00
# Build the changelog
ynh_app_changelog || true
echo "You can configure this app easily by using the experimental __URL_TAG1__config-panel feature__URL_TAG2__$admin_panel/config-panel__URL_TAG3__.
You can also find some specific actions for this app by using the experimental __URL_TAG1__action feature__URL_TAG2__$admin_panel/actions__URL_TAG3__.
If you're facing an issue or want to improve this app, please open a new issue in this __URL_TAG1__project__URL_TAG2__https://github.com/YunoHost-Apps/leed_ynh__URL_TAG3__.
---
Changelog since your last upgrade:
$(cat changelog)" > mail_to_send
2019-01-21 13:09:35 +01:00
2019-05-20 23:09:08 +02:00
ynh_send_readme_to_admin --app_message="mail_to_send" --recipients="$admin" --type=upgrade
2019-01-21 13:09:35 +01:00
2019-01-30 16:15:24 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last