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

208 lines
7 KiB
Text
Raw 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
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
2022-07-13 17:22:05 +02:00
admin=$(ynh_app_setting_get --app=$app --key=admin)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2022-07-13 17:22:05 +02:00
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2022-07-13 17:22:05 +02:00
database=$(ynh_app_setting_get --app=$app --key=database)
upload=$(ynh_app_setting_get --app=$app --key=upload)
random_string=$(ynh_app_setting_get --app=$app --key=random_string)
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-10-16 22:06:33 +02:00
ynh_script_progression --message="Checking version..." --weight=1
2022-07-13 17:22:05 +02:00
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2022-07-13 17:22:05 +02:00
# 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
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2021-06-06 23:42:54 +02:00
# If final_path doesn't exist, create it
if [ -z "$final_path" ]; then
final_path=/var/www/$app
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
fi
2022-07-13 17:22:05 +02:00
# If db_name doesn't exist, create it
if [ -z "$db_name" ]; then
db_name=$(ynh_sanitize_dbid --db_name=$app)
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
fi
2021-06-06 23:42:54 +02:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
fi
2022-07-13 17:22:05 +02:00
# Switch $database to "mysql" or "postgresql"
if [[ $database == "1" ]] 2>/dev/null; then
database="mysql"
ynh_app_setting_set --app=$app --key=database --value=$database
elif [[ $database == "2" ]] 2>/dev/null; then
database="postgresql"
ynh_app_setting_set --app=$app --key=database --value=$database
fi
#=================================================
2021-06-06 23:42:54 +02:00
# CREATE DEDICATED USER
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2020-11-13 11:25:58 +01:00
2021-06-06 23:42:54 +02:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# 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
2022-07-13 17:22:05 +02:00
ynh_setup_source --dest_dir="$final_path" --keep="store/ .htconfig.php php.log"
2021-02-14 00:02:55 +01:00
ynh_setup_source --dest_dir="$final_path/addon" --source_id="app_addons"
fi
2022-07-13 17:22:05 +02:00
mkdir -p "$final_path/store"
mkdir -p "$final_path/cache/smarty3"
2021-06-06 23:42:54 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2022-07-13 17:22:05 +02:00
chmod -R 775 $final_path/store $final_path/cache
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2022-07-13 17:22:05 +02:00
if [ $database = "postgresql" ]; then
pkg_dependencies="$pkg_dependencies $pg_pkg_dependencies"
fi
ynh_install_app_dependencies $pkg_dependencies
#=================================================
# 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
ynh_add_fpm_config
2017-02-17 14:04:56 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
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
#=================================================
ynh_script_progression --message="Updating a configuration file..." --weight=1
2022-07-13 17:22:05 +02:00
if [ $database = "mysql" ]; then
db_type=0
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
elif [ $database = "postgresql" ]; then
db_type=1
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
fi
2022-07-13 17:22:05 +02:00
ynh_add_config --template="../conf/htconfig.sample.php" --destination="$final_path/.htconfig.php"
2022-07-13 17:22:05 +02:00
# addon ldap config
ynh_script_progression --message="Push LDAP configuration to .htconfig.php..."
2022-07-13 17:22:05 +02:00
cat ../conf/ldap_conf.php >> $final_path/.htconfig.php
ynh_store_file_checksum --file=$final_path/.htconfig.php
2022-07-13 17:22:05 +02:00
chmod 600 "$final_path/.htconfig.php"
chown $app:$app "$final_path/.htconfig.php"
2020-04-23 00:03:42 +02:00
2022-07-13 17:22:05 +02:00
#=================================================
# 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
ynh_add_config --template="../conf/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
#=================================================
# UPGRADE FAIL2BAN
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Reconfiguring Fail2Ban..." --weight=1
2018-05-25 18:49:15 +02:00
2022-07-13 17:22:05 +02:00
# Create a dedicated Fail2Ban config
ynh_add_fail2ban_config --logpath="$final_path/php.log" --failregex="^.*auth\.php.*failed login attempt.*from IP <HOST>.*$" --max_retry="5"
#=================================================
# RELOAD NGINX
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2020-04-23 00:03:42 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last