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

119 lines
3.9 KiB
Text
Raw Permalink Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2017-02-17 13:02:11 +01:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Loading settings..." --weight=1
2022-07-13 17:22:05 +02:00
email=$(ynh_user_get_info --username=$admin --key=mail)
2018-11-20 02:47:48 +01:00
#=================================================
2022-07-13 17:22:05 +02:00
# CHECK VERSION
#=================================================
2022-07-13 17:22:05 +02:00
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2023-08-13 11:59:06 +02:00
# If random_string doesn't exist, create it
2024-01-12 19:46:50 +01:00
if [ -z "${random_string:-}" ]; then
2023-08-13 11:59:06 +02:00
random_string="$(ynh_string_random --length=48)"
ynh_app_setting_set --app=$app --key=random_string --value=$random_string
fi
2022-07-13 17:22:05 +02:00
2022-12-27 15:00:56 +01:00
# If fpm_footprint doesn't exist, create it
2024-01-12 19:46:50 +01:00
if [ -z "${fpm_footprint:-}" ]; then
2022-12-27 15:00:56 +01:00
fpm_footprint=low
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
fi
# If fpm_free_footprint doesn't exist, create it
2024-01-12 19:46:50 +01:00
if [ -z "${fpm_free_footprint:-}" ]; then
2022-12-27 15:00:56 +01:00
fpm_free_footprint=0
ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint
fi
# If fpm_usage doesn't exist, create it
2024-01-12 19:46:50 +01:00
if [ -z "${fpm_usage:-}" ]; then
2022-12-27 15:00:56 +01:00
fpm_usage=low
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
fi
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2022-07-13 17:22:05 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2021-02-14 00:02:55 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2023-06-04 10:58:53 +02:00
ynh_setup_source --dest_dir="$install_dir" --keep="store/ .htconfig.php php.log"
2023-06-04 11:23:42 +02:00
ynh_setup_source --dest_dir="$install_dir/addon" --source_id="addons"
2021-02-14 00:02:55 +01:00
fi
2023-06-04 10:58:53 +02:00
mkdir -p "$install_dir/store"
mkdir -p "$install_dir/cache/smarty3"
2023-06-04 11:23:42 +02:00
2023-06-04 10:58:53 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
chmod -R 775 $install_dir/store $install_dir/cache
2022-07-13 17:22:05 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
2022-07-13 17:22:05 +02:00
# Create a dedicated PHP-FPM config
2022-12-27 15:00:56 +01:00
ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint
2017-02-17 14:04:56 +01:00
2020-11-13 11:25:58 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
2022-07-13 17:22:05 +02:00
# SPECIFIC UPGRADE
#=================================================
2022-07-13 17:22:05 +02:00
# UPDATE A CONFIG FILE
#=================================================
# UPGRADE CRON JOB
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Upgrading cron job..." --weight=1
2018-11-08 11:08:11 +01:00
2021-06-06 23:42:54 +02:00
# Set up cron job
2024-01-12 19:44:06 +01:00
ynh_add_config --template="poller-cron" --destination="/etc/cron.d/$app"
2022-07-13 17:22:05 +02:00
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
#=================================================
2022-07-13 17:22:05 +02:00
# GENERIC FINALIZATION
#=================================================
2022-07-13 17:22:05 +02:00
# SETUP LOGROTATE
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
2022-07-13 17:22:05 +02:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
2022-07-13 17:22:05 +02:00
# Create a dedicated Fail2Ban config
2023-06-04 10:58:53 +02:00
ynh_add_fail2ban_config --logpath="$install_dir/php.log" --failregex="^.*auth\.php.*failed login attempt.*from IP <HOST>.*$" --max_retry="5"
#=================================================
# END OF SCRIPT
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last