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

337 lines
12 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=2
2024-03-25 21:26:07 +01:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2024-03-25 21:26:07 +01:00
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? path=$(ynh_app_setting_get --app=$app --key=path)
#REMOVEME? admin=$(ynh_app_setting_get --app=$app --key=admin)
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? language=$(ynh_app_setting_get --app=$app --key=language)
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
#REMOVEME? current_version=$(ynh_app_setting_get --app=$app --key=version)
update_version=$(ynh_app_upstream_version "../manifest.json")
2024-03-25 21:26:07 +01:00
#REMOVEME? data_dir=$install_dir/documents/
2024-03-25 21:26:07 +01:00
#REMOVEME? fpm_footprint=$(ynh_app_setting_get --app=$app --key=fpm_footprint)
#REMOVEME? fpm_usage=$(ynh_app_setting_get --app=$app --key=fpm_usage)
#REMOVEME? 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
#=================================================
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=11
2021-09-25 15:05:51 +02:00
# Backup the current version of the app
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_backup_before_upgrade
#REMOVEME? ynh_clean_setup () {
2021-09-25 15:05:51 +02:00
# restore it if the upgrade fails
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_restore_upgradebackup
2021-09-25 15:05:51 +02:00
}
# Exit if an error occurs during the execution of the script
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_abort_if_errors
2021-09-25 15:05:51 +02:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# 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)
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_app_setting_set --app=$app --key=db_name --value=$db_name
fi
2024-03-25 21:26:07 +01:00
# If install_dir doesn't exist, create it
if [ -z "$install_dir" ]; then
#REMOVEME? install_dir=/var/www/$app
#REMOVEME? ynh_app_setting_set --app=$app --key=install_dir --value=$install_dir
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
2024-03-25 21:26:07 +01:00
#REMOVEME? if ynh_legacy_permissions_exists; then
#REMOVEME? ynh_legacy_permissions_delete_all
2021-09-25 15:05:51 +02:00
ynh_app_setting_delete --app=$app --key=is_public
fi
# Create a permission if needed
2024-03-25 21:26:07 +01:00
#REMOVEME? if ! ynh_permission_exists --permission "public_space"; then
#REMOVEME? ynh_permission_create --permission "public_space" --url "/public/" --allowed "visitors"
2021-03-24 15:39:00 +01:00
fi
# Delete existing ini configuration file (backward compatibility)
if [ -f /etc/php/$YNH_PHP_VERSION/fpm/conf.d/20-$app.ini ]; then
ynh_secure_remove --file=/etc/php/$YNH_PHP_VERSION/fpm/conf.d/20-$app.ini
fi
#=================================================
2021-09-25 15:05:51 +02:00
# CREATE DEDICATED USER
#=================================================
2024-03-25 21:26:07 +01:00
#REMOVEME? 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)
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_script_progression --message="Upgrading dependencies..." --weight=1
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_install_app_dependencies $pkg_dependencies
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-01-07 14:24:42 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
ynh_backup_if_checksum_is_different --file="/etc/nginx/conf.d/$domain.d/$app.conf"
# Delete current NGINX configuration to be able to check if .well-known is already served.
ynh_remove_nginx_config
ynh_app_setting_delete --app=$app --key="checksum__etc_nginx_conf.d_$domain.d_$app.conf"
# Wait untils NGINX has fully reloaded
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload --line_match="Reloaded" --log_path="systemd"
# 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
# phpversion="$YNH_PHP_VERSION"
2021-09-25 15:05:51 +02:00
# fi
2021-03-24 15:39:00 +01:00
# Recreate a dedicated PHP-FPM config
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint
2024-03-25 21:26:07 +01:00
#REMOVEME? phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
#=================================================
# SPECIFIC UPGRADE
#=================================================
# MAKE SEQUENTIAL UPGRADES FROM EACH MAJOR
# VERSION TO THE NEXT ONE
#=================================================
2019-06-27 22:44:38 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=60
2019-06-27 22:44:38 +02:00
# Load the last available version
source upgrade.d/upgrade.last.sh
last_version=$next_version
2019-06-27 22:44:38 +02:00
last_major_version=${last_version%%.*}
# While the current version is not the last version, do an upgrade
while [ "$last_version" != "$current_version" ]
do
2019-06-29 10:42:28 +02:00
# The major version is the first part of the version number
current_major_version=${current_version%%.*}
if [ ! -f upgrade.d/upgrade.$current_major_version.sh ]; then
source upgrade.d/upgrade.last.sh
else
source upgrade.d/upgrade.$current_major_version.sh
fi
# If the current version has the same major version than the next one,
# then it's the last upgrade to do
# We also cover the case where the last version is the first of the current major version series
# (e.g. 20.0.0 is the latest version)
if [[ ("$last_major_version" -eq "$current_major_version") || ( ("$last_major_version" -eq "$((current_major_version+1))") && ("$next_version" == "$last_version") ) ]]; then
current_major_version=last
fi
# Load the value for this version
source upgrade.d/upgrade.$current_major_version.sh
ynh_print_info --message="Upgrading app from $current_version to $next_version"
# Create an app.src for this version of Dolibarr
cat > ../conf/app.src << EOF
SOURCE_URL=https://github.com/Dolibarr/dolibarr/archive/$next_version.tar.gz
SOURCE_SUM=$dolibarr_source_sha256
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.bz2
SOURCE_IN_SUBDIR=true
EOF
2024-03-25 21:26:07 +01:00
chown -R $app: "$install_dir"
# Remove the lock if it exists
2024-03-25 21:26:07 +01:00
lock=$install_dir/documents/install.lock
if [ -f $lock ]
then
ynh_secure_remove $lock
fi
mkdir -p /var/log/$app/
# Upgrade with CURL
# Set the app as temporarily public for cURL call
if ! ynh_permission_has_user --permission "main" --user="visitors"; then
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_permission_update --permission="main" --add="visitors"
fi
charset=$(mysql -ss -N -e "SELECT default_character_set_name FROM information_schema.SCHEMATA WHERE schema_name = '$db_name'")
if [ "$charset" != "utf8" ]
then
ynh_print_info --message="Changing Database charset to utf8"
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
ynh_exec_fully_quiet sleep 5
2023-06-02 08:57:22 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2024-03-25 21:26:07 +01:00
ynh_setup_source --dest_dir="$install_dir"
2023-06-02 08:57:22 +02:00
2024-03-25 21:26:07 +01:00
pushd $install_dir/htdocs/install/
if php$phpversion upgrade.php $current_version $next_version > /var/log/$app/upgrade.html; then
ynh_print_info --message="Step 1 upgrading ended successfully"
else
ynh_die --message="Step 1 upgrading ended with error"
fi
ynh_exec_fully_quiet sleep 5
if php$phpversion upgrade2.php $current_version $next_version > /var/log/$app/upgrade2.html; then
ynh_print_info --message="Step 2 upgrading ended successfully"
else
ynh_die --message="Step 2 upgrading ended with error"
fi
ynh_exec_fully_quiet sleep 5
if php$phpversion step5.php $current_version $next_version > /var/log/$app/upgrade3.html; then
ynh_print_info --message="Step 3 upgrading ended successfully"
else
ynh_die --message="Step 3 upgrading ended with error"
fi
2019-09-02 00:54:28 +02:00
popd
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_permission_update --permission="main" --remove="visitors"
# Get the new current version number
current_version=$next_version
current_major_version=${current_version%%.*}
done
2024-03-25 21:26:07 +01:00
if php$phpversion $install_dir/scripts/user/sync_users_ldap2dolibarr.php commitiferror --server=localhost -y; then
ynh_print_info --message="LDAP user update ok"
else
ynh_print_info --message="LDAP user update ended with error"
fi
ynh_app_setting_set --app=$app --key=version --value=$update_version
fi
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
2024-03-25 21:26:07 +01:00
ynh_backup_if_checksum_is_different --file="$install_dir/htdocs/conf/conf.php"
# Recalculate and store the checksum of the file for the next upgrade.
2024-03-25 21:26:07 +01:00
ynh_store_file_checksum --file="$install_dir/htdocs/conf/conf.php"
chmod 644 "$install_dir/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
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_script_progression --message="Configuring permissions..." --weight=1
# Set permissions on app files
2024-03-25 21:26:07 +01:00
if [ ! -f "$data_dir/install.lock" ]; then
echo 'This is a lock file to prevent use of install pages (set with permission 440)' > "$data_dir/install.lock"
chown $app:$app "$data_dir/install.lock"
chmod 440 "$data_dir/install.lock"
2022-11-30 08:31:35 +01:00
fi
2024-03-25 21:26:07 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-09-25 13:16:23 +02:00
2024-03-25 21:26:07 +01:00
mkdir -p "$data_dir"
chown -R $app: "$data_dir"
chmod go-w $data_dir
#=================================================
# RELOAD NGINX
#=================================================
2024-03-25 21:26:07 +01:00
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2024-03-25 21:26:07 +01:00
#REMOVEME? 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