1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dolibarr_ynh.git synced 2024-09-03 18:35:53 +02:00
dolibarr_ynh/scripts/upgrade

268 lines
9 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=2
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
admin=$(ynh_app_setting_get --app=$app --key=admin)
member=$(ynh_app_setting_get --app=$app --key=member)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
language=$(ynh_app_setting_get --app=$app --key=language)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
current_version=$(ynh_app_setting_get --app=$app --key=version)
update_version=$(ynh_app_upstream_version "../manifest.json")
datadir=$final_path/documents/
2020-09-28 02:00:16 +02:00
fpm_footprint=$(ynh_app_setting_get --app=$app --key=fpm_footprint)
fpm_usage=$(ynh_app_setting_get --app=$app --key=fpm_usage)
2021-01-07 14:09:35 +01:00
phpversion=$(ynh_app_setting_get --app="$app" --key=phpversion)
2020-09-28 02:00:16 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2021-09-25 15:05:51 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=11
# 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
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
# 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
# If final_path doesn't exist, create it
if [ -z "$final_path" ]; then
2019-06-27 22:44:38 +02:00
final_path=/var/www/$app
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
fi
2020-09-28 02:00:16 +02:00
# If fpm_footprint doesn't exist, create it
if [ -z "$fpm_footprint" ]; then
fpm_footprint=medium
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
fi
# If fpm_usage doesn't exist, create it
if [ -z "$fpm_usage" ]; then
fpm_usage=medium
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
fi
2021-09-25 15:05:51 +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
if ! ynh_permission_exists --permission "public_space"; then
ynh_permission_create --permission "public_space" --url "/public/" --allowed "visitors"
2021-03-24 15:39:00 +01:00
fi
#=================================================
2021-09-25 15:05:51 +02:00
# CREATE DEDICATED USER
#=================================================
2021-09-25 15:05:51 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2021-09-25 15:05:51 +02:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=70
# Download, check integrity, uncompress and patch the source from app.src
2019-06-27 22:44:38 +02:00
ynh_setup_source --dest_dir="$final_path"
fi
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-01-07 14:24:42 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
# Create a dedicated nginx config
2021-01-07 14:09:35 +01:00
ynh_add_nginx_config
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2021-01-07 14:24:42 +01:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=2
2021-03-24 15:39:00 +01:00
# If php has changed, remove the old fpm config file
2021-09-25 15:05:51 +02:00
# if [ "$phpversion" != $YNH_PHP_VERSION ]
# then
# ynh_backup_if_checksum_is_different --file="/etc/php/$phpversion/fpm/pool.d/$app.conf"
# ynh_secure_remove --file="/etc/php/$phpversion/fpm/pool.d/$app.conf"
# if [ -f /etc/php/$phpversion/fpm/conf.d/20-$app.ini ]; then
# ynh_secure_remove --file="/etc/php/$phpversion/fpm/conf.d/20-$app.ini"
# fi
# ynh_systemd_action --service_name="php${phpversion}-fpm" --action=reload
2021-03-24 15:39:00 +01:00
2021-09-25 15:05:51 +02:00
# phpversion="$YNH_PHP_VERSION"
# fi
2021-03-24 15:39:00 +01:00
# Recreate a dedicated PHP-FPM config
2021-09-25 15:05:51 +02:00
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint --package="$extra_php_dependencies"
#=================================================
# SPECIFIC UPGRADE
#=================================================
# LAUNCH UPGRADE
#=================================================
2019-06-27 22:44:38 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Upgrading app from $current_version to $update_version" --weight=3
2019-06-27 22:44:38 +02:00
chown -R $app: "$final_path"
2019-06-27 22:44:38 +02:00
# Remove the lock if it exists
lock=$final_path/documents/install.lock
2019-07-04 12:52:42 +02:00
if [ -f $lock ]
2019-07-04 12:03:16 +02:00
then
ynh_secure_remove $lock
fi
2019-06-29 10:42:28 +02:00
mkdir -p /var/log/$app/
2019-06-27 22:44:38 +02:00
# Upgrade with CURL
# Set the app as temporarily public for cURL call
ynh_permission_update --permission="main" --add="visitors"
2019-07-04 12:03:16 +02:00
pushd $final_path/htdocs/install/
2021-01-07 14:09:35 +01:00
if php$phpversion upgrade.php $current_version $update_version > /var/log/$app/upgrade.html; then
2019-06-27 22:44:38 +02:00
ynh_print_info --message="Step 1 upgrading ended successfully"
else
ynh_print_warn --message="Step 1 upgrading ended with error"
fi
2022-03-09 09:52:28 +01:00
ynh_exec_fully_quiet sleep 5
2021-01-07 14:09:35 +01:00
if php$phpversion upgrade2.php $current_version $update_version > /var/log/$app/upgrade2.html; then
2019-06-27 22:44:38 +02:00
ynh_print_info --message="Step 2 upgrading ended successfully"
else
ynh_print_warn --message="Step 2 upgrading ended with error"
fi
2022-03-09 09:52:28 +01:00
ynh_exec_fully_quiet sleep 5
charset=$(mysql -ss -N -e "SELECT default_character_set_name FROM information_schema.SCHEMATA WHERE schema_name = '$db_name'")
if [ "$charset" != "utf8" ]
then
ynh_script_progression --message="Changing Database charset to utf8" --weight=5
ynh_mysql_execute_as_root --database=$db_name --sql="ALTER DATABASE $db_name charset=utf8"
ynh_local_curl "/install/repair.php" \
"force_utf8_on_tables=confirmed" > /var/log/$app/repair.html
fi
2022-03-09 09:52:28 +01:00
ynh_exec_fully_quiet sleep 5
2021-01-07 14:09:35 +01:00
if php$phpversion step5.php $current_version $update_version > /var/log/$app/upgrade3.html; then
2019-06-27 22:44:38 +02:00
ynh_print_info --message="Step 3 upgrading ended successfully"
else
ynh_print_warn --message="Step 3 upgrading ended with error"
fi
2019-09-02 00:54:28 +02:00
ynh_app_setting_set --app=$app --key=version --value=$update_version
2019-07-04 12:03:16 +02:00
popd
2021-09-25 15:23:41 +02:00
ynh_permission_update --permission="main" --remove="visitors"
fi
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
2019-06-27 22:44:38 +02:00
ynh_backup_if_checksum_is_different --file="$final_path/htdocs/conf/conf.php"
# Recalculate and store the checksum of the file for the next upgrade.
2019-06-27 22:44:38 +02:00
ynh_store_file_checksum --file="$final_path/htdocs/conf/conf.php"
2021-09-25 15:05:51 +02:00
chmod 644 "$final_path/htdocs/conf/conf.php"
#=================================================
# SETUP LOGROTATE
#=================================================
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
2021-03-24 22:32:43 +01:00
#=================================================
# UPDATE THE HOOK FILE FOR USER CREATE
#=================================================
# Set system group in hooks
fhook=../hooks/post_user_create
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="$fhook"
ynh_replace_string --match_string="__MEMBER__" --replace_string="$member" --target_file="$fhook"
2021-09-25 14:31:17 +02:00
ynh_replace_string --match_string="__FINALPATH__" --replace_string="$final_path" --target_file="$fhook"
2021-03-24 22:32:43 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions on app files
2021-09-25 13:16:23 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
mkdir -p "$datadir"
chown -R $app: "$datadir"
chmod go-w $datadir
#=================================================
# RELOAD NGINX
#=================================================
2021-09-25 15:05:51 +02:00
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..." --weight=1
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last