1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/shaarli_ynh.git synced 2024-09-03 20:26:10 +02:00
shaarli_ynh/scripts/upgrade

162 lines
5.2 KiB
Text
Raw Normal View History

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
#=================================================
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)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2018-06-25 05:57:41 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# 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
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..."
2018-06-25 05:57:41 +02:00
# If final_path doesn't exist, create it
if [ -z "$final_path" ]; then
2018-06-25 05:57:41 +02:00
final_path=/var/www/$app
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2018-06-25 05:57:41 +02:00
fi
# 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
#=================================================
# CREATE DEDICATED USER
2018-06-25 05:57:41 +02:00
#=================================================
ynh_script_progression --message="Making sure dedicated system user exists..."
2018-06-25 05:57:41 +02:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app
2018-06-25 05:57:41 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
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)
then
2020-11-24 16:08:48 +01:00
ynh_script_progression --message="Upgrading source files..."
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"
# 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/"
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
#=================================================
# UPGRADE DEPENDENCIES
2018-06-25 05:57:41 +02:00
#=================================================
ynh_script_progression --message="Upgrading dependencies..."
2018-06-25 05:57:41 +02:00
ynh_install_app_dependencies $pkg_dependencies
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
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
#=================================================
ynh_script_progression --message="Upgrading logrotate configuration..."
2018-09-27 22:44:34 +02:00
# Use logrotate to manage app-specific logfile(s)
# 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
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
#=================================================
# 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
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
ynh_systemd_action --service_name=nginx --action=reload
2018-06-25 05:57:41 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed"