2013-12-19 03:02:51 +01:00
#!/bin/bash
2018-06-25 05:57:41 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-11-01 16:00:22 +01:00
ynh_script_progression --message="Loading installation settings..."
2018-06-25 05:57:41 +02:00
app=$YNH_APP_INSTANCE_NAME
2020-12-01 13:35:39 +01:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
2020-11-01 16:00:22 +01:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2018-06-25 05:57:41 +02:00
2020-11-24 19:35:51 +01:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2021-11-22 19:20:21 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2018-06-25 05:57:41 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2020-11-01 16:00:22 +01:00
ynh_script_progression --message="Ensuring downward compatibility..."
2018-06-25 05:57:41 +02:00
# If final_path doesn't exist, create it
2020-11-01 16:00:22 +01:00
if [ -z "$final_path" ]; then
2018-06-25 05:57:41 +02:00
final_path=/var/www/$app
2020-11-01 16:00:22 +01:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2018-06-25 05:57:41 +02:00
fi
2021-11-22 19:20:21 +01:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
2020-11-25 11:39:30 +01:00
ynh_app_setting_delete --app=$app --key=is_public
fi
2018-06-25 05:57:41 +02:00
#=================================================
2021-11-22 19:20:21 +01:00
# CREATE DEDICATED USER
2018-06-25 05:57:41 +02:00
#=================================================
2021-11-22 19:20:21 +01:00
ynh_script_progression --message="Making sure dedicated system user exists..."
2018-06-25 05:57:41 +02:00
2021-11-22 19:20:21 +01:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app
2018-06-25 05:57:41 +02:00
2020-11-01 16:00:22 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-02-28 21:54:57 +01:00
if [ "$upgrade_type" == "UPGRADE_APP" ] || [ "$upgrade_type" == "UPGRADE_FORCED" ] # we should do that during a force upgrade too (as it could lead to a version upgrade for instance)
2020-11-01 16:00:22 +01:00
then
2020-11-24 16:08:48 +01:00
ynh_script_progression --message="Upgrading source files..."
2020-11-01 16:00:22 +01:00
2020-12-01 12:03:07 +01:00
# Create a temporary directory
tmpdir="$(mktemp -d)"
# Backup the config file in the temp dir
cp -a "$final_path/data" "$tmpdir/data"
cp -a "$final_path/tpl" "$tmpdir/tpl"
# Remove the app directory securely
ynh_secure_remove "$final_path"
2020-11-01 16:00:22 +01:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
2020-12-01 12:03:07 +01:00
cp -a "$tmpdir/data" "$final_path/"
2021-02-28 14:20:33 +01:00
cp -a -n "$tmpdir/tpl" "$final_path/" # copy without erasing existing templates (from official source)
2018-06-25 05:57:41 +02:00
2020-12-01 12:03:07 +01:00
# Remove the tmp directory securely
ynh_secure_remove --file="$tmpdir"
fi
2018-06-25 05:57:41 +02:00
2021-12-12 17:06:13 +01:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chmod -R u+rwX $final_path/{cache/,data/,pagecache/,tmp/}
chown -R $app:www-data "$final_path"
2021-12-12 18:19:47 +01:00
chmod 700 "$final_path/data/config.json.php"
2021-12-12 17:06:13 +01:00
2018-06-25 05:57:41 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-11-24 18:00:33 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..."
2018-06-25 05:57:41 +02:00
2020-11-24 18:00:33 +01:00
# Create a dedicated NGINX config
2018-06-25 05:57:41 +02:00
ynh_add_nginx_config
#=================================================
2021-11-22 19:20:21 +01:00
# UPGRADE DEPENDENCIES
2018-06-25 05:57:41 +02:00
#=================================================
2021-11-22 19:20:21 +01:00
ynh_script_progression --message="Upgrading dependencies..."
2018-06-25 05:57:41 +02:00
2021-11-22 19:20:21 +01:00
ynh_install_app_dependencies $pkg_dependencies
2020-11-01 16:00:22 +01:00
2018-06-25 05:57:41 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-11-24 18:00:33 +01:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..."
2018-06-25 05:57:41 +02:00
# Create a dedicated php-fpm config
2021-11-22 19:20:21 +01:00
ynh_add_fpm_config --usage=low --footprint=low
2018-06-25 05:57:41 +02:00
2018-09-27 22:44:34 +02:00
#=================================================
# SETUP LOGROTATE
#=================================================
2020-11-01 16:00:22 +01:00
ynh_script_progression --message="Upgrading logrotate configuration..."
2018-09-27 22:44:34 +02:00
# Use logrotate to manage app-specific logfile(s)
2019-07-28 08:33:23 +02:00
# Temporary fix for .txt log file and ynh_use_logrotate
2019-09-26 14:21:49 +02:00
if [ -d "$final_path/data/log.txt" ]
then
2020-11-09 16:10:42 +01:00
ynh_secure_remove "$final_path/data/log.txt"
2019-09-26 14:21:49 +02:00
touch "$final_path/data/log.txt"
fi
2022-01-03 23:03:34 +01:00
chown $app:www-data "$final_path/data/log.txt"
2020-12-01 12:03:07 +01:00
2018-09-27 22:44:34 +02:00
ynh_use_logrotate --non-append
#=================================================
2020-11-01 16:00:22 +01:00
# UPGRADE FAIL2BAN
2018-09-27 22:44:34 +02:00
#=================================================
2020-11-24 18:00:33 +01:00
ynh_script_progression --message="Reconfiguring Fail2Ban..."
2018-09-27 22:44:34 +02:00
2020-12-01 13:35:39 +01:00
# Create a dedicated Fail2Ban config
2020-11-01 16:00:22 +01:00
ynh_add_fail2ban_config --logpath="$final_path/data/log.txt" --failregex="\s-\s<HOST>\s-\sLogin failed for user.*$"
2018-06-25 05:57:41 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2020-11-24 18:00:33 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2018-06-25 05:57:41 +02:00
2020-11-01 16:00:22 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2018-06-25 05:57:41 +02:00
2019-04-05 12:29:32 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2020-11-01 16:00:22 +01:00
ynh_script_progression --message="Upgrade of $app completed"