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

138 lines
4.4 KiB
Text
Raw Normal View History

2013-12-11 21:23:28 +01:00
#!/bin/bash
2020-10-20 23:28:09 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2017-03-08 23:34:00 +01:00
source /usr/share/yunohost/helpers
2020-10-20 23:45:55 +02:00
ynh_abort_if_errors
2020-10-20 23:28:09 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2020-11-22 22:17:57 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2020-10-20 23:28:09 +02:00
2017-03-08 23:34:00 +01:00
app=$YNH_APP_INSTANCE_NAME
2017-03-08 23:34:00 +01:00
# Récupère les infos de l'application.
2021-07-21 14:25:01 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path=$(ynh_app_setting_get --app=$app --key=path)
name=$(ynh_app_setting_get --app=$app --key=name)
language=$(ynh_app_setting_get --app=$app --key=language)
2020-11-22 22:56:21 +01:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2021-07-21 14:51:44 +02:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2021-06-20 18:24:46 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2020-11-22 22:24:16 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..."--weight=1
# Set default values
2020-11-22 22:24:16 +01:00
if [ -z "$language" ]; then
language="${language:-en}"
ynh_app_setting_set --app=$language --key=language --value=$language
fi
2013-12-11 21:23:28 +01:00
2020-11-22 22:24:16 +01:00
if [ -z "$name" ]; then
name=${name:-YunoJappix}
ynh_app_setting_set --app=$app --key=name --value=$name
fi
2021-06-20 18:24:46 +02:00
# If db_name doesn't exist, create it
if [ -z "$final_path/store/conf" ]; then
mkdir -p "$final_path/store/conf"
fi
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
fi
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
2020-11-22 22:24:16 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2020-11-22 22:56:21 +01:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2020-11-22 22:24:16 +01: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
2020-11-22 22:56:21 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression --message="Setting up source files..." --weight=6
2021-06-20 18:24:46 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=1
2020-11-22 22:56:21 +01:00
2021-06-20 18:24:46 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
fi
2020-11-22 22:56:21 +01:00
2021-06-20 18:24:46 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2020-11-22 22:24:16 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-04-13 20:08:47 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2020-11-22 22:24:16 +01:00
# Create a dedicated nginx config
ynh_add_nginx_config
2021-07-21 14:51:44 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=2
# Create a dedicated PHP-FPM config
ynh_add_fpm_config
2020-11-22 22:56:21 +01:00
#=================================================
# Set Jappix configuration
#=================================================
2020-11-22 22:24:16 +01:00
2021-04-13 20:08:47 +02:00
ynh_add_config --template="../conf/hosts.xml" --destination="$final_path/store/conf/hosts.xml"
ynh_add_config --template="../conf/main.xml" --destination="$final_path/store/conf/main.xml"
2021-06-20 18:24:46 +02:00
ynh_add_config --template="../conf/installed.xml" --destination="$final_path/store/conf/installed.xml"
2020-10-20 23:28:09 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2020-11-22 22:17:57 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2020-10-20 23:28:09 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2020-11-22 22:17:57 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last